@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Barlow:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Barlow', sans-serif;
    background: #0f0f1a;
    color: #f0e6ff;
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Grid Background */
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(255, 0, 128, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 128, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #0f0f1a 0%, #1a0a2e 50%, #0f0f1a 100%);
    background-size: 60px 60px, 60px 60px, 100% 100%;
    z-index: -1;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9000;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.98) 0%, rgba(15, 15, 26, 0.9) 100%);
    border-bottom: 2px solid #ff0080;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-family: 'Audiowide', cursive;
    font-size: 2rem;
    color: #ff0080;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.8), 0 0 40px rgba(255, 0, 128, 0.4);
    letter-spacing: 3px;
}

.burger-menu {
    display: none;
    background: none;
    border: 2px solid #ff0080;
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ff0080;
    margin: 5px 0;
    transition: 0.3s;
}

.burger-menu.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: 'Barlow', sans-serif;
    color: #c799ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #ff0080;
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
}

/* Page Body */
.page-body {
    padding-top: 100px;
}

/* Hero Area */
.hero-area {
    padding: 100px 35px;
    text-align: center;
}

.hero-area h1 {
    font-family: 'Audiowide', cursive;
    font-size: 4rem;
    color: #ff0080;
    margin-bottom: 30px;
    text-shadow: 0 0 40px rgba(255, 0, 128, 0.6), 0 0 80px rgba(255, 0, 128, 0.3);
    letter-spacing: 4px;
}

.hero-area .lead {
    font-size: 1.35rem;
    color: #b08fff;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 300;
}

/* Neon Boxes */
.neon-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.neon-box {
    flex: 1 1 320px;
    max-width: 400px;
    background: rgba(26, 10, 46, 0.7);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #ff0080, #00ffff) 1;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
}

.neon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

.neon-box:hover::before {
    opacity: 1;
}

.neon-box .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.neon-box h3 {
    font-family: 'Audiowide', cursive;
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.neon-box p {
    color: #b08fff;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
}

/* Game Zone */
.game-zone {
    padding: 70px 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.game-zone h2 {
    font-family: 'Audiowide', cursive;
    text-align: center;
    color: #ff0080;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.game-wrapper {
    background: #0a0a14;
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff0080, #00ffff, #ff0080) 1;
    padding: 8px;
    position: relative;
}

.game-wrapper::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.2), rgba(0, 255, 255, 0.2));
    filter: blur(20px);
    z-index: -1;
}

.game-wrapper iframe {
    width: 100%;
    height: 580px;
    border: none;
    display: block;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 60px 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(15, 15, 26, 0.8);
    border-top: 3px solid #00ffff;
    padding: 35px 25px;
    text-align: center;
}

.stat-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.stat-item h4 {
    font-family: 'Audiowide', cursive;
    color: #00ffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.stat-item p {
    color: #8866cc;
    font-size: 0.9rem;
}

/* Article */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 35px;
}

.article-content h1 {
    font-family: 'Audiowide', cursive;
    color: #ff0080;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.4);
}

.article-content h2 {
    font-family: 'Audiowide', cursive;
    color: #00ffff;
    font-size: 1.3rem;
    margin: 40px 0 15px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.article-content p {
    color: #b08fff;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.article-content ul {
    color: #b08fff;
    margin: 18px 0 18px 30px;
}

.article-content li {
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background: rgba(10, 10, 18, 0.95);
    border-top: 2px solid #ff0080;
    padding: 60px 35px 40px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h4 {
    font-family: 'Audiowide', cursive;
    color: #ff0080;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.support-links a {
    color: #8866cc;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover {
    color: #00ffff;
}

.copyright-text {
    color: #5544aa;
    font-size: 0.9rem;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 0, 128, 0.2);
}

/* Age Overlay */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 18, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.age-overlay.verified {
    display: none;
}

.age-box {
    background: linear-gradient(180deg, #1a0a2e 0%, #0f0f1a 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #ff0080, #00ffff) 1;
    padding: 55px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.age-box::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3), rgba(0, 255, 255, 0.2));
    filter: blur(30px);
    z-index: -1;
}

.age-box h2 {
    font-family: 'Audiowide', cursive;
    color: #ff0080;
    font-size: 1.8rem;
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.age-box p {
    color: #b08fff;
    margin-bottom: 35px;
}

.age-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    font-family: 'Audiowide', cursive;
    padding: 14px 45px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.age-btn.confirm {
    background: linear-gradient(135deg, #ff0080, #ff4da6);
    color: white;
    border: none;
}

.age-btn.confirm:hover {
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
    transform: translateY(-2px);
}

.age-btn.decline {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.age-btn.decline:hover {
    background: rgba(0, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1000px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .hero-area h1 {
        font-size: 2.5rem;
    }

    .hero-area .lead {
        font-size: 1.1rem;
    }

    .game-wrapper iframe {
        height: 420px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .age-box {
        margin: 20px;
        padding: 40px 25px;
    }

    .age-btns {
        flex-direction: column;
    }
}
