@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    background-color: #0A0D0A;
}

:root {
    --primary-color: #79FF14;
    --secondary-color: #8AFF3A;
    --accent-green: #9BFF5A;
    --dark-green: #5ADB00;
    --terminal-green: #79FF14;
    --bg-dark: #0A0D0A;
    --bg-darker: #000000;
    --bg-section: #121512;
    --text-primary: #E0E0E0;
    --text-secondary: #5A6B5A;
    --text-muted: #3A4B3A;
    --border-color: #0F1A12;
    --accent-gradient: linear-gradient(135deg, #79FF14 0%, #9BFF5A 100%);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0A0D0A;
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
    background-image: none;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-left: 2px solid rgba(0, 255, 65, 0.2);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-green);
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 1),
        inset 0 0 6px rgba(0, 0, 0, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-darker);
}

/* Grain Overlay Effect - Animated Film Grain */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
    animation: grainMove 0.5s steps(2) infinite;
    overflow: hidden;
}

@keyframes grainMove {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 0%); }
    30% { transform: translate(0%, 1%); }
    40% { transform: translate(-1%, 0%); }
    50% { transform: translate(1%, -1%); }
    60% { transform: translate(0%, 1%); }
    70% { transform: translate(-1%, 0%); }
    80% { transform: translate(1%, 1%); }
    90% { transform: translate(0%, -1%); }
}

/* Scanlines Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 3px
    );
    pointer-events: none;
    z-index: 9998;
    opacity: 0.15;
    animation: scanlines 8s linear infinite;
    overflow: hidden;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(10, 13, 10, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(121, 255, 20, 0.3);
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(121, 255, 20, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(121, 255, 20, 0.5);
    }
}

.logo:hover {
    text-shadow: 0 0 12px rgba(121, 255, 20, 0.6);
    cursor: pointer;
}



.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    z-index: 1;
}

.hero::before {
    content: '> ACCESSING_CLASSIFIED_ARCHIVES...\A> DECRYPTING_9MM_DATABASE...\A> CONNECTION_ESTABLISHED\A> READY_';
    position: absolute;
    top: 20%;
    left: 3%;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--terminal-green);
    opacity: 0.3;
    white-space: pre;
    line-height: 2;
    animation: terminalTyping 4s ease-in-out infinite;
}

.hero::after {
    content: '[CLEARANCE_LEVEL_3_AUTHORIZED]';
    position: absolute;
    bottom: 15%;
    right: 3%;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--terminal-green);
    opacity: 0.25;
    border: 1px solid var(--terminal-green);
    padding: 0.6rem 1.2rem;
    animation: borderPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
}

@keyframes terminalTyping {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}

@keyframes borderPulse {
    0%, 100% { 
        border-color: rgba(0, 255, 65, 0.3);
        box-shadow: 0 0 5px rgba(0, 255, 65, 0.1);
    }
    50% { 
        border-color: rgba(0, 255, 65, 0.6);
        box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    position: relative;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(121, 255, 20, 0.3);
    animation: subtleGlitch 4s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

@keyframes subtleGlitch {
    0%, 90%, 100% {
        opacity: 1;
        transform: translate(0);
        text-shadow: 
            0 0 5px rgba(121, 255, 20, 0.4),
            0 0 10px rgba(121, 255, 20, 0.2);
    }
    92% {
        opacity: 0.95;
        transform: translate(-1px, 1px);
        text-shadow: 
            -1px 0 2px rgba(255, 0, 0, 0.3),
            1px 0 2px rgba(0, 255, 255, 0.3),
            0 0 5px rgba(121, 255, 20, 0.4);
    }
    94% {
        opacity: 1;
        transform: translate(1px, -1px);
        text-shadow: 
            1px 0 2px rgba(255, 0, 0, 0.3),
            -1px 0 2px rgba(0, 255, 255, 0.3),
            0 0 5px rgba(121, 255, 20, 0.4);
    }
    96% {
        opacity: 0.98;
        transform: translate(0);
        text-shadow: 
            0 0 5px rgba(121, 255, 20, 0.4),
            0 0 10px rgba(121, 255, 20, 0.2);
    }
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    z-index: 3;
}

.scroll-indicator::before {
    content: '[ ';
}

.scroll-indicator::after {
    content: ' ]';
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-color));
    margin: 1rem auto 0;
    animation: scroll-anim 2s infinite;
    box-shadow: 0 0 5px rgba(121, 255, 20, 0.3);
}

@keyframes scroll-anim {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

/* Content Sections */
.content-section {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    padding: 8rem 5%;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-section);
    z-index: 10;
    overflow: hidden;
}

