* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #f5e6d3 0%, #d4a574 100%);
    color: #2c1810;
    line-height: 1.6;
}

.main-header {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 32px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #f5deb3;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.nav-item.active {
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ffd700;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(210, 105, 30, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23d2691e" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: #ffd700;
}

.hero-text {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f5deb3;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c1810;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #8b4513;
    margin-bottom: 30px;
    text-align: center;
}

.intro-text p {
    font-size: 18px;
    color: #4a2c1a;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.key-points {
    padding: 80px 0;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.point-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.point-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.point-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #8b4513;
    margin-bottom: 15px;
}

.point-card p {
    font-size: 16px;
    color: #4a2c1a;
    line-height: 1.7;
}

.game-display {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.4);
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #8b4513;
    margin-bottom: 20px;
}

.game-header p {
    font-size: 18px;
    color: #4a2c1a;
    max-width: 700px;
    margin: 0 auto;
}

.game-embed {
    background: rgba(139, 69, 19, 0.9);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
}

.features-showcase {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #8b4513;
    text-align: center;
    margin-bottom: 50px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-block {
    background: rgba(255, 255, 255, 0.7);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #d2691e;
}

.feature-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #8b4513;
    margin-bottom: 12px;
}

.feature-block p {
    color: #4a2c1a;
    font-size: 16px;
}

.important-notice {
    padding: 80px 0;
}

.notice-box {
    background: linear-gradient(135deg, #ffe4b5 0%, #ffd700 100%);
    border: 4px solid #d2691e;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.notice-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #8b4513;
    margin-bottom: 25px;
    text-align: center;
}

.notice-content p {
    font-size: 17px;
    color: #2c1810;
    margin-bottom: 18px;
    line-height: 1.8;
}

.notice-content strong {
    color: #8b4513;
    font-weight: 700;
}

.main-footer {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: #f5deb3;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #f5deb3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(245, 222, 179, 0.3);
    color: #d4a574;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-modal {
    background: linear-gradient(135deg, #f5deb3 0%, #d4a574 100%);
    padding: 60px;
    border-radius: 30px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #ffd700;
}

.age-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.age-gate-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #8b4513;
    margin-bottom: 20px;
}

.age-gate-modal p {
    font-size: 18px;
    color: #4a2c1a;
    margin-bottom: 15px;
}

.age-question {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 30px;
    color: #2c1810;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-actions button {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
    color: #fff;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

.btn-deny {
    background: linear-gradient(135deg, #dc143c 0%, #ff6347 100%);
    color: #fff;
}

.btn-deny:hover {
    transform: scale(1.05);
}

.page-header {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(210, 105, 30, 0.9) 100%);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #f5deb3;
}

.play-info {
    padding: 60px 0;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.panel {
    background: rgba(255, 255, 255, 0.8);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #8b4513;
    margin-bottom: 15px;
}

.panel p {
    color: #4a2c1a;
    line-height: 1.7;
}

.main-game {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.4);
}

.game-frame-container {
    background: rgba(139, 69, 19, 0.9);
    padding: 30px;
    border-radius: 25px;
}

.full-game-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
}

.play-reminder {
    padding: 60px 0;
}

.reminder-card {
    background: linear-gradient(135deg, #ffe4b5 0%, #ffd700 100%);
    border: 3px solid #d2691e;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.reminder-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #8b4513;
    margin-bottom: 15px;
}

.reminder-card p {
    font-size: 17px;
    color: #2c1810;
    line-height: 1.7;
}

.legal-document {
    padding: 60px 0;
}

.document-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.document-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #8b4513;
    margin-bottom: 15px;
}

.updated-date {
    color: #888;
    font-style: italic;
    margin-bottom: 35px;
}

.document-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #8b4513;
    margin-top: 40px;
    margin-bottom: 18px;
}

.document-content p {
    color: #4a2c1a;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.document-content ul {
    color: #4a2c1a;
    margin-left: 30px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.document-content li {
    margin-bottom: 10px;
}

.document-content a {
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
}

.document-content a:hover {
    text-decoration: underline;
}

.alert-box {
    background: linear-gradient(135deg, #ffe4b5 0%, #ffd700 100%);
    border: 3px solid #d2691e;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 35px;
}

.alert-box h2 {
    margin-top: 0;
    color: #8b4513;
}

.confirmation-box {
    background: rgba(139, 69, 19, 0.1);
    border: 3px solid #8b4513;
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
}

.confirmation-box h3 {
    font-family: 'Playfair Display', serif;
    color: #8b4513;
    margin-bottom: 20px;
    font-size: 24px;
}

.confirmation-box ul {
    color: #2c1810;
}

@media (max-width: 968px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
        flex-direction: column;
        padding: 30px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .main-nav.active {
        left: 0;
    }

    .nav-item {
        padding: 15px;
        border-bottom: 1px solid rgba(245, 222, 179, 0.3);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .container {
        padding: 0 20px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .brand-name {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 18px;
    }

    .age-gate-modal {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-actions {
        flex-direction: column;
    }

    .age-actions button {
        width: 100%;
    }

    .document-content {
        padding: 30px 20px;
    }

    .document-content h1 {
        font-size: 32px;
    }

    .game-iframe,
    .full-game-frame {
        height: 500px;
    }
}
