* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.age-modal.show {
    display: flex;
}

.age-modal-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid #f59e0b;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.3);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal-card h2 {
    font-size: 2.2rem;
    color: #f59e0b;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.age-modal-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.action-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.action-btn.primary {
    background: #f59e0b;
    color: #0f172a;
}

.action-btn.primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.action-btn.secondary {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.action-btn.secondary:hover {
    background: rgba(245, 158, 11, 0.1);
}

/* Header */
.site-header {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
}

.nav-content {
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #f59e0b;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-items a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-items a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.nav-items a:hover {
    color: #f59e0b;
}

.nav-items a:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #f59e0b;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 8rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid #f59e0b;
    border-radius: 50px;
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-link {
    padding: 1.2rem 3rem;
    background: #f59e0b;
    color: #0f172a;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.primary-link:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.secondary-link {
    padding: 1.2rem 3rem;
    background: transparent;
    color: #f59e0b;
    text-decoration: none;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.secondary-link:hover {
    background: rgba(245, 158, 11, 0.1);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: #0f172a;
}

.benefits-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #f59e0b;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #94a3b8;
    line-height: 1.8;
}

/* Game Section */
.game-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-header h2 {
    font-size: 2.8rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    font-weight: 900;
}

.game-header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

.game-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.game-frame-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #f59e0b;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
}

/* Critical Info Section */
.critical-info {
    padding: 6rem 2rem;
    background: #0f172a;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.info-container h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-item h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Features Showcase */
.features-showcase {
    padding: 6rem 2rem;
    background: #1e293b;
}

.showcase-content {
    max-width: 1100px;
    margin: 0 auto;
}

.showcase-content h2 {
    font-size: 2.8rem;
    color: #f59e0b;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 900;
}

.features-list {
    display: grid;
    gap: 2.5rem;
}

.feature-block {
    display: flex;
    gap: 2rem;
    background: #0f172a;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #f59e0b;
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.feature-marker {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #f59e0b;
    color: #0f172a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
}

.feature-text h3 {
    font-size: 1.6rem;
    color: #f59e0b;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-text p {
    color: #94a3b8;
    line-height: 1.8;
}

/* Responsibility Section */
.responsibility-section {
    padding: 6rem 2rem;
    background: #0f172a;
}

.responsibility-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-wrapper h2 {
    font-size: 2.8rem;
    color: #f59e0b;
    margin-bottom: 2rem;
    font-weight: 900;
}

.responsibility-wrapper p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.support-resources {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.resource-link {
    padding: 1.1rem 2.2rem;
    background: transparent;
    color: #f59e0b;
    text-decoration: none;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #f59e0b;
    color: #0f172a;
    transform: translateY(-2px);
}

/* Play Page */
.play-main {
    min-height: 70vh;
}

.play-hero {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.play-hero-content h1 {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    font-weight: 900;
}

.play-hero-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
}

.play-content {
    padding: 3rem 2rem;
    background: #0f172a;
}

.play-container {
    max-width: 1400px;
    margin: 0 auto;
}

.play-guide {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.play-guide h3 {
    font-size: 1.6rem;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.guide-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.guide-item {
    padding: 1.5rem;
    background: #0f172a;
    border-radius: 15px;
    border-left: 3px solid #f59e0b;
    color: #94a3b8;
    line-height: 1.8;
}

.guide-item strong {
    color: #f59e0b;
    display: block;
    margin-bottom: 0.5rem;
}

.play-game-area {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #f59e0b;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
    margin-bottom: 2.5rem;
}

.play-iframe {
    width: 100%;
    height: 750px;
    border: none;
}

.play-notice {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.play-notice p {
    color: white;
    font-size: 1.15rem;
    font-weight: 500;
}

/* Legal Pages */
.legal-main {
    padding: 5rem 2rem;
    background: #0f172a;
}

.legal-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #1e293b;
    padding: 4rem;
    border-radius: 25px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.legal-wrapper h1 {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    font-weight: 900;
}

.effective-date {
    color: #64748b;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.9rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-section strong {
    color: #cbd5e1;
}

.legal-section a {
    color: #f59e0b;
    text-decoration: underline;
}

.warning-banner {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    color: white;
}

.warning-banner h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.warning-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

/* Footer */
.main-footer {
    background: #020617;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #f59e0b;
}

.footer-support {
    margin-bottom: 2.5rem;
}

.footer-support p {
    color: #475569;
    margin-bottom: 1rem;
}

.support-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-links a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-links a:hover {
    color: #d97706;
}

.copyright {
    color: #475569;
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-items {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    }

    .nav-items.active {
        left: 0;
    }

    .nav-items li {
        margin: 1.5rem 0;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .benefits-wrapper,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .play-iframe {
        height: 550px;
    }

    .feature-block {
        flex-direction: column;
        gap: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .support-resources {
        flex-direction: column;
        align-items: center;
    }

    .legal-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .legal-wrapper h1 {
        font-size: 2.2rem;
    }
}
