* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fefce8;
    color: #292524;
    line-height: 1.65;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wide-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-nav {
    background: white;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: #F59E0B;
    letter-spacing: -0.5px;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 2.8rem;
}

.menu-list a {
    color: #44403c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.menu-list a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #F59E0B;
    transition: width 0.3s ease;
}

.menu-list a:hover {
    color: #F59E0B;
}

.menu-list a:hover::before {
    width: 100%;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-btn .line {
    width: 32px;
    height: 3px;
    background: #F59E0B;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-btn.active .line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-btn.active .line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .menu-list {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2.5rem 0;
        gap: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .menu-list.active {
        left: 0;
    }
}

.page-hero {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-action,
.secondary-action {
    padding: 1.2rem 3rem;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.primary-action {
    background: white;
    color: #F59E0B;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.secondary-action {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-action:hover {
    background: rgba(255, 255, 255, 0.15);
}

.content-area {
    flex: 1;
}

.intro-block {
    padding: 5rem 0;
    background: white;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #57534e;
    margin-bottom: 1.3rem;
}

.intro-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #fbbf24;
}

.stat-card:nth-child(3) {
    grid-column: 1 / -1;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #D97706;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #78716c;
    margin-top: 0.5rem;
}

.critical-info {
    padding: 5rem 0;
    background: #fef3c7;
}

.centered-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #F59E0B;
    text-align: center;
    margin-bottom: 1rem;
}

.centered-subheading {
    text-align: center;
    font-size: 1.15rem;
    color: #78716c;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.info-item {
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.info-item.gold {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.info-item.amber {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.info-item.orange {
    background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
}

.item-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.info-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.95;
}

.featured-game {
    padding: 5rem 0;
    background: white;
}

.game-frame {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.advantages {
    padding: 5rem 0;
    background: #fef3c7;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #F59E0B;
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #292524;
    margin-bottom: 1rem;
}

.advantage-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #57534e;
}

.responsibility-block {
    padding: 5rem 0;
    background: white;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 3.5rem;
    border-radius: 15px;
    border: 3px solid #F59E0B;
}

.responsibility-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #D97706;
    margin-bottom: 1.5rem;
}

.responsibility-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #57534e;
    margin-bottom: 1.2rem;
}

.page-footer {
    background: #292524;
    color: #d6d3d1;
    padding: 3.5rem 0 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    color: #F59E0B;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #d6d3d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #F59E0B;
}

.footer-column p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    margin: 1rem;
    border: 4px solid #F59E0B;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    color: #292524;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.age-box p {
    font-size: 1.1rem;
    color: #57534e;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.age-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.accept-btn,
.reject-btn {
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.accept-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.reject-btn {
    background: #78716c;
    color: white;
}

.reject-btn:hover {
    background: #57534e;
}

.play-content {
    min-height: 80vh;
    padding: 4.5rem 0;
    background: white;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: #F59E0B;
    text-align: center;
    margin-bottom: 1.5rem;
}

.main-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #57534e;
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.game-display {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
}

.game-display iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.play-tips {
    max-width: 850px;
    margin: 0 auto;
    background: #fef3c7;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 6px solid #F59E0B;
}

.play-tips h3 {
    font-family: 'Montserrat', sans-serif;
    color: #D97706;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.play-tips ul {
    list-style-position: inside;
}

.play-tips li {
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #57534e;
}

.legal-content {
    min-height: 80vh;
    padding: 4.5rem 0;
    background: white;
}

.document-date {
    text-align: center;
    font-size: 0.95rem;
    color: #78716c;
    font-style: italic;
    margin-bottom: 3.5rem;
}

.legal-article {
    max-width: 950px;
    margin: 0 auto 3rem;
    background: #fef3c7;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 6px solid #F59E0B;
}

.legal-article h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D97706;
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.legal-article p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #57534e;
    margin-bottom: 1.2rem;
}

@media (max-width: 968px) {
    .intro-layout {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .intro-content h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .centered-heading {
        font-size: 2.3rem;
    }

    .game-frame iframe,
    .game-display iframe {
        height: 500px;
    }

    .main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-action,
    .secondary-action {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .game-frame iframe,
    .game-display iframe {
        height: 400px;
    }

    .age-box {
        padding: 2.5rem;
    }

    .intro-visual {
        grid-template-columns: 1fr;
    }

    .stat-card:nth-child(3) {
        grid-column: auto;
    }
}
