* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff8f0;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-bar {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 996;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.25);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    font-weight: 800;
}

.brand-icon {
    font-size: 2.2rem;
}

.brand-name {
    letter-spacing: 0.5px;
}

.mobile-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-btn .mobile-line {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    transition: opacity 0.3s;
    opacity: 0.9;
}

.nav-link:hover,
.nav-link.nav-active {
    opacity: 1;
}

.page-hero {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    padding: 7rem 0;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #ff9800;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.info-cards {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: #ff9800;
    margin-bottom: 3rem;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(to bottom, #fff8f0, #ffffff);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ff9800;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #ff9800;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.platform-overview {
    padding: 5rem 0;
    background: #fff8f0;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff9800;
    margin-bottom: 2rem;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #ff9800;
    box-shadow: 0 3px 15px rgba(255, 152, 0, 0.1);
}

.feature-box h4 {
    color: #ff9800;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 1.05rem;
    color: #666;
}

.game-spotlight {
    padding: 5rem 0;
    background: white;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.game-holder {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff8f0;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ff9800;
    box-shadow: 0 10px 40px rgba(255, 152, 0, 0.2);
}

.game-window {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.game-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    color: #666;
    font-weight: 500;
}

.benefits-section {
    padding: 5rem 0;
    background: #fff8f0;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(255, 152, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-box:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.benefit-box h3 {
    color: #ff9800;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.stats-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.95;
}

.cta-section {
    padding: 5rem 0;
    background: white;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff9800;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #666;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.5);
}

.play-page {
    padding: 4rem 0;
    background: white;
    min-height: calc(100vh - 500px);
}

.play-header {
    text-align: center;
    margin-bottom: 3rem;
}

.play-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ff9800;
    margin-bottom: 1rem;
}

.play-intro {
    font-size: 1.2rem;
    color: #666;
}

.instructions-box {
    background: #fff8f0;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid #ff9800;
}

.instructions-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 2rem;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instruction-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.instruction-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.instruction-text h3 {
    color: #ff9800;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.instruction-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.play-disclaimer {
    background: #fff8f0;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 5px solid #ff9800;
    font-size: 1.1rem;
}

.legal-page {
    padding: 4rem 0;
    background: white;
    min-height: calc(100vh - 500px);
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ff9800;
    margin-bottom: 1rem;
}

.legal-date {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff9800;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f57c00;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p,
.legal-page ul {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    padding-left: 2.5rem;
}

.legal-notice,
.disclaimer-box {
    background: #fff8f0;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #ff9800;
    margin-top: 3rem;
}

.disclaimer-box ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.disclaimer-box ul li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.main-footer {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 1.05rem;
    opacity: 0.9;
}

.footer-menu a:hover {
    opacity: 1;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 152, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9997;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #ff9800;
}

.age-header {
    margin-bottom: 2rem;
}

.age-symbol {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.age-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ff9800;
}

.age-info {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.age-query {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ff9800;
}

.age-controls {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-confirm,
.btn-reject {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.btn-reject {
    background: #f5f5f5;
    color: #333;
}

.btn-reject:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .mobile-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
        flex-direction: column;
        padding: 2.5rem;
        gap: 0;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .overview-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .game-window {
        height: 500px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .age-box {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-controls {
        flex-direction: column;
    }

    .btn-confirm,
    .btn-reject {
        width: 100%;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .legal-page h1 {
        font-size: 2.3rem;
    }

    .legal-page h2 {
        font-size: 1.7rem;
    }

    .cards-wrapper {
        grid-template-columns: 1fr;
    }
}
