* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background: linear-gradient(to bottom, #2a1810 0%, #3d2415 50%, #52301a 100%);
    color: #f5e6d3;
    line-height: 1.8;
    min-height: 100vh;
}

/* Age Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 5, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #52301a 0%, #3d2415 100%);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 165, 0, 0.2);
    border: 2px solid rgba(255, 180, 100, 0.3);
}

.age-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.age-modal-box h2 {
    color: #f4a460;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.age-modal-box p {
    color: #e5d4c1;
    margin-bottom: 1rem;
}

.age-disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    color: #d4bfa8;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.accept-btn, .decline-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Merriweather', serif;
}

.accept-btn {
    background: linear-gradient(135deg, #f4a460 0%, #d2691e 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.4);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.6);
}

.decline-btn {
    background: #4a4a4a;
    color: #fff;
}

.decline-btn:hover {
    background: #5a5a5a;
}

/* Header */
.main-header {
    background: rgba(42, 24, 16, 0.95);
    border-bottom: 3px solid rgba(244, 164, 96, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: #f4a460;
}

.brand-icon {
    font-size: 2rem;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #e5d4c1;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4a460;
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #f4a460;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-bar {
    width: 26px;
    height: 3px;
    background: #f4a460;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    background: rgba(61, 36, 21, 0.98);
    border-bottom: 2px solid rgba(244, 164, 96, 0.3);
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    color: #e5d4c1;
    text-decoration: none;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(244, 164, 96, 0.2);
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(244, 164, 96, 0.1);
    color: #f4a460;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(82, 48, 26, 0.7) 0%, rgba(61, 36, 21, 0.7) 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 3px solid rgba(244, 164, 96, 0.3);
}

.hero-content h1 {
    font-size: 3rem;
    color: #f4a460;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.3rem;
    color: #e5d4c1;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.primary-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #f4a460 0%, #d2691e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
    transition: all 0.3s ease;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 164, 96, 0.6);
}

.primary-cta.large {
    font-size: 1.3rem;
    padding: 1.5rem 4rem;
}

/* Info Blocks */
.info-blocks {
    margin-bottom: 4rem;
}

.block-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-block {
    background: rgba(61, 36, 21, 0.6);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(244, 164, 96, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 164, 96, 0.3);
}

.block-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-block h3 {
    color: #f4a460;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Featured Game */
.featured-game {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #f4a460;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #e5d4c1;
}

.game-wrapper {
    background: rgba(61, 36, 21, 0.5);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-cta {
    text-align: center;
}

.secondary-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(244, 164, 96, 0.2);
    color: #f4a460;
    text-decoration: none;
    border: 2px solid #f4a460;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #f4a460;
    color: #fff;
}

/* Content Section */
.content-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #f4a460;
    text-align: center;
    margin-bottom: 3rem;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.column h3 {
    color: #f4a460;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.column p {
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    background: rgba(61, 36, 21, 0.5);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(82, 48, 26, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #f4a460;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(244, 164, 96, 0.3);
    margin-bottom: 0.5rem;
}

.benefit-card h4 {
    color: #f4a460;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Call to Action */
.call-to-action {
    margin-bottom: 4rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(82, 48, 26, 0.8) 0%, rgba(61, 36, 21, 0.8) 100%);
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(244, 164, 96, 0.3);
}

.cta-box h2 {
    font-size: 2.5rem;
    color: #f4a460;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    background: rgba(61, 36, 21, 0.6);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 3px solid rgba(244, 164, 96, 0.3);
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #f4a460;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: #d4bfa8;
}

/* Game Instructions */
.game-instructions {
    margin-bottom: 3rem;
}

.instruction-box {
    background: rgba(61, 36, 21, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
}

.instruction-box h2 {
    color: #f4a460;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.instruction-item {
    padding: 1.5rem;
    background: rgba(82, 48, 26, 0.4);
    border-radius: 8px;
    border-left: 3px solid #f4a460;
}

.instruction-item strong {
    color: #f4a460;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Game Section */
.game-section {
    margin-bottom: 3rem;
}

.game-display {
    background: rgba(61, 36, 21, 0.5);
    padding: 2rem;
    border-radius: 12px;
}

.game-player {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Reminder Section */
.reminder-section {
    margin-bottom: 3rem;
}

.reminder-box {
    background: rgba(82, 48, 26, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(244, 164, 96, 0.3);
    text-align: center;
}

.reminder-box h3 {
    color: #f4a460;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Legal Section */
.legal-section {
    margin-bottom: 3rem;
}

.legal-document {
    background: rgba(61, 36, 21, 0.5);
    padding: 3rem;
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-document h2 {
    color: #f4a460;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.7rem;
    color: #e5d4c1;
}

/* Footer */
.site-footer {
    background: rgba(42, 24, 16, 0.95);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid rgba(244, 164, 96, 0.3);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #f4a460;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 1rem;
    color: #d4bfa8;
}

.resource-list, .footer-menu {
    list-style: none;
}

.resource-list li, .footer-menu li {
    margin-bottom: 0.6rem;
}

.resource-list a, .footer-menu a {
    color: #e5d4c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-list a:hover, .footer-menu a:hover {
    color: #f4a460;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 164, 96, 0.2);
    color: #d4bfa8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .game-embed {
        height: 450px;
    }

    .game-player {
        height: 500px;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .age-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .accept-btn, .decline-btn {
        width: 100%;
    }

    .legal-document {
        padding: 2rem 1.5rem;
    }
}
