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

body {
    font-family: 'Open Sans', sans-serif;
    background: #1a0a0a;
    color: #e8e8e8;
    line-height: 1.6;
}

/* Age Modal */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 30, 58, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

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

.age-modal-content {
    background: #2a1515;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 540px;
    border: 3px solid #ffd700;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.age-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.age-symbol {
    font-size: 75px;
    display: block;
    margin-bottom: 20px;
}

.age-modal-header h2 {
    font-size: 34px;
    color: #ffd700;
    font-weight: 800;
}

.age-modal-body {
    text-align: center;
    margin-bottom: 35px;
}

.age-primary-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.age-secondary-text {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 10px;
}

.age-notice-text {
    font-size: 14px;
    color: #b0b0b0;
}

.age-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-modal-btn {
    padding: 16px 34px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.confirm-btn {
    background: #ffd700;
    color: #1a0a0a;
}

.confirm-btn:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.deny-btn {
    background: #c41e3a;
    color: #fff;
}

.deny-btn:hover {
    background: #a01829;
}

/* Header */
.main-header {
    background: #2a1515;
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    font-size: 30px;
    font-weight: 800;
    color: #ffd700;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 28px;
    height: 3px;
    background: #ffd700;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.primary-nav {
    display: flex;
    gap: 35px;
}

.primary-nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.primary-nav-link:hover,
.primary-nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1528 100%);
    padding: 90px 40px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-h1 {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-badges-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffd700;
    padding: 14px 28px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Intro Section */
.intro-section {
    padding: 85px 0;
    background: #1a0a0a;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 25px;
}

.intro-p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.9;
}

.intro-feature-box {
    background: #2a1515;
    padding: 40px 35px;
    border-radius: 18px;
    text-align: center;
    border: 2px solid #ffd700;
}

.intro-feature-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.intro-feature-box h3 {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 700;
}

.intro-feature-box p {
    color: #d0d0d0;
    line-height: 1.7;
}

/* Features Showcase */
.features-showcase {
    padding: 85px 0;
    background: #2a1515;
}

.showcase-h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-card {
    background: #1a0a0a;
    padding: 40px 32px;
    border-radius: 18px;
    text-align: center;
    border: 2px solid #c41e3a;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ffd700;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-card-icon {
    font-size: 55px;
    margin-bottom: 22px;
}

.feature-card-h3 {
    font-size: 25px;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card-p {
    color: #c0c0c0;
    line-height: 1.8;
}

/* Important Alerts */
.important-alerts {
    padding: 85px 0;
    background: #1a0a0a;
}

.alerts-h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.alert-box {
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 5px solid;
}

.alert-red {
    background: rgba(239, 68, 68, 0.12);
    border-color: #ef4444;
}

.alert-blue {
    background: rgba(59, 130, 246, 0.12);
    border-color: #3b82f6;
}

.alert-gold {
    background: rgba(255, 215, 0, 0.12);
    border-color: #ffd700;
}

.alert-h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.alert-p {
    color: #d0d0d0;
    line-height: 1.8;
}

/* Game Display */
.game-display {
    padding: 85px 0;
    background: #2a1515;
}

.game-display-h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffd700;
    text-align: center;
    margin-bottom: 15px;
}

.game-display-p {
    text-align: center;
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 45px;
}

.game-embed-container {
    background: #1a0a0a;
    padding: 20px;
    border-radius: 18px;
    border: 3px solid #ffd700;
}

.game-embed-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
}

.game-tip-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    padding: 22px 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 2px solid #ffd700;
}

.game-tip-icon {
    font-size: 30px;
}

.game-tip-text {
    color: #e0e0e0;
    font-weight: 500;
    line-height: 1.7;
}

/* Advantages List */
.advantages-list {
    padding: 85px 0;
    background: #1a0a0a;
}

.advantages-h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

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

.advantage-item {
    display: flex;
    gap: 25px;
    padding: 35px 30px;
    background: #2a1515;
    border-radius: 15px;
    border: 2px solid #c41e3a;
}