.content-section.dark {
    background: #0A0D0A;
    z-index: 10;
}

.section-number {
    position: absolute;
    top: 6rem;
    left: 5%;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 900;
    color: rgba(121, 255, 20, 0.05);
    line-height: 1;
    text-shadow: 0 0 20px rgba(121, 255, 20, 0.08);
}

/* Easter Egg - Terminal Text */
.section-content::before {
    content: '> ' attr(data-terminal);
    position: absolute;
    top: 2rem;
    right: 5%;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--terminal-green);
    opacity: 0.35;
    pointer-events: none;
    animation: cursorBlink 1.5s step-end infinite;
}

.section-content::after {
    content: '_';
    position: absolute;
    top: 2rem;
    right: calc(5% - 0.5rem);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--terminal-green);
    opacity: 0.35;
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 0.35; }
    51%, 100% { opacity: 0; }
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(121, 255, 20, 0.3);
    font-family: 'Orbitron', sans-serif;
    word-wrap: break-word;
}

.section-content h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    word-wrap: break-word;
}

.text-block {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

.text-block p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-block ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
    width: 100%;
}

.text-block li {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-block li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-family: 'Share Tech Mono', monospace;
}

.text-block em {
    color: var(--primary-color);
    font-style: italic;
}

.text-block strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(18, 21, 18, 0.6);
    border: 1px solid var(--border-color);
    border-left: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(18, 21, 18, 0.8);
    border-left-width: 3px;
    transform: translateY(-3px);
}

.stat::after {
    content: '█';
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
    color: var(--terminal-green);
    opacity: 0.15;
    font-size: 0.8rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(18, 21, 18, 0.5);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.spec-item:hover {
    background: rgba(18, 21, 18, 0.7);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.spec-item:nth-child(3)::before {
    content: '> CLASSIFIED';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--terminal-green);
    opacity: 0.2;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Timeline */
.timeline {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover {
    background: rgba(0, 255, 65, 0.05);
    transform: translateX(10px);
}

.timeline-item:last-child::after {
    content: '> END_TRANSMISSION';
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--terminal-green);
    opacity: 0.25;
}

.year {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.event {
    font-size: 1.2rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
}

/* Domain Section */
.domain-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: 
        linear-gradient(135deg, rgba(0, 255, 65, 0.06) 0%, rgba(102, 255, 153, 0.03) 100%),
        radial-gradient(ellipse at center, rgba(0, 255, 65, 0.08) 0%, transparent 70%),
        var(--bg-darker);
    position: relative;
    border-top: 2px solid rgba(0, 255, 65, 0.2);
}

.domain-section::before {
    content: '> PREMIUM_ASSET_AVAILABLE';
    position: absolute;
    top: 3rem;
    left: 5%;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--terminal-green);
    opacity: 0.35;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.domain-content {
    text-align: center;
    max-width: 800px;
}

.domain-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.domain-name {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 0 60px rgba(0, 255, 65, 0.5);
    filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.4));
}

.domain-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 50px rgba(0, 255, 65, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.contact-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    background: #000000;
    border-top: 2px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(18, 21, 18, 0.6);
    border: 1px solid var(--border-color);
    border-left: 2px solid var(--primary-color);
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(18, 21, 18, 0.9);
    border-left-width: 3px;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.discord:hover {
    border-left-color: #5865F2;
}

.social-link.instagram:hover {
    border-left-color: #E4405F;
}

/* Visitor Counter */
.visitor-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 2rem;
    background: rgba(10, 13, 10, 0.8);
    border: 1px solid var(--border-color);
    position: relative;
}

.visitor-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.counter-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.counter-value {
    display: flex;
    gap: 0.3rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
}

.counter-digit {
    display: inline-block;
    min-width: 1.2em;
    padding: 0.2rem 0.4rem;
    background: rgba(18, 21, 18, 0.8);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    text-align: center;
    text-shadow: 0 0 10px rgba(121, 255, 20, 0.5);
    animation: digitGlow 2s ease-in-out infinite;
}

@keyframes digitGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(121, 255, 20, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(121, 255, 20, 0.8);
    }
}

footer::after {
    content: '> CONNECTION_TERMINATED';
    position: absolute;
    bottom: 0.5rem;
    right: 2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--terminal-green);
    opacity: 0.15;
}

/* MW3 Easter Egg - Hidden (no visual affordances) */
#e03 {
    cursor: default;
    user-select: none;
}

