* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #0f0f0f;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: white;
    padding: 4rem 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    color: #dc2626;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.age-gate-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.age-question {
    font-weight: 600;
    color: #333;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.gate-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.btn-confirm {
    background: #dc2626;
    color: white;
}

.btn-confirm:hover {
    background: #b91c1c;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.btn-deny {
    background: #6b7280;
    color: white;
}

.btn-deny:hover {
    background: #4b5563;
}

.main-nav {
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #dc2626;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
}

.nav-links a:hover {
    background: #dc2626;
    color: white;
}

.nav-links a.active {
    background: #dc2626;
    color: white;
}

.hero {
    height: 60vh;
    background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 50%, #991b1b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(251,191,36,0.1)"/></svg>');
    background-size: 100px;
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fbbf24;
    color: #7f1d1d;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.main-content {
    background: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.alert-banner {
    background: white;
    padding: 3rem 0;
    border-bottom: 4px solid #dc2626;
}

.alert-banner h2 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.alert-item {
    padding: 1.5rem;
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 5px;
}

.alert-item strong {
    display: block;
    color: #991b1b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.alert-item p {
    color: #666;
}

.intro-section {
    padding: 4rem 0;
}

.intro-section h2 {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.featured-game {
    padding: 4rem 0;
    background: white;
}

.featured-game h2 {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.game-display {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.game-display iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.benefits-section {
    padding: 4rem 0;
}

.benefits-section h2 {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.card-header {
    padding: 2rem;
    text-align: center;
}

.card-header.gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.card-header.red {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.card-header.dark {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.card-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.card-header h3 {
    color: white;
    font-size: 1.5rem;
}

.benefit-card p {
    padding: 2rem;
    color: #555;
    line-height: 1.8;
}

.philosophy-section {
    padding: 4rem 0;
    background: white;
}

.philosophy-content h2 {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.philosophy-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.stats-display {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #dc2626;
    font-family: 'Merriweather', serif;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.site-footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.resource-links, .footer-menu {
    list-style: none;
}

.resource-links li, .footer-menu li {
    margin-bottom: 0.8rem;
}

.resource-links a, .footer-menu a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.resource-links a:hover, .footer-menu a:hover {
    color: #fbbf24;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.page-header {
    background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.gameplay-section {
    padding: 3rem 0;
    background: white;
}

.game-frame {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 750px;
    border: none;
}

.instructions-section {
    padding: 4rem 0;
}

.instructions-section h2 {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.instruction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instruction-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.instruction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instruction-card h3 {
    color: #dc2626;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.instruction-card p {
    color: #555;
    line-height: 1.8;
}

.reminder-section {
    padding: 3rem 0;
    background: white;
}

.reminder-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 6px solid #f59e0b;
}

.reminder-box h3 {
    color: #92400e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.reminder-box p {
    color: #78350f;
    font-size: 1.15rem;
    line-height: 1.8;
}

.legal-container {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.legal-article {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2 {
    color: #991b1b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.legal-block p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-block ul {
    margin-left: 2.5rem;
    margin-bottom: 1rem;
}

.legal-block li {
    color: #444;
    line-height: 1.9;
    margin-bottom: 0.7rem;
}

.legal-block.emphasis {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 6px solid #dc2626;
}

.legal-block.emphasis h2 {
    color: #7f1d1d;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links a {
        padding: 1.2rem 2rem;
        border-radius: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .game-display iframe {
        height: 450px;
    }

    .game-frame iframe {
        height: 500px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .legal-container {
        padding: 1.5rem;
    }
}
