* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #fffbea 0%, #fff9db 100%);
    color: #2c2416;
    line-height: 1.7;
    min-height: 100vh;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container-max {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar .container-max {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.brand-symbol {
    font-size: 2rem;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2c2416;
    letter-spacing: 1.5px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 3px;
    background: #2c2416;
    border-radius: 2px;
    transition: all 0.3s;
}

.primary-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-anchor {
    color: #2c2416;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-anchor:hover,
.nav-anchor.active {
    background: rgba(44, 36, 22, 0.15);
}

.hero-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(244, 208, 63, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d4af37" width="1200" height="600"/></svg>');
    background-size: cover;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-inner h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c2416;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.3rem;
    color: #2c2416;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: #2c2416;
    color: #f4d03f;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(44, 36, 22, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 36, 22, 0.5);
}

main {
    flex: 1;
}

.principles-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-header {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
}

.principles-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.principle-box {
    background: linear-gradient(135deg, #fffbea 0%, #fff9db 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    transition: all 0.3s;
    border-left: 5px solid #d4af37;
}

.principle-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.25);
}

.principle-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.principle-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.game-spotlight {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff9db 0%, #fff5cc 100%);
}

.section-lead {
    text-align: center;
    font-size: 1.2rem;
    color: #2c2416;
    margin-bottom: 3rem;
}

.game-box {
    background: #000000;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #d4af37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-message {
    margin-top: 2rem;
    text-align: center;
    background: rgba(244, 67, 54, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 3px solid #f44336;
}

.game-message p {
    color: #2c2416;
    font-weight: 600;
}

.benefits-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #fffbea 0%, #fff9db 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.1);
}

.benefit-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.benefit-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.disclosure-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffebcd 0%, #ffd89b 100%);
}

.disclosure-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #ff9800;
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.2);
}

.disclosure-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 2rem;
}

.disclosure-list {
    list-style-position: inside;
    line-height: 2;
}

.disclosure-list li {
    margin-bottom: 1rem;
}

.site-footer {
    background: linear-gradient(135deg, #2c2416 0%, #3d3020 100%);
    color: #f4d03f;
    padding: 4rem 2rem 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #e0d5b7;
    line-height: 1.8;
}

.footer-resources,
.footer-legal {
    list-style: none;
}

.footer-resources li,
.footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-resources a,
.footer-legal a {
    color: #e0d5b7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-resources a:hover,
.footer-legal a:hover {
    color: #f4d03f;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 208, 63, 0.3);
    color: #a89968;
}

.age-check-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-check-modal.hidden {
    display: none;
}

.age-check-card {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 5px solid #d4af37;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-check-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.age-check-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

.age-buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-confirm-age,
.btn-decline-age {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm-age {
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    color: #2c2416;
}

.btn-confirm-age:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-decline-age {
    background: #e0e0e0;
    color: #2c2416;
}

.btn-decline-age:hover {
    background: #d0d0d0;
}

.page-header {
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c2416;
    margin-bottom: 1rem;
}

.header-text {
    font-size: 1.2rem;
    color: #2c2416;
    max-width: 800px;
    margin: 0 auto;
}

.play-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff9db 0%, #fff5cc 100%);
}

.instructions-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.instructions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fffbea 0%, #fff9db 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.instructions-wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.instruction-item {
    text-align: center;
}

.instruction-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.play-alert {
    background: rgba(244, 67, 54, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid #f44336;
    margin-top: 2rem;
}

.play-alert p {
    color: #2c2416;
    font-weight: 600;
    text-align: center;
}

.document-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff9db 0%, #fff5cc 100%);
}

.document-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.document-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.last-modified {
    color: #888888;
    font-style: italic;
    margin-bottom: 3rem;
}

.doc-article {
    margin-bottom: 2.5rem;
}

.doc-article h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.doc-article h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
}

.doc-article ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.doc-article li {
    margin-bottom: 0.8rem;
}

.doc-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.doc-highlight {
    background: rgba(212, 175, 55, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid #d4af37;
    margin-top: 3rem;
}

.doc-highlight h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.warning-panel {
    background: rgba(244, 67, 54, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid #f44336;
    margin-bottom: 3rem;
}

.warning-panel h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #f44336;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: linear-gradient(180deg, #d4af37 0%, #f4d03f 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s;
    }

    .primary-nav.active {
        left: 0;
    }

    .nav-anchor {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(44, 36, 22, 0.2);
    }

    .hero-inner h1 {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .section-header {
        font-size: 2.2rem;
    }

    .game-iframe {
        height: 500px;
    }

    .principles-row,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .age-check-card {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }

    .age-buttons-container {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .document-content {
        padding: 2.5rem 2rem;
    }

    .document-content h1 {
        font-size: 2.2rem;
    }
}
