:root {
    --neon-purple: #9D4EDD;
    --neon-pink: #FF006E;
    --neon-cyan: #00F5FF;
    --neon-yellow: #FFFF00;
    --dark-bg: #0A0E27;
    --card-bg: #1A1F3A;
    --accent: #6C63FF;
}

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

body {
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #2D1B69 100%);
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--neon-cyan), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--neon-pink), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--neon-purple), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--neon-yellow), transparent);
    background-size: 200% 200%;
    animation: float 20s ease-in-out infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.keywords-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    padding: 12px 0;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.5);
}

.keywords-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.keyword {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    padding: 0 40px;
    text-transform: uppercase;
    display: inline-block;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 50px;
}

.hero {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
    cursor: pointer;
    user-select: none;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px var(--neon-purple)); }
    to { filter: drop-shadow(0 0 30px var(--neon-pink)); }
}

.hero-subtitle {
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
    margin-bottom: 30px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.stats-banner {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(26, 31, 58, 0.8);
    padding: 25px 40px;
    border-radius: 15px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4), inset 0 0 15px rgba(157, 78, 221, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.8);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
    display: block;
}

.stat-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    color: var(--neon-cyan);
    margin-top: 10px;
    text-transform: uppercase;
}

.achievement-section {
    margin: 80px 0;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-cyan);
    font-size: 24px;
    animation: pulse 1s infinite alternate;
}

.section-title::before {
    left: -50px;
}

.section-title::after {
    right: -50px;
}

@keyframes pulse {
    from { opacity: 0.5; transform: translateY(-50%) scale(0.8); }
    to { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

.fun-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fact-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(45, 27, 105, 0.9));
    padding: 30px;
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan), var(--neon-yellow));
    border-radius: 20px;
    z-index: -1;
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.fact-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.6);
}

.fact-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: var(--neon-yellow);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-yellow);
}

.fact-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section {
    text-align: center;
    margin: 80px 0;
}

.cta-button {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    padding: 25px 50px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(255, 0, 110, 1);
}

.quote-section {
    background: rgba(26, 31, 58, 0.6);
    padding: 60px 40px;
    border-radius: 25px;
    border-left: 5px solid var(--neon-cyan);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    color: var(--neon-purple);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.quote-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-style: italic;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mission-text {
    font-size: 22px;
    font-style: normal;
}

.final-quote {
    font-size: 20px;
}

.quote-author {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--neon-yellow);
    text-align: center;
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    border-top: 2px solid var(--neon-purple);
    background: rgba(10, 14, 39, 0.9);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-icon {
    font-size: 32px;
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.social-icon:hover {
    color: var(--neon-pink);
    transform: scale(1.3) rotate(15deg);
    text-shadow: 0 0 20px var(--neon-pink);
}

.copyright {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.easter-egg {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--neon-yellow);
    z-index: 1000;
    text-align: center;
    box-shadow: 0 0 100px var(--neon-yellow);
}

.easter-egg.active {
    display: block;
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.easter-egg-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: var(--neon-yellow);
    text-shadow: 0 0 20px var(--neon-yellow);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .keyword {
        font-size: 10px;
        padding: 0 20px;
    }

    .stats-banner {
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    .fun-facts {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: 20px;
    }

    .cta-button {
        font-size: 14px;
        padding: 20px 35px;
    }
}