* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to bottom, #667eea 0%, #764ba2 100%);
    color: #2d3436;
    line-height: 1.7;
    min-height: 100vh;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.top-nav {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    color: #667eea;
}

.brand-icon {
    font-size: 2rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #667eea;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #667eea;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 480px;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-gate-box p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-actions button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: transform 0.2s;
}

.btn-confirm {
    background: #00b894;
    color: white;
}

.btn-confirm:hover {
    transform: scale(1.05);
}

.btn-deny {
    background: #d63031;
    color: white;
}

.btn-deny:hover {
    transform: scale(1.05);
}

.hero-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.hero-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.info-boxes {
    padding: 4rem 0;
    background: white;
}

.info-boxes .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-box {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.box-purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.box-blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.box-green {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.box-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.game-showcase {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.game-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.game-container {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-notice {
    text-align: center;
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.benefits {
    padding: 4rem 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 3rem;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 2rem;
    border-radius: 15px;
    color: white;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mission {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.mission h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    padding: 4rem 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.play-intro {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.play-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-play-area {
    padding: 3rem 0;
    background: white;
}

.game-container-large {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.game-iframe-large {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.play-guide {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.play-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 2rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guide-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.guide-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-page {
    padding: 3rem 0;
    background: white;
    min-height: 70vh;
}

.legal-page h1 {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.date-stamp {
    font-style: italic;
    color: #636e72;
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p,
.legal-page li {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.alert-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.alert-box h2 {
    color: white;
    margin-top: 0;
}

.site-footer {
    background: rgba(45, 52, 54, 0.95);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link::after {
        display: none;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .age-gate-box {
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .info-boxes .wrapper,
    .benefits-layout,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe,
    .game-iframe-large {
        height: 400px;
    }
}