.mw3-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mw3-modal-content {
    background: #0A0D0A;
    border: 1px solid #0F1A12;
    margin: 15% auto;
    padding: 0;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mw3-close {
    color: #5A6B5A;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
}

.mw3-close:hover {
    color: #79FF14;
}

.mw3-header {
    background: #121512;
    border-bottom: 2px solid #79FF14;
    padding: 2rem 2rem 1.5rem 2rem;
    position: relative;
}

.mw3-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #79FF14, transparent);
    opacity: 0.5;
}

.mw3-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #E0E0E0;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.mw3-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #5A6B5A;
    text-align: center;
    text-transform: uppercase;
}

.mw3-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mw3-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mw3-field label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #79FF14;
    text-transform: uppercase;
    font-weight: 700;
}

.mw3-field input {
    background: #121512;
    border: 1px solid #0F1A12;
    border-left: 2px solid #79FF14;
    color: #5A6B5A;
    padding: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mw3-field input:focus {
    outline: none;
    border-left-color: #79FF14;
    background: #0A0D0A;
    color: #E0E0E0;
}

.mw3-field input::placeholder {
    color: #3A4B3A;
}

.mw3-submit {
    background: #121512;
    border: 1px solid #79FF14;
    color: #79FF14;
    padding: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.mw3-submit:hover {
    background: #79FF14;
    color: #0A0D0A;
}

.mw3-error {
    color: #FF3333;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    min-height: 20px;
    margin-top: 0.5rem;
}

.mw3-hint {
    display: none;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(121, 255, 20, 0.05);
    border-left: 2px solid #79FF14;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: #5A6B5A;
    font-style: italic;
}

.mw3-hint.show {
    display: block;
}

/* Loading Animation for Stats */
.stat {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.1);
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }

.stat:hover {
    background: rgba(0, 255, 65, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 6px 25px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mw3-modal-content {
        margin: 20% auto;
        padding: 2rem;
        width: 95%;
    }

    .mw3-logo {
        font-size: 1.5rem;
    }

    .mw3-subtitle {
        font-size: 1rem;
    }

    .navbar {
        padding: 1rem 3%;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .logo {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        gap: 0.6rem;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        padding: 0.3rem 0.6rem;
    }

    .hero {
        padding-top: 100px;
        min-height: 100vh;
        width: 100%;
        padding-left: 3%;
        padding-right: 3%;
    }

    .hero::before {
        font-size: 0.65rem;
        top: 15%;
        left: 2%;
        max-width: 90%;
        word-wrap: break-word;
    }

    .hero::after {
        font-size: 0.65rem;
        bottom: 12%;
        right: 2%;
        padding: 0.5rem 0.8rem;
        max-width: 90%;
    }

    .hero-content {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .glitch {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1rem;
        word-wrap: break-word;
        max-width: 100%;
    }

    .subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        letter-spacing: 0.2em;
        word-wrap: break-word;
        max-width: 100%;
    }

    .content-section {
        padding: 6rem 3% 4rem;
        min-height: auto;
        width: 100%;
    }

    .section-number {
        font-size: clamp(4rem, 15vw, 6rem);
        top: 3rem;
        left: 3%;
        opacity: 0.8;
    }

    .section-content {
        padding-top: 3rem;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .section-content h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 2rem;
    }

    .section-content h3 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin: 2rem 0 1rem 0;
    }

    .text-block p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .text-block li {
        font-size: clamp(0.9rem, 2.3vw, 1.05rem);
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .section-content::before,
    .section-content::after {
        display: none;
    }

    .stats-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .year {
        font-size: 1.5rem;
    }

    .event {
        font-size: 1rem;
    }

    .stats-grid,
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat,
    .spec-item {
        padding: 1.5rem;
    }

    .mw3-modal-content {
        width: 95%;
        padding: 2rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .visitor-counter {
        padding: 1.2rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    .counter-value {
        font-size: 1.5rem;
    }

    footer::after {
        font-size: 0.5rem;
        right: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 2%;
        gap: 0.3rem;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.12em;
    }

    .nav-links {
        gap: 0.4rem;
    }

    .nav-links a {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .glitch {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .subtitle {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
        letter-spacing: 0.15em;
    }

    .section-number {
        font-size: clamp(3rem, 18vw, 5rem);
        top: 2.5rem;
    }

    .section-content h2 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .content-section {
        padding: 5rem 3% 3rem;
    }

    .text-block p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
    }

    .text-block li {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }
}

/* Page Title Animation */
@keyframes titlePulse {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.7;
    }
}

title {
    animation: titlePulse 3s ease-in-out infinite;
}
