* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a1628;
    color: #e8f4f8;
    min-height: 100vh;
    line-height: 1.6;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-content {
    background: linear-gradient(135deg, #0d2847, #1a3a5c);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    max-width: 480px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.age-content h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
    color: #00ffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #b8d4e8;
}

.age-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.btn-age {
    padding: 14px 38px;
    font-size: 1.05rem;
    border: 2px solid #00ffff;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-age:hover {
    background: #00ffff;
    color: #0a1628;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

header {
    background: rgba(13, 30, 52, 0.85);
    backdrop-filter: blur(15px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00ffff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #b8d4e8;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #00ffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    padding: 90px 25px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 153, 255, 0.1) 0%, transparent 100%);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #00ffff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 38px;
    color: #b8d4e8;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #00ffff, #0099ff);
    color: #0a1628;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(0, 255, 255, 0.6);
}

.features {
    padding: 75px 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 55px;
    background: linear-gradient(135deg, #00ffff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(13, 40, 71, 0.5), rgba(26, 58, 92, 0.3));
    padding: 35px 28px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #00ffff;
    font-weight: 700;
}

.feature-card p {
    color: #b8d4e8;
    font-size: 1.05rem;
}

.game-section {
    padding: 75px 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-container {
    background: rgba(13, 30, 52, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #00ffff;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
}

footer {
    background: rgba(13, 30, 52, 0.9);
    padding: 55px 25px 28px;
    margin-top: 90px;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #00ffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.footer-disclaimer {
    font-size: 0.92rem;
    color: #8ba8c0;
    margin: 28px 0;
    line-height: 1.7;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 75px 25px;
}

.legal-content h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #00ffff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 38px;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.9rem;
    color: #00ffff;
    margin-top: 38px;
    margin-bottom: 18px;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 18px;
    font-size: 1.08rem;
    color: #b8d4e8;
}

.legal-content ul {
    margin: 18px 0 18px 38px;
    color: #b8d4e8;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: rgba(13, 30, 52, 0.98);
        transition: right 0.3s ease;
        padding-top: 75px;
        border-left: 1px solid rgba(0, 255, 255, 0.3);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 18px 28px;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 18px;
    }
}
