* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #240046 50%, #10002b 100%);
    color: #e0e0ff;
    min-height: 100vh;
    line-height: 1.68;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(12px);
}

.age-gate.hidden {
    display: none;
}

.age-content {
    background: linear-gradient(145deg, #240046, #3a0ca3);
    padding: 42px 36px;
    border-radius: 18px;
    text-align: center;
    max-width: 490px;
    border: 2px solid #10ffcb;
    box-shadow: 0 0 45px rgba(16, 255, 203, 0.35);
}

.age-content h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #10ffcb;
    font-weight: 700;
    letter-spacing: 1px;
}

.age-content p {
    font-size: 1.14rem;
    margin-bottom: 30px;
    color: #c8c8e8;
}

.age-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-age {
    padding: 13px 36px;
    font-size: 1.08rem;
    border: 2px solid #10ffcb;
    background: rgba(16, 255, 203, 0.08);
    color: #10ffcb;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-age:hover {
    background: #10ffcb;
    color: #240046;
    box-shadow: 0 0 22px rgba(16, 255, 203, 0.5);
}

header {
    background: rgba(36, 0, 70, 0.75);
    backdrop-filter: blur(12px);
    padding: 19px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(16, 255, 203, 0.25);
}

.header-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.logo-icon {
    width: 46px;
    height: 46px;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 700;
    color: #10ffcb;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #c8c8e8;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #10ffcb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 29px;
    height: 3px;
    background: #10ffcb;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    padding: 95px 28px;
    text-align: center;
}

.hero-content {
    max-width: 880px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #10ffcb, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
}

.hero p {
    font-size: 1.32rem;
    margin-bottom: 36px;
    color: #c8c8e8;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #10ffcb, #9d4edd);
    color: #0f0f23;
    text-decoration: none;
    font-size: 1.24rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 35px rgba(16, 255, 203, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(16, 255, 203, 0.6);
}

.features {
    padding: 78px 28px;
    max-width: 1350px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.9rem;
    text-align: center;
    margin-bottom: 52px;
    background: linear-gradient(135deg, #10ffcb, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(36, 0, 70, 0.6), rgba(58, 12, 163, 0.3));
    padding: 36px 30px;
    border-radius: 14px;
    border: 1px solid rgba(16, 255, 203, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #10ffcb;
    box-shadow: 0 0 28px rgba(16, 255, 203, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.9rem;
    margin-bottom: 17px;
}

.feature-card h3 {
    font-size: 1.55rem;
    margin-bottom: 13px;
    color: #10ffcb;
    font-weight: 700;
}

.feature-card p {
    color: #c8c8e8;
    font-size: 1.06rem;
}

.game-section {
    padding: 78px 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-container {
    background: rgba(36, 0, 70, 0.5);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #10ffcb;
    box-shadow: 0 0 45px rgba(16, 255, 203, 0.3);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
}

footer {
    background: rgba(36, 0, 70, 0.85);
    padding: 58px 28px 30px;
    margin-top: 95px;
    border-top: 2px solid rgba(16, 255, 203, 0.3);
}

.footer-content {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #10ffcb;
    text-decoration: none;
    font-size: 1.06rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #9d4edd;
}

.footer-disclaimer {
    font-size: 0.94rem;
    color: #a8a8c8;
    margin: 30px 0;
    line-height: 1.76;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content {
    max-width: 990px;
    margin: 0 auto;
    padding: 78px 28px;
}

.legal-content h1 {
    font-size: 2.9rem;
    background: linear-gradient(135deg, #10ffcb, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.95rem;
    color: #10ffcb;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 18px;
    font-size: 1.09rem;
    color: #c8c8e8;
}

.legal-content ul {
    margin: 18px 0 18px 40px;
    color: #c8c8e8;
}

.legal-content li {
    margin-bottom: 9px;
    font-size: 1.09rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 72%;
        background: rgba(36, 0, 70, 0.97);
        transition: right 0.3s ease;
        padding-top: 76px;
        border-left: 2px solid rgba(16, 255, 203, 0.3);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 19px 28px;
        border-bottom: 1px solid rgba(16, 255, 203, 0.15);
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.08rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 18px;
    }
}
