* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1410;
    color: #f5f1e8;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 16, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #2a1f1a 0%, #3d2b1f 100%);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    border: 3px solid #d4af37;
    max-width: 550px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-modal-box h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #d4af37;
}

.age-modal-box p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #e5d5b7;
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-confirm, .btn-deny {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1410;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-deny {
    background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
    color: #ffffff;
}

.btn-deny:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
}

/* Navigation */
.main-navigation {
    background: rgba(42, 31, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #f5f1e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    padding: 120px 30px;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: 900;
}

.tagline {
    font-size: 1.6rem;
    color: #e5d5b7;
    margin-bottom: 30px;
}

.hero-decoration {
    font-size: 2rem;
    color: #d4af37;
    letter-spacing: 30px;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Introduction */
.introduction {
    padding: 100px 0;
}

.introduction h2 {
    font-size: 3.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 50px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Key Points */
.key-points {
    padding: 100px 0;
    background: rgba(42, 31, 26, 0.3);
}

.key-points .content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.point-card {
    padding: 50px 40px;
    border-radius: 8px;
    border-left: 5px solid;
    transition: transform 0.3s;
}

.point-card:hover {
    transform: translateY(-5px);
}

.point-card.gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 208, 63, 0.08) 100%);
    border-color: #d4af37;
}

.point-card.ruby {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, rgba(178, 34, 34, 0.08) 100%);
    border-color: #b22222;
}

.point-card.emerald {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(102, 187, 106, 0.08) 100%);
    border-color: #66bb6a;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-icon {
    font-size: 3rem;
}

.card-header h3 {
    font-size: 1.8rem;
    color: #d4af37;
}

.point-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 100px 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header h2 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.showcase-header p {
    font-size: 1.3rem;
    color: #e5d5b7;
}

.game-display {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-disclaimer {
    text-align: center;
    font-size: 1.15rem;
    color: #e5d5b7;
}

/* Benefits */
.benefits {
    padding: 100px 0;
    background: rgba(42, 31, 26, 0.3);
}

.benefits h2 {
    font-size: 3.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 70px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-box {
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(61, 43, 31, 0.05) 100%);
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.benefit-box:hover {
    border-color: #d4af37;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.3);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.benefit-box h3 {
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.benefit-box p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Commitment */
.commitment {
    padding: 100px 0;
}

.commitment-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    padding: 60px;
    border-radius: 8px;
    border: 2px solid #d4af37;
    max-width: 1100px;
    margin: 0 auto;
}

.commitment-box h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
}

.commitment-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(42, 31, 26, 0.8) 0%, rgba(61, 43, 31, 0.8) 100%);
    padding: 80px 30px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.header-content h1 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 1.3rem;
    color: #e5d5b7;
}

.legal-date {
    font-size: 1rem;
    color: #c0b090;
}

/* Play Page */
.game-section {
    padding: 0;
}

.game-container-full {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border-top: 4px solid #d4af37;
    border-bottom: 4px solid #d4af37;
}

.game-iframe-full {
    width: 100%;
    height: 100%;
    border: none;
}

.gameplay-guide {
    padding: 100px 0;
}

.gameplay-guide h2 {
    font-size: 3.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 60px;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.guide-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(61, 43, 31, 0.05) 100%);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.guide-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.guide-card h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.guide-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.play-reminder {
    padding: 80px 0;
}

.reminder-panel {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15) 0%, rgba(178, 34, 34, 0.15) 100%);
    padding: 50px;
    border-radius: 8px;
    border: 2px solid #b22222;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.reminder-panel h3 {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 25px;
}

.reminder-panel p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
}

.legal-article h2 {
    font-size: 2.3rem;
    color: #d4af37;
    margin-top: 50px;
    margin-bottom: 25px;
}

.legal-article p {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Footer */
.site-footer {
    background: rgba(42, 31, 26, 0.95);
    padding: 80px 0 30px;
    border-top: 3px solid #d4af37;
    margin-top: 100px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e5d5b7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #f5f1e8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-notice {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #c0b090;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(42, 31, 26, 0.98);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: right 0.3s;
        border-left: 3px solid #d4af37;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .introduction h2,
    .benefits h2,
    .showcase-header h2,
    .gameplay-guide h2 {
        font-size: 2.5rem;
    }

    .key-points .content-wrapper {
        grid-template-columns: 1fr;
    }

    .game-display {
        aspect-ratio: 4 / 3;
    }

    .game-container-full {
        height: 60vh;
        min-height: 400px;
    }

    .age-modal-box {
        padding: 40px;
        margin: 20px;
    }

    .age-modal-box h2 {
        font-size: 2.2rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .commitment-box,
    .reminder-panel {
        padding: 40px 25px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .legal-article h2 {
        font-size: 1.8rem;
    }
}
