* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.top-nav {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 800;
    color: #d4af37;
}

.brand-symbol {
    font-size: 2.2rem;
}

.brand-name {
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.main-header {
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23d4af37" opacity="0.03" width="100" height="100"/><circle cx="50" cy="50" r="40" fill="%23d4af37" opacity="0.05"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-bottom: 3px solid #d4af37;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.play-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.key-points {
    background: #1a1a1a;
    padding: 5rem 0;
}

.point-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #d4af37;
    transition: transform 0.3s;
}

.point-box:hover {
    transform: translateY(-8px);
}

.content-wrap .point-box:not(:last-child) {
    margin-bottom: 2rem;
}

.point-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.point-box h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.point-box p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-section {
    background: #0a0a0a;
    padding: 5rem 0;
}

.intro-content h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    text-align: center;
}

.featured-game {
    background: #1a1a1a;
    padding: 5rem 0;
}

.featured-game h2 {
    font-size: 2.8rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.game-desc {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.benefits-section {
    background: #0a0a0a;
    padding: 5rem 0;
}

.benefits-section h2 {
    font-size: 2.8rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateX(8px);
    border-left-width: 8px;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.stats-banner {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    padding: 4rem 0;
    color: #0a0a0a;
}

.stat-group {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.final-cta {
    background: #1a1a1a;
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.play-page {
    background: #0a0a0a;
    padding: 4rem 0;
    min-height: calc(100vh - 500px);
}

.play-header {
    text-align: center;
    margin-bottom: 3rem;
}

.play-header h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 800;
}

.play-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.instructions-panel {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 2px solid #d4af37;
}

.instructions-panel h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instruction-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.inst-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.instruction-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.play-reminder {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border-left: 5px solid #d4af37;
    font-size: 1.1rem;
}

.legal-page {
    background: #0a0a0a;
    padding: 4rem 0;
    min-height: calc(100vh - 500px);
}

.legal-page h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-update {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    color: #f4d03f;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.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: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    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;
}

.site-footer {
    background: #000;
    padding: 4rem 0 1.5rem;
    border-top: 3px solid #d4af37;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.footer-menu a:hover {
    color: #d4af37;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d2d2d;
    color: #888;
    font-size: 0.95rem;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal.hide {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 3.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #d4af37;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal-box h2 {
    color: #d4af37;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.age-modal-box p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #e0e0e0;
}

.age-question {
    font-weight: 600;
    font-size: 1.25rem;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-confirm,
.age-decline {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.age-confirm {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
}

.age-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.age-decline {
    background: #3d3d3d;
    color: #e0e0e0;
}

.age-decline:hover {
    background: #4d4d4d;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 2.5rem;
        gap: 0;
        transition: left 0.3s;
        border-top: 2px solid #d4af37;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    .nav-links.open {
        left: 0;
    }

    .nav-link {
        padding: 1.2rem 0;
        border-bottom: 1px solid #2d2d2d;
        width: 100%;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.15rem;
    }

    .game-embed {
        height: 500px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .stat-group {
        flex-direction: column;
        gap: 2rem;
    }

    .age-modal-box {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .age-confirm,
    .age-decline {
        width: 100%;
    }

    .instruction-grid {
        grid-template-columns: 1fr;
    }

    .legal-page h1 {
        font-size: 2.3rem;
    }

    .legal-page h2 {
        font-size: 1.7rem;
    }
}
