/* --- RESET & BASE --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=JetBrains+Mono:wght@500&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    /* Deep System Navy Background */
    background: #0B121A;
    color: #E5E7EB;
    overflow-x: hidden;
}

/* --- NAVBAR CORE --- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 0 40px;
    z-index: 1000;

    /* System Glassmorphism */
    background: rgba(11, 22, 34, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* Thin holographic border */
    border-bottom: 1px solid rgba(30, 202, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* The "System Loading" Scanning Line */
.navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1ECAFF, transparent);
    animation: scan 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* --- LOGO: SYSTEM TEXT --- */
.logo a {
    font-family: 'JetBrains Mono', monospace;
    color: #F9FAFB;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.3s;
}

.logo a:hover {
    color: #1ECAFF;
    text-shadow: 0 0 15px rgba(30, 202, 255, 0.8);
}

/* --- NAV LINKS: SYSTEM HOLOGRAPH --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-links a {
    color: #70A1B5;
    /* Muted steel blue from UI */
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #1ECAFF;
    background: rgba(30, 202, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(30, 202, 255, 0.1);
}

/* --- SYSTEM ACTION BUTTON --- */
.btn {
    padding: 10px 24px;
    background: transparent;
    color: #1ECAFF;
    border: 1px solid #1ECAFF;
    border-radius: 2px;
    /* Sharper for "system" look */
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    box-shadow: 0 0 10px rgba(30, 202, 255, 0.2);
}

.btn:hover {
    background: #1ECAFF;
    color: #0B121A;
    box-shadow: 0 0 25px rgba(30, 202, 255, 0.6);
    transform: scale(1.05);
}

/* --- MOBILE --- */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #1ECAFF;
    cursor: pointer;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-right .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle at center, #0B1622 0%, #06090F 100%);
}

.hero-container {
    text-align: center;
    max-width: 900px;
}

/* System Welcome Text */
.system-msg {
    font-family: 'JetBrains Mono', monospace;
    color: #1ECAFF;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.8;
    animation: pulse 2s infinite;
    margin-bottom: 40px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #1ECAFF;
    }
}

/* Catchy Big Font Name */
.player-name {
    font-size: clamp(3rem, 8vw, 6rem);
    /* Responsive size */
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(30, 202, 255, 0.3));
}

/* Typewriter Area */
.typewriter-box {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    color: #70A1B5;
    margin-top: 10px;
    margin-bottom: 50px;
}

.dynamic-txt {
    color: #1ECAFF;
    font-weight: 700;
}

.cursor {
    color: #1ECAFF;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* --- SOCIAL LINKS CONTAINER --- */
.social-links-1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Individual Button Style */
.social-btn-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #70A1B5;
    /* Muted steel blue */
    background: rgba(11, 22, 34, 0.4);
    border: 1px solid rgba(30, 202, 255, 0.1);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 2px;
}

/* Icons */
.social-btn i {
    font-size: 1.2rem;
    transition: 0.3s;
}

/* Hover State: The "System Activation" */
.social-btn-1:hover {
    color: #FFFFFF;
    background: rgba(30, 202, 255, 0.1);
    border-color: #1ECAFF;
    box-shadow: 0 0 20px rgba(30, 202, 255, 0.3);
    transform: translateY(-3px);
}

.social-btn:hover i {
    color: #1ECAFF;
    transform: scale(1.1);
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .social-btn span {
        display: none;
        /* Hide text on small screens, keep only icons */
    }

    .social-btn {
        padding: 15px;
    }
}

