/* RESET & VARIABLES */
:root {
    --bg-dark: #0a0a0c;
    --bg-panel: #141419;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;

    --accent-science: #00f0ff;
    /* Cyan */
    --accent-gaming: #ff003c;
    /* Vivid Red */
    --accent-shop: #ff8800;
    /* Orange */
    --accent-cafe: #d4a373;
    /* Coffee */
    --accent-repair: #00ff88;
    /* Green */

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.logo-container:hover {
    transform: translateY(-2px);
}

.header-logo {
    width: 40px;
    height: 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-science) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: 0.3s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

/* Page-specific hover colors */
.nav-links a[href*="repair"]:hover {
    color: var(--accent-repair);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links a[href*="gaming"]:hover {
    color: var(--accent-gaming);
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.nav-links a[href*="shop"]:hover {
    color: var(--accent-shop);
    text-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
}

.nav-links a[href*="cafe"]:hover {
    color: var(--accent-cafe);
    text-shadow: 0 0 10px rgba(212, 163, 115, 0.5);
}

.nav-links a[href*="science"]:hover {
    color: var(--accent-science);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-links a.active {
    color: var(--accent-science);
}

.cta-button {
    padding: 0.8rem 1.8rem;
    background: var(--accent-science);
    color: #000;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.3);
    color: var(--bg-dark);
}

/* HERO SECTION */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    background: radial-gradient(circle at center, rgba(20, 20, 25, 1) 0%, var(--bg-dark) 70%);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-science);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.mission-text {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ECOSYSTEM GRID */
.ecosystem {
    padding: 5rem 5%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }

    .science {
        grid-column: 1 / -1;
        /* Science takes full width */
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1400px;
        margin: 3rem auto 0;
    }

    /* ECOSYSTEM CARDS */
    .card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.3) 100%);
        border-radius: 16px;
        padding: 3rem 2rem;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 60%);
        opacity: 0;
        transition: 0.4s;
    }

    .card:hover::before {
        opacity: 1;
    }

    .card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }

    /* Science Card (Featured - takes 2 columns) */
    .card.science {
        grid-column: span 2;
        background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
        border-color: rgba(0, 240, 255, 0.15);
    }

    .card.science:hover {
        border-color: var(--accent-science);
        box-shadow: 0 25px 60px rgba(0, 240, 255, 0.2);
    }

    .card.gaming {
        border-color: rgba(255, 0, 60, 0.1);
    }

    .card.gaming:hover {
        border-color: var(--accent-gaming);
        box-shadow: 0 25px 60px rgba(255, 0, 60, 0.2);
    }

    .card.shop {
        border-color: rgba(255, 136, 0, 0.1);
    }

    .card.shop:hover {
        border-color: var(--accent-shop);
        box-shadow: 0 25px 60px rgba(255, 136, 0, 0.2);
    }

    .card.cafe {
        border-color: rgba(212, 163, 115, 0.1);
    }

    .card.cafe:hover {
        border-color: var(--accent-cafe);
        box-shadow: 0 25px 60px rgba(212, 163, 115, 0.2);
    }

    .card.repair {
        border-color: rgba(0, 255, 136, 0.1);
    }

    .card.repair:hover {
        border-color: var(--accent-repair);
        box-shadow: 0 25px 60px rgba(0, 255, 136, 0.2);
    }

    .card-content {
        position: relative;
        z-index: 2;
    }

    .card-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .card-content p {
        color: #aaa;
        line-height: 1.8;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #fff;
        font-weight: 600;
        transition: 0.3s;
        font-size: 0.95rem;
    }

    .card-link:hover {
        gap: 1rem;
    }

    /* Grid responsive */
    @media (max-width: 1100px) {
        .grid-container {
            grid-template-columns: repeat(2, 1fr);
        }

        .card.science {
            grid-column: span 2;
        }
    }

    @media (max-width: 700px) {
        .grid-container {
            grid-template-columns: 1fr;
        }

        .card.science {
            grid-column: span 1;
        }
    }

    /* Note: Using accent-gaming var */
    .highlight-purple {
        color: var(--accent-gaming);
    }

    .card-link {
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* MEMBERSHIP */
    .membership {
        padding: 5rem 5%;
        background: linear-gradient(to top, #111, var(--bg-dark));
        text-align: center;
    }

    .membership-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .membership h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .buttons {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .btn-primary {
        background: var(--text-main);
        color: var(--bg-dark);
        border: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn-primary:hover {
        background: var(--accent-science);
        box-shadow: 0 0 20px var(--accent-science);
    }

    .btn-secondary {
        background: transparent;
        border: 1px solid var(--text-muted);
        color: var(--text-main);
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn-secondary:hover {
        border-color: var(--text-main);
    }

    /* FOOTER */
    footer {
        padding: 3rem 5%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        color: var(--text-muted);
        font-size: 0.8rem;
    }

    .footer-logo {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: var(--text-main);
    }

    /* === UTILITIES & LOGO === */
    .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }

    .header-logo {
        height: 40px;
        width: auto;
    }

    .logo-text {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-main);
    }

    /* === SCIENCE PAGE SPECIFIC === */
    .science-page .science-hero {
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: radial-gradient(circle at top, #001a1c 0%, var(--bg-dark) 80%);
        padding: 0 1rem;
    }

    .science-hero h1 {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .science-hero .stats-bar {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 240, 255, 0.2);
    }

    .stat {
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--accent-science);
        font-family: var(--font-heading);
    }

    .stat-label {
        font-size: 0.8rem;
        color: var(--text-muted);
        text-transform: uppercase;
    }

    /* PROJECTS GRID */
    .science-section {
        padding: 5rem 5%;
    }

    .science-section.dark-bg {
        background: #0d0d10;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .project-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 240, 255, 0.1);
        padding: 2rem;
        border-radius: 12px;
        transition: 0.3s;
    }

    .project-card:hover {
        border-color: var(--accent-science);
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
        transform: translateY(-5px);
    }

    .project-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
        font-size: 0.8rem;
        font-family: var(--font-heading);
    }

    .project-id {
        color: var(--text-muted);
    }

    .status-badge {
        padding: 2px 8px;
        border-radius: 4px;
        font-weight: 700;
    }

    .status-badge.live {
        background: rgba(0, 255, 136, 0.2);
        color: #00ff88;
    }

    .status-badge.testing {
        background: rgba(0, 240, 255, 0.2);
        color: #00f0ff;
    }

    .status-badge.concept {
        background: rgba(255, 255, 255, 0.1);
        color: #ccc;
    }

    .project-card h3 {
        margin-bottom: 0.5rem;
        font-family: var(--font-heading);
    }

    .project-card p {
        font-size: 0.95rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
    }

    /* PROGRESS BAR */
    .progress-container {
        margin-top: auto;
    }

    .progress-info {
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        color: var(--accent-science);
        font-weight: 600;
    }

    .progress-bar {
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        overflow: hidden;
    }

    .progress-fill {
        height: 100%;
        background: var(--accent-science);
        box-shadow: 0 0 10px var(--accent-science);
        border-radius: 3px;
    }

    /* SHOP SECTION GRID */
    .shop-section {
        padding: 6rem 10%;
        max-width: 1600px;
        margin: 0 auto;
    }

    /* === SHOP DESCRIPTION === */
    .shop-description {
        padding: 6rem 10%;
        background: linear-gradient(135deg, rgba(255, 157, 0, 0.02) 0%, transparent 100%);
        border-bottom: 1px solid rgba(255, 157, 0, 0.1);
    }

    .shop-desc-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .label-shop {
        display: inline-block;
        color: #ff9d00;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .desc-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.2;
        color: #fff;
    }

    .desc-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #ccc;
        margin-bottom: 1.5rem;
    }

    .desc-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-box {
        background: rgba(255, 157, 0, 0.05);
        border: 1px solid rgba(255, 157, 0, 0.2);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
    }

    .stat-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 157, 0, 0.2), transparent);
        transition: 0.6s;
    }

    .stat-box:hover::before {
        left: 100%;
    }

    .stat-box:hover {
        border-color: #ff9d00;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(255, 157, 0, 0.2);
    }

    .stat-box i {
        font-size: 2.5rem;
        color: #ff9d00;
        margin-bottom: 1rem;
        display: block;
    }

    .stat-num {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        color: #ff9d00;
        margin-bottom: 0.5rem;
    }

    .stat-text {
        display: block;
        font-size: 0.9rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    @media (max-width: 900px) {
        .shop-desc-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    /* ARCHIVE LIST */
    .archive-list {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .archive-item {
        display: flex;
        align-items: center;
        gap: 2rem;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0.7;
        transition: 0.3s;
    }

    .archive-item:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.02);
    }

    .archive-date {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--text-muted);
    }

    .archive-details h4 {
        color: var(--text-main);
        margin-bottom: 0.2rem;
    }

    .archive-status {
        margin-left: auto;
        font-size: 0.8rem;
        color: var(--accent-science);
        border: 1px solid var(--accent-science);
        padding: 2px 8px;
        border-radius: 50px;
    }

    /* === PLACEHOLDER PAGES (Gaming/Cafe) === */
    .page-placeholder {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: radial-gradient(circle at center, #1a1a20 0%, var(--bg-dark) 70%);
        padding: 2rem;
    }

    .page-placeholder h1 {
        font-size: 4rem;
        font-family: var(--font-heading);
        margin-bottom: 1rem;
    }

    .content-wrapper {
        max-width: 600px;
    }

    /* === RESPONSIVE UTILITIES === */
    @media (max-width: 768px) {
        .main-header {
            flex-direction: column;
            gap: 1rem;
            padding: 1rem;
            background: rgba(10, 10, 12, 0.95);
            position: relative;
            /* Fix for mobile stacking */
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .nav-links a {
            font-size: 0.8rem;
        }

        .logo-container {
            margin-bottom: 0.5rem;
        }

        .hero h1 {
            font-size: 3rem;
        }

        .science-hero {
            height: auto;
            min-height: 60vh;
            padding: 6rem 1rem 3rem 1rem;
        }

        .page-placeholder {
            padding: 5rem 1rem;
        }

        .science-hero h1 {
            font-size: 2.5rem;
        }

        .stats-bar {
            flex-direction: column;
            gap: 2rem;
            border-top: none;
            /* Cleaner on mobile */
            padding-top: 1rem;
        }

        .stat-number {
            font-size: 1.5rem;
        }

        .grid-container {
            grid-template-columns: 1fr;
            /* Force 1 column on mobile */
        }

        .science {
            grid-column: 1;
            /* Reset colspan */
        }

        .archive-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .archive-status {
            margin-left: 0;
            margin-top: 0.5rem;
        }
    }



    /* === GAMING PAGE AESTHETICS OVERHAUL === */
    .gaming-page {
        /* Global Scanline Effect - NOW WITH DARK BASE */
        background-color: #050505;
        background-image:
            linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
            linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
        background-size: 100% 4px, 6px 100%;
    }

    .highlight-gaming {
        color: var(--accent-gaming);
        text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
        display: inline-block;
        transition: 0.3s;
    }

    .highlight-gaming:hover {
        animation: glitch-skew 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
        color: #fff;
    }

    @keyframes glitch-skew {
        0% {
            transform: skew(0deg);
        }

        20% {
            transform: skew(-10deg);
        }

        40% {
            transform: skew(10deg);
        }

        60% {
            transform: skew(-5deg);
        }

        80% {
            transform: skew(5deg);
        }

        100% {
            transform: skew(0deg);
        }
    }

    .gaming-hero {
        height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: radial-gradient(circle at center, rgba(40, 0, 10, 0.6) 0%, #050505 80%),
            url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        position: relative;
        border-bottom: 2px solid var(--accent-gaming);
        box-shadow: 0 10px 50px rgba(255, 0, 60, 0.2);
        overflow: hidden;
    }

    .gaming-hero::after {
        /* Glitch overlay */
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient(transparent 0px, transparent 2px, rgba(255, 0, 60, 0.05) 3px);
        pointer-events: none;
    }

    .gaming-hero h1 {
        font-size: 5rem;
        font-family: var(--font-heading);
        text-shadow: 4px 4px 0px var(--accent-gaming), -2px -2px 0px #00ffff;
        margin-bottom: 1rem;
        animation: pulseGlow 3s infinite alternate;
    }

    @keyframes pulseGlow {
        from {
            text-shadow: 0 0 10px var(--accent-gaming);
        }

        to {
            text-shadow: 0 0 30px var(--accent-gaming), 0 0 10px #fff;
        }
    }

    .server-status-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(0, 0, 0, 0.8);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        border: 1px solid var(--accent-gaming);
        box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
    }

    .status-dot {
        width: 10px;
        height: 10px;
        background: #00ff88;
        border-radius: 50%;
        box-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88;
        animation: blinkStatus 1.5s infinite;
    }

    @keyframes blinkStatus {
        50% {
            opacity: 0.5;
        }
    }

    /* GAMING SECTIONS */
    .gaming-section {
        padding: 5rem 5%;
        position: relative;
        overflow: hidden;
    }

    /* Add subtle background glow to dark sections */
    .gaming-section.dark-bg::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(255, 0, 60, 0.03) 0%, transparent 60%);
        pointer-events: none;
    }

    /* STEPS CARDS */
    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        perspective: 1000px;
    }

    .step-card {
        background: rgba(20, 20, 25, 0.6);
        backdrop-filter: blur(10px);
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .step-card:hover {
        border-color: var(--accent-gaming);
        transform: translateY(-10px) rotateX(5deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 0, 60, 0.2);
        cursor: pointer;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        background: #000;
        color: var(--accent-gaming);
        border: 2px solid var(--accent-gaming);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 auto 1.5rem auto;
        box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
        position: relative;
        z-index: 2;
    }

    /* Create connecting lines for steps (desktop only) */
    @media (min-width: 900px) {
        .step-card:not(:last-child)::after {
            content: '➜';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.1);
        }
    }

    .step-card h3 {
        margin-bottom: 1rem;
        font-family: var(--font-heading);
        color: #fff;
        letter-spacing: 1px;
    }

    /* HARDWARE CARDS */
    .grid-container.hardware-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .server-card.hardware-card {
        background: linear-gradient(160deg, #151515 0%, #0a0a0a 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 2rem;
        border-radius: 12px;
        position: relative;
        transition: 0.3s;
    }

    .server-card.hardware-card:hover {
        border-color: var(--accent-gaming);
        box-shadow: 0 0 30px rgba(255, 0, 60, 0.15);
    }

    .server-icon {
        font-size: 2.5rem;
        color: var(--accent-gaming);
        margin-bottom: 1.5rem;
        text-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
    }

    .specs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        text-align: left;
        margin-top: 1.5rem;
        background: rgba(0, 0, 0, 0.4);
        padding: 1.5rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.02);
    }

    .spec-item {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 0.8rem;
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .spec-item:last-child {
        border: none;
        padding: 0;
        margin: 0;
    }

    .spec-value {
        color: #fff;
        font-weight: 700;
        font-family: 'Space Grotesk', sans-serif;
        letter-spacing: 0.5px;
    }

    /* FULL PRICING SECTION - Enhanced */
    .pricing-container-full {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
        align-items: center;
        padding: 2rem 0;
    }

    .price-card-full {
        background: rgba(15, 15, 20, 0.8);
        backdrop-filter: blur(5px);
        padding: 3rem 2rem;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        width: 320px;
        position: relative;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: 0.3s ease;
    }

    .price-card-full:hover {
        transform: translateY(-10px);
        background: rgba(20, 20, 25, 0.9);
    }

    .price-card-full.featured {
        border: 2px solid var(--accent-gaming);
        background: linear-gradient(160deg, #150005 0%, #20000a 100%);
        box-shadow: 0 0 50px rgba(255, 0, 60, 0.2);
        transform: scale(1.1);
        z-index: 2;
    }

    .price-card-full.featured:hover {
        transform: scale(1.15);
        box-shadow: 0 0 70px rgba(255, 0, 60, 0.3);
    }

    .best-value {
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent-gaming);
        color: #fff;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-weight: 800;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
        animation: floatBadge 3s ease-in-out infinite;
        z-index: 10;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

    .best-value:hover {
        animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
    }

    @keyframes shake {

        10%,
        90% {
            transform: translateX(-55%);
        }

        20%,
        80% {
            transform: translateX(-45%);
        }

        30%,
        50%,
        70% {
            transform: translateX(-55%);
        }

        40%,
        60% {
            transform: translateX(-45%);
        }
    }

    .price-display {
        font-size: 3.5rem;
        font-weight: 800;
        color: #fff;
        margin: 1.5rem 0 2.5rem 0;
        font-family: var(--font-heading);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    /* REVIEWS - RAZER STYLE */
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .review-item.has-image {
        background: linear-gradient(145deg, #111, #050505);
        border-left: 4px solid #00ff00;
        padding: 2rem;
        position: relative;
        overflow: hidden;
    }

    .review-item.has-image::after {
        /* Razer pattern overlay simulation */
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 255, 0, 0.03) 10px, rgba(0, 255, 0, 0.03) 20px);
        pointer-events: none;
    }

    .approved-badge {
        background: #00ff00;
        color: #000;
        font-weight: 900;
        font-size: 0.75rem;
        padding: 4px 10px;
        border-radius: 4px;
        margin-top: 1rem;
        text-transform: uppercase;
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.4);
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    @media (max-width: 768px) {
        .pricing-container-full {
            gap: 4rem;
            padding-top: 2rem;
        }

        .price-card-full.featured {
            transform: scale(1);
        }

        .price-card-full.featured:hover {
            transform: scale(1.05);
        }

        .gaming-hero h1 {
            font-size: 3rem;
        }
    }


    /* === LORH CAFE PREMIUM AESTHETICS === */

    /* Force Light Theme for Cafe */
    .cafe-page {
        background-color: #f7f1e9;
        /* Premium Cream */
        background-image:
            radial-gradient(#e0cdae 0.5px, transparent 0.5px),
            radial-gradient(#e0cdae 0.5px, transparent 0.5px);
        background-size: 20px 20px;
        background-position: 0 0, 10px 10px;
        color: #4b3621;
        font-family: 'Outfit', sans-serif;
        overflow-x: hidden;
    }

    /* Minimalist Header Override */
    .cafe-header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(212, 181, 149, 0.3);
        box-shadow: 0 5px 20px rgba(75, 54, 33, 0.05);
    }

    .cafe-header .nav-links a {
        color: #4b3621;
        font-weight: 500;
        transition: 0.3s;
    }

    .cafe-header .nav-links a:hover,
    .cafe-header .nav-links a.active {
        color: #d35400;
        /* Burnt Orange */
        background: transparent;
        /* Remove dark mode hover bg */
    }

    .cafe-btn {
        background: #d35400 !important;
        border: none !important;
        color: #fff !important;
        border-radius: 4px !important;
        /* Minimalist Square-ish */
        font-family: 'Playfair Display', serif;
        letter-spacing: 1px;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .cafe-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(211, 84, 0, 0.4);
        background: #a04000 !important;
    }

    /* Premium Hero */
    .cafe-hero {
        height: 85vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: linear-gradient(rgba(247, 241, 233, 0.7), rgba(247, 241, 233, 1)),
            url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        /* Parallax */
        position: relative;
    }

    .cafe-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 6rem;
        color: #2c2012;
        margin-bottom: 1rem;
        font-style: italic;
        animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .highlight-brown {
        color: #d35400;
        font-style: normal;
        position: relative;
        display: inline-block;
    }

    .highlight-brown::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 10px;
        background: rgba(211, 84, 0, 0.2);
        z-index: -1;
        transform: skewX(-15deg);
    }

    /* Steam Animation (Subtle) */
    .coffee-steam-container {
        position: relative;
        display: inline-block;
        margin-top: 3rem;
    }

    .steam {
        position: absolute;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        background-color: #d35400;
        top: -60px;
        left: 0;
        opacity: 0;
        filter: blur(15px);
        animation: steam 3s infinite linear;
    }

    .steam.sec {
        animation-delay: 1.5s;
        left: 20px;
    }

    @keyframes steam {
        0% {
            transform: translateY(0) scaleX(1);
            opacity: 0;
        }

        20% {
            opacity: 0.4;
        }

        50% {
            transform: translateY(-50px) scaleX(1.1);
        }

        100% {
            transform: translateY(-100px) scaleX(1.5);
            opacity: 0;
        }
    }

    /* Sections Global */
    .cafe-section {
        padding: 8rem 10%;
        position: relative;
    }

    .cafe-title {
        color: #4b3621;
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .cafe-subtitle {
        color: #8a6a4b;
        text-align: center;
        font-family: 'Outfit', sans-serif;
        letter-spacing: 2px;
        font-size: 0.9rem;
        text-transform: uppercase;
        margin-bottom: 4rem;
    }

    /* Visual Floor Plan */
    .floor-plan-container {
        display: flex;
        justify-content: center;
        gap: 4rem;
        flex-wrap: wrap;
        perspective: 1000px;
    }

    .zone {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid #e0cdae;
        border-radius: 4px;
        padding: 3rem;
        width: 400px;
        position: relative;
        box-shadow: 0 20px 50px rgba(75, 54, 33, 0.05);
        transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .zone:hover {
        transform: rotateX(5deg) translateY(-10px);
        box-shadow: 0 30px 60px rgba(75, 54, 33, 0.1);
        background: #fff;
    }

    .zone.terrace {
        background: linear-gradient(to bottom right, #f4f9f6, #e8f5e9);
        border-color: #c8e6c9;
    }

    .zone-label {
        font-weight: 700;
        margin-bottom: 3rem;
        text-align: center;
        text-transform: uppercase;
        font-size: 1.2rem;
        color: #4b3621;
        border-bottom: 2px solid rgba(75, 54, 33, 0.1);
        padding-bottom: 1rem;
    }

    .table-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        justify-items: center;
    }

    .table-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: 0.4s;
        opacity: 0.7;
    }

    .table-item:hover {
        transform: scale(1.15);
        opacity: 1;
    }

    .table-item:hover .desk {
        background: #d35400;
    }

    .desk {
        width: 70px;
        height: 45px;
        background: #a1887f;
        border-radius: 6px;
        transition: 0.3s;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .desk.round {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #8d6e63;
    }

    .chair {
        width: 40px;
        height: 8px;
        background: #5d4037;
        border-radius: 4px;
    }

    /* Happy Hour Spot - Dark Elegance */
    .happy-hour-bg {
        background: #1a120b;
        /* Almost Black Coffee */
        color: #fcefe3;
        border-radius: 0;
        /* Full width minimal feel */
        margin: 4rem 5%;
        padding: 6rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .hh-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        color: #d35400;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hh-desc {
        font-size: 1.2rem;
        opacity: 0.8;
        margin-bottom: 2rem;
        max-width: 500px;
        font-weight: 300;
    }

    .product-card {
        background: #1a1a1a;
        border-radius: 12px;
        padding: 1.5rem;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(255, 157, 0, 0.1), transparent 70%);
        opacity: 0;
        transition: 0.5s;
        pointer-events: none;
    }

    .product-card:hover::before {
        opacity: 1;
    }

    .product-card:hover {
        transform: translateY(-15px) scale(1.03);
        border-color: rgba(255, 157, 0, 0.3);
        box-shadow: 0 20px 40px rgba(255, 157, 0, 0.2);
    }

    .product-image {
        height: 220px;
        background: #252525;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-card:hover .placeholder-img {
        transform: scale(1.15) rotate(2deg);
    }

    .product-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #fff;
    }

    .product-info .desc {
        font-size: 0.9rem;
        color: #888;
        margin-bottom: 1.5rem;
        height: 40px;
        overflow: hidden;
    }

    .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .price {
        font-size: 1.4rem;
        font-weight: 700;
        color: #ff9d00;
    }

    .price .old {
        text-decoration: line-through;
        color: #555;
        font-size: 0.9rem;
        margin-right: 5px;
    }

    .add-btn {
        background: #333;
        color: #fff;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .add-btn:hover {
        background: #ff9d00;
        color: #000;
        transform: rotate(180deg) scale(1.1);
        box-shadow: 0 0 20px rgba(255, 157, 0, 0.5);
    }

    .badge {
        position: absolute;
        top: 10px;
        left: 10px;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: 700;
        border-radius: 4px;
        text-transform: uppercase;
        z-index: 2;
    }

    .badge.new {
        background: #00ff00;
        color: #000;
    }

    .badge.sale {
        background: #ff0055;
        color: #fff;
    }

    /* === CART MODAL === */
    .cart-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(5px);
    }

    .cart-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-modal-content {
        background: #1a1a1a;
        width: 90%;
        max-width: 500px;
        height: 70vh;
        border-radius: 16px;
        border: 1px solid rgba(255, 157, 0, 0.2);
        display: flex;
        flex-direction: column;
        box-shadow: 0 25px 60px rgba(255, 157, 0, 0.15);
    }

    .cart-header {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-header h2 {
        font-size: 1.5rem;
        color: #ff9d00;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cart-close {
        background: none;
        border: none;
        color: #888;
        font-size: 2rem;
        cursor: pointer;
        transition: 0.3s;
    }

    .cart-close:hover {
        color: #ff9d00;
    }

    .cart-items {
        flex: 1;
        padding: 1.5rem 2rem;
        overflow-y: auto;
    }

    .empty-cart {
        text-align: center;
        color: #666;
        font-style: italic;
        margin-top: 3rem;
    }

    .cart-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        align-items: center;
    }

    .cart-item-img {
        width: 60px;
        height: 60px;
        background-size: cover;
        background-position: center;
        border-radius: 6px;
    }

    .cart-item-info {
        flex: 1;
    }

    .cart-item-info h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .cart-item-info span {
        color: #ff9d00;
        font-weight: 700;
    }

    .remove-btn {
        background: #ff0055;
        border: none;
        color: #fff;
        padding: 0.5rem;
        border-radius: 4px;
        cursor: pointer;
        transition: 0.3s;
    }

    .remove-btn:hover {
        background: #ff3377;
    }

    .cart-footer {
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cart-total {
        display: flex;
        justify-content: space-between;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .cart-total span:last-child {
        color: #ff9d00;
        font-weight: 800;
    }

    .checkout-btn {
        width: 100%;
        padding: 1rem;
        background: #ff9d00;
        color: #000;
        border: none;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.3s;
    }

    .checkout-btn:hover {
        background: #ffb733;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 157, 0, 0.3);
    }

    @media (max-width: 768px) {
        .shop-title {
            font-size: 2.5rem;
        }

        .shop-section {
            padding: 4rem 5%;
        }

        .cart-modal-content {
            width: 95%;
            height: 80vh;
        }
    }

    .code-snippet-mock {
        background: rgba(30, 30, 30, 0.8);
        backdrop-filter: blur(5px);
        padding: 2.5rem;
        border-left: 3px solid #d35400;
        font-family: 'Courier New', monospace;
        color: #e0e0e0;
        font-size: 1.1rem;
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
        transform: rotate(-2deg);
        transition: 0.5s;
    }

    .code-snippet-mock:hover {
        transform: rotate(0deg) scale(1.02);
        border-color: #00ff88;
        /* Tech vibe on interaction */
    }

    /* Sensorial Menu - Clean & Big */
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-top: 4rem;
    }

    .menu-card {
        background: transparent;
        border-radius: 0;
        overflow: visible;
        transition: 0.5s;
        border-bottom: 1px solid rgba(75, 54, 33, 0.1);
        padding-bottom: 2rem;
    }

    .menu-card:hover {
        transform: translateY(-10px);
        border-bottom-color: #d35400;
    }

    .menu-img {
        height: 350px;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .menu-img::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 1.5s ease;
    }

    .menu-card:hover .menu-img::after {
        transform: scale(1.1);
    }

    /* Placeholder Images - High Quality Unsplash */
    .placeholder-cake::after {
        background-image: url('https://images.unsplash.com/photo-1563729784474-d77dbb933a9e?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }

    .placeholder-coffee::after {
        background-image: url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }

    .placeholder-snack::after {
        background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }

    .mouse {
        background-image: url('https://images.unsplash.com/photo-1527864550417-7fd91fc51a46?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }

    .ssd {
        background-image: url('https://images.unsplash.com/photo-1597872200969-2b65d56bd16b?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }

    .ram {
        background-image: url('https://images.unsplash.com/photo-1562976540-1502c2145186?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }

    .webcam {
        background-image: url('https://images.unsplash.com/photo-1588508065123-287b28e013da?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }

    .cable {
        background-image: url('https://images.unsplash.com/photo-1591290619762-d71b7f26e254?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }

    /* SCROLL ANIMATIONS */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .product-card {
        animation: fadeInUp 0.6s ease-out;
        animation-fill-mode: both;
    }

    .product-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .product-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .product-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .product-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .product-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .product-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .product-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .product-card:nth-child(8) {
        animation-delay: 0.8s;
    }

    @media (max-width: 768px) {
        .shop-title {
            font-size: 2.5rem;
        }

        .shop-section {
            padding: 4rem 5%;
        }
    }

    .menu-info {
        padding: 1.5rem 0 0 0;
        text-align: left;
    }

    .menu-info h3 {
        font-family: 'Playfair Display', serif;
        margin-bottom: 0.5rem;
        color: #2c2012;
        font-size: 1.8rem;
    }

    .menu-info p {
        color: #6b4e31;
        font-size: 1rem;
    }

    .price {
        display: inline-block;
        margin-top: 1rem;
        font-family: 'Outfit', sans-serif;
        color: #d35400;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .cafe-footer p {
        color: #4b3621 !important;
    }

    @media (max-width: 768px) {
        .cafe-hero h1 {
            font-size: 3.5rem;
        }

        .happy-hour-bg {
            padding: 3rem;
        }

        .happy-hour-content {
            flex-direction: column;
        }

        .floor-plan-container {
            gap: 2rem;
        }

        .zone {
            width: 100%;
            padding: 2rem;
        }
    }

    /* LOFI PLAYER - FIXED */
    .lofi-player {
        position: fixed;
        bottom: 30px;
        left: 30px;
        background: rgba(26, 18, 11, 0.9);
        padding: 10px 20px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid #d35400;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        animation: slideUp 1s ease-out 1s both;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .player-icon {
        font-size: 1.2rem;
        color: #d35400;
    }

    .player-info {
        display: flex;
        flex-direction: column;
    }

    .track-name {
        color: #fff;
        font-size: 0.8rem;
        font-weight: 700;
    }

    .visualizer {
        display: flex;
        gap: 3px;
        height: 10px;
        align-items: flex-end;
    }

    .visualizer span {
        width: 3px;
        background: #d35400;
        animation: bounce 1s infinite ease-in-out;
    }

    .visualizer span:nth-child(2) {
        animation-delay: 0.2s;
        height: 60%;
    }

    .visualizer span:nth-child(3) {
        animation-delay: 0.4s;
        height: 80%;
    }

    .visualizer span:nth-child(4) {
        animation-delay: 0.1s;
        height: 40%;
    }

    @keyframes bounce {

        0%,
        100% {
            height: 2px;
        }

        50% {
            height: 100%;
        }
    }

    .play-btn {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        font-size: 1rem;
        transition: 0.3s;
    }

    .play-btn:hover {
        color: #d35400;
        transform: scale(1.2);
    }

    /* === LORH REPAIR (NEON GREEN RAZER THEME) === */
    .repair-page {
        background-color: #050505;
        background-image:
            linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        color: #e0e0e0;
        font-family: 'Space Grotesk', sans-serif;
    }

    .highlight-green {
        color: #00ff00;
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
    }

    .repair-header {
        border-bottom: 2px solid #00ff00;
        background: rgba(0, 0, 0, 0.9);
    }

    .repair-btn {
        background: transparent !important;
        border: 1px solid #00ff00 !important;
        color: #00ff00 !important;
        font-family: 'Share Tech Mono', monospace;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        overflow: hidden;
        transition: 0.3s;
    }

    .repair-btn:hover {
        background: #00ff00 !important;
        color: #000 !important;
        box-shadow: 0 0 20px #00ff00;
    }

    .repair-btn.large {
        font-size: 1.5rem;
        padding: 1rem 3rem;
        margin-top: 2rem;
    }

    /* HERO */
    .repair-hero {
        height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        background: radial-gradient(circle, rgba(0, 255, 0, 0.05) 0%, rgba(0, 0, 0, 1) 90%);
    }

    .grid-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 255, 0, 0.1) 1px, rgba(0, 255, 0, 0.1) 2px);
        background-size: 100% 20px;
        opacity: 0.3;
        pointer-events: none;
    }

    .repair-hero h1 {
        font-size: 5rem;
        font-family: 'Share Tech Mono', monospace;
        letter-spacing: -2px;
    }

    .cyber-subtitle {
        font-family: 'Share Tech Mono', monospace;
        color: #00ff00;
        font-size: 1.2rem;
        margin-top: 1rem;
        opacity: 0.8;
    }

    .hero-badges {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .tech-badge {
        border: 1px solid rgba(0, 255, 0, 0.3);
        padding: 0.5rem 1rem;
        border-radius: 4px;
        font-size: 0.9rem;
        background: rgba(0, 20, 0, 0.5);
    }

    /* REPAIR SECTIONS GLOBAL */
    .repair-section {
        padding: 6rem 10%;
        /* Added localized padding */
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* PROCESS DIAGNOSIS */
    .process-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 4rem;
        flex-wrap: wrap;
    }

    .process-card {
        background: #0a0a0a;
        border: 1px solid #333;
        padding: 2rem;
        width: 300px;
        position: relative;
        transition: 0.3s;
        flex: 1 1 300px;
        /* Better flexing */
    }

    .process-card:hover {
        border-color: #00ff00;
        transform: translateY(-5px);
    }

    .process-card.highlight {
        border: 2px solid #00ff00;
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.1);
        transform: scale(1.05);
        z-index: 2;
    }

    .step-number {
        position: absolute;
        top: -15px;
        left: 15px;
        font-size: 3rem;
        color: #1a1a1a;
        font-weight: 800;
        z-index: 0;
    }

    .icon-box {
        font-size: 2.5rem;
        color: #00ff00;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .price-tag {
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        margin: 1rem 0;
    }

    .plan-features {
        list-style: none;
        text-align: left;
        margin-top: 1rem;
        color: #888;
    }

    .plan-features li {
        margin-bottom: 0.5rem;
    }

    .plan-features i {
        color: #00ff00;
        margin-right: 10px;
    }

    /* TRUST ALERT */
    .trust-alert {
        max-width: 600px;
        margin: 4rem auto 0 auto;
        border: 1px dashed #00ff00;
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        color: #00ff00;
        background: rgba(0, 255, 0, 0.05);
    }

    .trust-alert i {
        font-size: 1.5rem;
    }

    /* MOBILE UNIT */
    .mobile-unit-network {
        margin-top: 5rem;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        background: #080808;
        padding: 6rem 10%;
        /* Explicit padding repeat */
    }

    .mobile-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }

    .mobile-text {
        flex: 1;
    }

    .van-mockup {
        font-size: 10rem;
        color: #1a1a1a;
        position: relative;
        border-bottom: 4px solid #00ff00;
    }

    .van-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5rem;
        color: #00ff00;
        font-weight: 800;
    }

    .scan-line {
        position: absolute;
        width: 2px;
        height: 100%;
        background: #00ff00;
        left: 0;
        top: 0;
        animation: scan 3s infinite linear;
        box-shadow: 0 0 10px #00ff00;
    }

    @keyframes scan {
        0% {
            left: 0;
        }

        100% {
            left: 100%;
        }
    }

    .neon-title {
        font-family: 'Share Tech Mono', monospace;
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.4);
    }

    @media (max-width: 900px) {
        .repair-hero h1 {
            font-size: 3.5rem;
        }

        .mobile-content {
            flex-direction: column-reverse;
            text-align: center;
        }

        .process-container {
            gap: 1rem;
        }

        .process-card {
            width: 100%;
        }

        .trust-alert {
            flex-direction: column;
            text-align: center;
        }

        .repair-section {
            padding: 4rem 5%;
        }

        .mobile-unit-network {
            padding: 4rem 5%;
        }
    }

    @media (max-width: 480px) {
        .repair-hero h1 {
            font-size: 2.5rem;
        }

        .repair-btn {
            width: 100%;
        }
    }

    /* === ADVANCED REPAIR ANIMATIONS === */

    /* 1. Hologram Effect for Process Cards on Hover */
    .process-card {
        overflow: hidden;
        /* Needed for scan line */
    }

    .process-card::before {
        content: '';
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, transparent, rgba(0, 255, 0, 0.2), transparent);
        transition: 0.5s;
        pointer-events: none;
    }

    .process-card:hover::before {
        top: 100%;
        transition: 1s ease-in-out;
    }

    /* 2. Cyber Glitch Keyframes for Titles */
    @keyframes cyber-glitch {
        0% {
            text-shadow: 2px 2px 0px #00ff00, -2px -2px 0px #ff00de;
            clip-path: inset(0 0 0 0);
            transform: translate(0);
        }

        2% {
            text-shadow: 2px 2px 0px #00ff00, -2px -2px 0px #ff00de;
            clip-path: inset(10% 0 80% 0);
            transform: translate(-2px, 2px);
        }

        4% {
            text-shadow: -2px -2px 0px #00ff00, 2px 2px 0px #ff00de;
            clip-path: inset(80% 0 10% 0);
            transform: translate(2px, -2px);
        }

        6% {
            text-shadow: 2px 2px 0px #00ff00, -2px -2px 0px #ff00de;
            clip-path: inset(0 0 0 0);
            transform: translate(0);
        }

        100% {
            text-shadow: 2px 2px 0px #00ff00, -2px -2px 0px #ff00de;
            clip-path: inset(0 0 0 0);
            transform: translate(0);
        }
    }

    .repair-hero h1:hover {
        animation: cyber-glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
        color: #fff;
        cursor: default;
    }

    /* 3. Tech Badge Pulse */
    .tech-badge {
        position: relative;
        overflow: hidden;
        transition: 0.3s;
    }

    .tech-badge:hover {
        background: #00ff00;
        color: #000;
        box-shadow: 0 0 15px #00ff00;
    }

    /* 4. Radar Scan for Trust Alert */
    .trust-alert {
        position: relative;
        overflow: hidden;
    }

    .trust-alert::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
        animation: radar-sweep 4s infinite linear;
    }

    @keyframes radar-sweep {
        0% {
            left: -100%;
        }

        50%,
        100% {
            left: 100%;
        }
    }

    /* 5. Mobile Unit Hover (Engine Start) */
    .mobile-unit-network:hover .van-mockup {
        animation: engine-rumble 0.2s infinite;
    }

    @keyframes engine-rumble {
        0% {
            transform: translate(0, 0);
        }

        25% {
            transform: translate(1px, 1px);
        }

        50% {
            transform: translate(-1px, -1px);
        }

        75% {
            transform: translate(-1px, 1px);
        }

        100% {
            transform: translate(1px, -1px);
        }
    }

    /* === HOME PAGE WIDGETS === */
    .card-widget {
        margin: 1rem 0;
        padding: 0.8rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 6px;
        font-size: 0.85rem;
        text-align: left;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Science Widget */
    .widget-science .widget-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
        color: var(--accent-science);
        font-weight: 700;
    }

    .mini-progress-bar {
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        margin-bottom: 5px;
        overflow: hidden;
    }

    .mini-progress-bar .fill {
        width: 5%;
        height: 100%;
        background: var(--accent-science);
    }

    /* Gaming Widget */
    .widget-gaming .server-status {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
        color: #ccc;
    }

    .widget-gaming i {
        color: var(--accent-gaming);
    }

    /* Shop Widget */
    .widget-shop .shop-preview {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .widget-shop img {
        width: 40px;
        height: 40px;
        border-radius: 4px;
        object-fit: cover;
    }

    .badgex {
        font-size: 0.6rem;
        background: var(--accent-shop);
        color: #000;
        padding: 1px 4px;
        border-radius: 2px;
        font-weight: 700;
        margin-left: 5px;
    }

    /* Cafe Widget */
    .widget-cafe {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--accent-cafe);
        border-color: rgba(212, 163, 115, 0.2);
    }

    .widget-cafe i {
        font-size: 1.5rem;
    }

    /* Repair Widget */
    .widget-repair .repair-tag {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
        color: #ccc;
    }

    .widget-repair i {
        color: var(--accent-repair);
    }

    /* Pulse Animation for Status Dot */
    .status-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent-science);
        box-shadow: 0 0 5px var(--accent-science);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        color: #666;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .about-hero h1 {
            font-size: 2.5rem;
        }

        .form-row {
            flex-direction: column;
        }
    }

    /* === HOMEPAGE MISSION SECTION === */
    .mission-section {
        padding: 8rem 10%;
        background: linear-gradient(135deg, rgba(0, 240, 255, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }

    .mission-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .label {
        display: inline-block;
        color: var(--accent-science);
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .mission-text h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .mission-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #ccc;
        margin-bottom: 1.5rem;
    }

    .mission-stats {
        display: flex;
        gap: 3rem;
        margin-top: 3rem;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--accent-science);
        line-height: 1;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #888;
        margin-top: 0.5rem;
    }

    /* BRAND SYMBOL VISUAL */
    .brand-symbol {
        position: relative;
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .symbol-ring {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid var(--accent-science);
        border-radius: 50%;
        animation: rotate 20s linear infinite, pulse-ring 3s ease-in-out infinite;
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.3), inset 0 0 20px rgba(0, 240, 255, 0.1);
    }

    .symbol-ring::before {
        content: '';
        position: absolute;
        width: 120%;
        height: 120%;
        border: 1px solid rgba(0, 240, 255, 0.4);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: rotate 15s linear infinite reverse;
    }

    .symbol-ring::after {
        content: '';
        position: absolute;
        width: 80%;
        height: 80%;
        border: 1px dashed rgba(0, 240, 255, 0.3);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: rotate 10s linear infinite;
    }

    .symbol-core {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        text-shadow:
            0 0 20px var(--accent-science),
            0 0 40px rgba(0, 240, 255, 0.5),
            0 0 60px rgba(0, 240, 255, 0.3);
        animation: text-glow 2s ease-in-out infinite alternate;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @keyframes pulse-ring {

        0%,
        100% {
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.3), inset 0 0 20px rgba(0, 240, 255, 0.1);
            transform: scale(1);
        }

        50% {
            box-shadow: 0 0 50px rgba(0, 240, 255, 0.6), inset 0 0 30px rgba(0, 240, 255, 0.2);
            transform: scale(1.02);
        }
    }

    @keyframes text-glow {
        from {
            text-shadow:
                0 0 20px var(--accent-science),
                0 0 40px rgba(0, 240, 255, 0.5);
        }

        to {
            text-shadow:
                0 0 30px var(--accent-science),
                0 0 60px rgba(0, 240, 255, 0.8),
                0 0 80px rgba(0, 240, 255, 0.4);
        }
    }

    @media (max-width: 900px) {
        .mission-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .mission-stats {
            justify-content: center;
        }

        .brand-symbol {
            margin: 2rem auto 0;
        }
    } 
/* === BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