.advantage-number {
    width: 60px;
    height: 60px;
    background: #ffd700;
    color: #1a0a0a;
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.advantage-h4 {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 12px;
    font-weight: 700;
}

.advantage-p {
    color: #c0c0c0;
    line-height: 1.8;
}

/* Play Page */
.play-header-section {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1528 100%);
    padding: 65px 40px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.play-h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.play-p {
    font-size: 18px;
    color: #fff;
    opacity: 0.95;
}

.play-content-section {
    padding: 75px 0;
    background: #1a0a0a;
}

.game-embed-container-full {
    background: #2a1515;
    padding: 18px;
    border-radius: 18px;
    border: 3px solid #ffd700;
    margin-bottom: 55px;
}

.game-embed-iframe-full {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
}

.play-instructions {
    margin-bottom: 50px;
}

.instructions-h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 35px;
    text-align: center;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.instruction-box {
    background: #2a1515;
    padding: 32px 28px;
    border-radius: 15px;
    border: 2px solid #c41e3a;
    text-align: center;
}

.instruction-emoji {
    font-size: 42px;
    display: block;
    margin-bottom: 18px;
}

.instruction-box h4 {
    font-size: 20px;
    color: #ffd700;
    margin-bottom: 12px;
    font-weight: 700;
}

.instruction-box p {
    color: #c0c0c0;
    line-height: 1.7;
}

.play-reminder-box {
    background: rgba(239, 68, 68, 0.12);
    border: 3px solid #ef4444;
    border-radius: 15px;
    padding: 38px 35px;
}

.play-reminder-box h3 {
    font-size: 27px;
    color: #fff;
    margin-bottom: 22px;
    font-weight: 700;
}

.reminder-list p {
    color: #d0d0d0;
    margin-bottom: 14px;
    line-height: 1.8;
}

/* Legal Pages */
.legal-header-section {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1528 100%);
    padding: 65px 40px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.legal-h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.legal-date {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
}

.legal-content-section {
    padding: 75px 0;
    background: #1a0a0a;
}

.legal-text-box {
    background: #2a1515;
    padding: 55px 50px;
    border-radius: 18px;
    border: 2px solid #ffd700;
}

.legal-text-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffd700;
    margin-top: 45px;
    margin-bottom: 22px;
}

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

.legal-text-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-text-box p {
    color: #c0c0c0;
    margin-bottom: 20px;
    line-height: 1.9;
}

.legal-text-box ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text-box li {
    color: #c0c0c0;
    margin-bottom: 10px;
    line-height: 1.8;
}

.terms-box-summary,
.privacy-box-summary,
.disclaimer-box-summary {
    background: rgba(255, 215, 0, 0.12);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 35px;
    margin-top: 45px;
}

.terms-box-summary h3,
.privacy-box-summary h3,
.disclaimer-box-summary h3 {
    margin-top: 0;
    font-size: 27px;
    color: #ffd700;
}

.critical-warning-box {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    border-radius: 15px;
    padding: 38px;
    margin-bottom: 45px;
}

.critical-warning-box h2 {
    margin-top: 0;
}

.final-acknowledgment-box {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 35px;
    margin-top: 45px;
    text-align: center;
}

.final-acknowledgment-box p {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

/* Footer */
.main-footer {
    background: #2a1515;
    padding: 70px 40px 35px 40px;
    border-top: 3px solid #ffd700;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-h4 {
    color: #ffd700;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffd700;
}

.footer-copyright {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-copyright p {
    color: #888;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #2a1515;
        width: 100%;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        transition: left 0.3s ease;
        gap: 0;
        border-bottom: 2px solid #ffd700;
    }

    .primary-nav.active {
        left: 0;
    }

    .primary-nav-link {
        padding: 15px 40px;
        display: block;
    }

    .hero-h1,
    .play-h1,
    .legal-h1 {
        font-size: 38px;
    }

    .hero-p,
    .play-p {
        font-size: 17px;
    }

    .hero-badges-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        width: 100%;
        max-width: 320px;
    }

    .intro-layout {
        grid-template-columns: 1fr;
    }

    .game-embed-iframe,
    .game-embed-iframe-full {
        height: 500px;
    }

    .legal-text-box {
        padding: 35px 25px;
    }

    .age-modal-content {
        margin: 20px;
        padding: 35px 28px;
    }

    .age-modal-actions {
        flex-direction: column;
    }

    .age-modal-btn {
        width: 100%;
    }

    .advantage-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .game-embed-iframe,
    .game-embed-iframe-full {
        height: 400px;
    }

    .content-container,
    .header-wrapper,
    .hero-banner,
    .main-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}