@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #000000;
    color: #ffff00;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000000;
    border: 2px solid #ffff00;
    padding: 30px;
}

.terminal-header {
    border-bottom: 2px solid #ffff00;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.terminal-title {
    font-size: 1.2rem;
    color: #ffff00;
    margin-bottom: 5px;
}

.terminal-path {
    font-size: 0.9rem;
    color: #ffff00;
    opacity: 0.7;
}

.nav {
    margin-bottom: 30px;
    text-align: center;
}

.nav-link {
    color: #ffff00;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 15px;
    border: 1px solid #ffff00;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    background-color: #ffff00;
    color: #000000;
}

.link {
    color: #ffff00;
    text-decoration: none;
    border-bottom: 2px solid #ffff00;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.link:hover {
    background-color: #ffff00;
    color: #000000;
}

.nav-back {
    display: inline-block;
    color: #ffff00;
    text-decoration: none;
    border: 2px solid #ffff00;
    padding: 8px 15px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-back:hover {
    background-color: #ffff00;
    color: #000000;
}

h1 {
    font-size: 2.5rem;
    color: #ffff00;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-size: 1rem;
    color: #ffff00;
    margin-bottom: 40px;
    opacity: 0.8;
}

.project-card {
    margin-bottom: 40px;
    border: 2px solid #ffff00;
    padding: 25px;
    background-color: rgba(255, 255, 0, 0.02);
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover {
    background-color: rgba(255, 255, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.2);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffff00;
    padding-bottom: 10px;
}

.project-number {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.3;
}

.project-title {
    font-size: 1.5rem;
    color: #ffff00;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-grow: 1;
    margin-left: 20px;
}

.project-status {
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #ffff00;
}

.status-active {
    background-color: #ffff00;
    color: #000000;
}

.status-featured {
    background-color: transparent;
    color: #ffff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.project-description {
    margin: 15px 0;
    opacity: 0.9;
}

.project-tech {
    margin: 15px 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-tag {
    background-color: transparent;
    border: 1px solid #ffff00;
    color: #ffff00;
    padding: 4px 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.video-embed {
    margin: 20px 0;
    border: 2px solid #ffff00;
    height: 315px;
    position: relative;
    overflow: hidden;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 0, 0.05);
    color: #ffff00;
    opacity: 0.5;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.project-link {
    color: #ffff00;
    text-decoration: none;
    border: 2px solid #ffff00;
    padding: 8px 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.project-link:hover {
    background-color: #ffff00;
    color: #000000;
}

.project-stats {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.section {
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-icon {
    opacity: 0.7;
}

.cursor {
    animation: blink 1s infinite;
    font-weight: bold;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ffff00;
    opacity: 0.7;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ffff00;
    opacity: 0.7;
}

.footer-links a {
    color: #ffff00;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .project-title {
        margin-left: 0;
    }

    .project-links {
        flex-direction: column;
        gap: 10px;
    }

    .tech-stack {
        flex-direction: column;
        gap: 5px;
    }

    .video-embed {
        height: 250px;
    }

    .project-stats {
        flex-direction: column;
        gap: 10px;
    }

    .nav-link {
         display: block;
         margin: 5px 0;
     }
}