/* --- ABOUT REALM BASE --- */
.about-realm {
    padding: 120px 5%;
    background: #06090F;
    background-image:
        linear-gradient(rgba(30, 202, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 202, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Subtle tech grid */
}

.hud-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* --- THE SCANNER PHOTO --- */
.biometric-frame {
    position: relative;
    width: 380px;
    height: 480px;
    background: rgba(11, 22, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

/* The Moving Scanner Line */
.scan-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1ECAFF;
    box-shadow: 0 0 20px #1ECAFF, 0 0 40px rgba(30, 202, 255, 0.6);
    z-index: 10;
    animation: scanning 4s ease-in-out infinite;
}

@keyframes scanning {

    0%,
    100% {
        top: 0%;
    }

    50% {
        top: 100%;
    }
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    /* Slight transparency keeps the tech vibe */
    filter: none;
    /* Removes grayscale and high contrast */
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Optional: Make it 100% opaque when you hover over the frame */
.biometric-frame:hover .profile-img {
    opacity: 1;
}

/* This makes the image light up ONLY where the scanner is */
.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, #1ECAFF, transparent);
    background-size: 100% 100px;
    background-repeat: no-repeat;
    animation: scanReveal 4s ease-in-out infinite;
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

@keyframes scanReveal {

    0%,
    100% {
        background-position: 0 -100px;
    }

    50% {
        background-position: 0 500px;
    }
}

/* HUD Accents */
.hud-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #1ECAFF;
    z-index: 11;
}

.top-left {
    top: -5px;
    left: -5px;
    border-right: 0;
    border-bottom: 0;
}

.bottom-right {
    bottom: -5px;
    right: -5px;
    border-left: 0;
    border-top: 0;
}

/* Floating Nodes */
.data-node {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #70A1B5;
    background: rgba(6, 9, 15, 0.8);
    padding: 5px 10px;
    border: 1px solid rgba(30, 202, 255, 0.3);
}

.node-1 {
    top: 20%;
    right: -30px;
}

.node-2 {
    bottom: 15%;
    left: -30px;
}

.data-node span {
    color: #1ECAFF;
    font-weight: bold;
}

/* --- THE DATA STREAM --- */
.tag-line {
    font-family: 'JetBrains Mono', monospace;
    color: #1ECAFF;
    font-size: 12px;
    margin-bottom: 10px;
}

.title-main {
    font-size: 3.5rem;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.stream-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.stream-item:hover {
    border-left: 1px solid #1ECAFF;
    transform: translateX(10px);
}

.index {
    font-family: 'JetBrains Mono', monospace;
    color: #1ECAFF;
    font-size: 14px;
    opacity: 0.5;
}

.text-wrap h4 {
    color: #F9FAFB;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.text-wrap p {
    color: #9CA3AF;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 500px;
}

.text-wrap p span {
    color: #1ECAFF;
    font-weight: 600;
}

/* --- SKILLS SECTION --- */
.skills-section {
    padding: 100px 5%;
    background: #06090F;
}

.skills-container {
    max-width: 1100px;
    margin: 0 auto;
}

.skills-header {
    margin-bottom: 50px;
    border-left: 3px solid #1ECAFF;
    padding-left: 20px;
}

.section-tag {
    font-family: 'JetBrains Mono', monospace;
    color: #1ECAFF;
    font-size: 12px;
    letter-spacing: 3px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* --- THE GRID --- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* --- THE SLOT --- */
.skill-slot {
    position: relative;
    background: rgba(11, 22, 34, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 220px;
    /* Slightly taller for better impact */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    border-radius: 4px;
}

.slot-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 20px;
    /* Space between logo and name */
    z-index: 2;
}

/* --- THE LOGO (Bigger & Centered) --- */
.tech-logo {
    width: 100px;
    /* Increased from 60px */
    height: 100px;
    /* Increased from 60px */
    object-fit: contain;
    filter: grayscale(1) brightness(0.8) opacity(0.7);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

.tech-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #70A1B5;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
}

/* --- HOVER "ACTIVATE" STATE --- */
.skill-slot:hover {
    background: rgba(30, 202, 255, 0.08);
    border-color: #1ECAFF;
    box-shadow:
        inset 0 0 30px rgba(30, 202, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.5);
}

.skill-slot:hover .tech-logo {
    filter: grayscale(0) brightness(1.1) opacity(1);
    transform: scale(1.25);
    /* Significant zoom on hover */
    filter: drop-shadow(0 0 15px rgba(30, 202, 255, 0.5));
}

.skill-slot:hover .tech-name {
    color: #fff;
    letter-spacing: 4px;
    text-shadow: 0 0 10px #1ECAFF;
}

/* Corner Accents on Hover */
.skill-slot::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #1ECAFF;
    border-right: 1px solid #1ECAFF;
    opacity: 0;
    transition: 0.3s;
}

.skill-slot:hover::before {
    opacity: 1;
}

/* --- MOBILE --- */
@media (max-width: 500px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- SECTION BASE --- */
.projects-section {
    padding: 100px 5%;
    background: #06090F;

}

.projects-section-1 {
    padding: 100px 5%;
    background: #06090F;
    padding-top: 35px;

}

.projects-container {
    max-width: 1300px;
    /* Wider to support 3 long cards */
    margin: 0 auto;
}

/* --- THE 3-COLUMN GRID --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* --- THE ELONGATED CARD --- */
.mission-card {
    background: #0B1118;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    min-height: 550px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    margin-top: 25px;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* IMAGE AREA */
.card-image {
    height: 220px;
    background: #1A1F26;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* CONTENT AREA */
.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* This fills the space so footer stays at bottom */
}

.project-name {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-desc {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    /* Pushes the footer down */
    margin-bottom: 25px;
}

/* FOOTER AREA (Tech Stack & Buttons) */
.card-footer {
    margin-top: auto;
}

.tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* BUTTONS (Matching Reference 3) */
.card-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.btn-git {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.7;
    transition: 0.3s;

}

.btn-live {
    background: #E2E8F0;
    /* Light gray/white button from your ref */
    color: #0F172A;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-git:hover {
    opacity: 1;
    color: #00f2ff;
}

.btn-live:hover {
    background: #fff;
    transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 750px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        min-height: auto;
    }
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 5%;
    background: #06090F;
    /* Deep dark background */
    border-top: 1px solid rgba(0, 242, 255, 0.1);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
}

.contact-title .accent {
    color: #00f2ff;
    /* System Cyan */
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

/* --- GRID LAYOUT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* --- INFO & SOCIALS --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item .label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #00f2ff;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.info-item .value {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* SOCIAL BUTTONS STYLE */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(11, 17, 24, 0.5);
}

.social-btn:hover {
    border-color: #00f2ff;
    color: #00f2ff;
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    transform: translateY(-5px);
}

/* --- FORM STYLING --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0B1118;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.submit-btn {
    background: #00f2ff;
    color: #06090F;
    border: none;
    padding: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 850px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }
}

/* --- WRAPPER & LAYOUT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* --- INFO SIDE --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #00f2ff;
    margin-bottom: 5px;
}

.info-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 65px;
    padding-right: 155px;

}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    border-color: #00f2ff;
    color: #00f2ff;
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

/* --- FORM SIDE --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0B1118;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00f2ff;
    background: rgba(0, 242, 255, 0.02);
}

.submit-btn {
    background: #00f2ff;
    color: #06090F;
    border: none;
    padding: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 850px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- CORE ARSENAL HEADER --- */
.projects-header {
    margin-bottom: 80px;
    padding-left: 30px;
    /* Space for the vertical line */
    position: relative;
    text-align: left;
    /* Aligned left like the reference */
}

/* The Bold Cyan Vertical Line */
.projects-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5%;
    height: 90%;
    width: 8px;
    /* Thick accent line */
    background-color: #00f2ff;
    /* Your System Cyan */
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* Small terminal text at the top */
.header-prefix {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    color: #00f2ff;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Bold Main Title */
.header-title {
    font-family: 'Inter', sans-serif;
    /* Use a thick sans-serif */
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
}

/* The Blinking Underline Cursor */
.cursor {
    color: #ffffff;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 768px) {
    .header-title {
        font-size: 3rem;
    }

    .header-prefix {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .projects-header::before {
        width: 5px;
    }
}

/* --- CORE ARSENAL HEADER --- */
.projects-header {
    margin-bottom: 60px;
    padding-left: 20px;
    /* Space between bar and text */
    position: relative;
    display: flex;
    align-items: center;
}

/* The Slim Glowing Blue Bar */
.projects-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    /* Slightly thinner for a pro look */
    background-color: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
}

/* Metadata Text (System Manifest) */
.header-prefix {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    /* More refined size */
    color: #00f2ff;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 0.9;
}

/* The Main Title */
.header-title {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    /* Balanced size to match your reference */
    font-weight: 900;
    /* Extra bold for that heavy look */
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }

    .header-prefix {
        font-size: 11px;
        letter-spacing: 3px;
    }
}