* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.65;
    color: #1e293b;
    background: #f1f5f9;
}

h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #0f172a;
}

.section-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Age Gate Modal */
.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-modal.hidden {
    display: none;
}

.age-gate-container {
    background: white;
    max-width: 520px;
    padding: 55px 45px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.age-gate-icon {
    font-size: 4.5em;
    margin-bottom: 22px;
}

.age-gate-title {
    font-size: 2.2em;
    margin-bottom: 22px;
    color: #f59e0b;
}

.age-gate-text {
    font-size: 1.1em;
    color: #475569;
    margin-bottom: 14px;
    line-height: 1.7;
}

.age-gate-notice {
    font-size: 1em;
    color: #64748b;
    font-style: italic;
    margin-bottom: 32px;
}

.age-gate-options {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.age-btn {
    padding: 16px 38px;
    border: none;
    border-radius: 12px;
    font-size: 1.08em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.age-btn-confirm {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.age-btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.age-btn-deny {
    background: #cbd5e1;
    color: #475569;
}

.age-btn-deny:hover {
    background: #94a3b8;
}

/* Header */
.top-header {
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    font-size: 1.8em;
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6em;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-nav {
    display: flex;
    gap: 8px;
}

.nav-option {
    padding: 11px 22px;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-option:hover {
    background: #fef3c7;
    color: #f59e0b;
}

.nav-option.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.toggle-bar {
    width: 28px;
    height: 3px;
    background: #f59e0b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    padding: 95px 0;
    color: white;
}

.hero-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 22px;
}

.hero-content-block {
    max-width: 750px;
    margin-bottom: 50px;
}

.hero-headline {
    font-size: 3.5em;
    margin-bottom: 26px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-subheadline {
    font-size: 1.25em;
    margin-bottom: 42px;
    line-height: 1.75;
    opacity: 0.96;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

.cta-btn {
    padding: 16px 38px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: white;
    color: #f59e0b;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-outline:hover {
    background: white;
    color: #f59e0b;
}

.cta-jumbo {
    padding: 20px 50px;
    font-size: 1.3em;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-emoji {
    display: block;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.badge-text {
    font-weight: 700;
    font-size: 1.05em;
}

/* Sections */
section {
    padding: 85px 0;
}

.section-title {
    font-size: 2.8em;
    margin-bottom: 18px;
    color: #0f172a;
}

.section-description {
    font-size: 1.15em;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    background: white;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.intro-text-area p {
    font-size: 1.08em;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.principle-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.principle-item {
    display: flex;
    gap: 18px;
    padding: 28px;
    border-radius: 14px;
    border-left: 5px solid;
}

.principle-item.p-red {
    background: #fef2f2;
    border-color: #ef4444;
}

.principle-item.p-blue {
    background: #eff6ff;
    border-color: #3b82f6;
}

.principle-item.p-yellow {
    background: #fffbeb;
    border-color: #f59e0b;
}

.p-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.p-content h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #0f172a;
}

.p-content p {
    color: #475569;
    line-height: 1.7;
}

/* Game Preview */
.game-preview {
    background: #f8fafc;
}

.preview-header {
    text-align: center;
    margin-bottom: 50px;
}

.game-window {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid #e2e8f0;
}

.game-window iframe {
    display: block;
    width: 100%;
}

/* Advantages */
.advantages {
    background: white;
}

.advantages-header {
    text-align: center;
    margin-bottom: 55px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.advantage-card {
    background: #fafafa;
    padding: 38px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    border-color: #fbbf24;
}

.adv-icon {
    font-size: 3.2em;
    margin-bottom: 18px;
}

.advantage-card h3 {
    font-size: 1.5em;
    margin-bottom: 14px;
    color: #0f172a;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Metrics */
.metrics {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: white;
}

.metrics-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 42px;
}

.metric-item {
    text-align: center;
}

.metric-figure {
    font-size: 3.8em;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 12px;
}

.metric-description {
    font-size: 1.2em;
    opacity: 0.92;
}

/* Closing CTA */
.closing-cta {
    background: white;
}

.cta-box {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.8em;
    margin-bottom: 22px;
    color: #0f172a;
}

.cta-box p {
    font-size: 1.2em;
    color: #64748b;
    margin-bottom: 38px;
    line-height: 1.75;
}

/* Play Page */
.page-header-section {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    padding: 75px 0;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3.2em;
    margin-bottom: 14px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.3em;
}

.gaming-section {
    background: white;
}

.gaming-intro {
    text-align: center;
    margin-bottom: 50px;
}

.gaming-intro h2 {
    font-size: 2.4em;
    margin-bottom: 20px;
    color: #f59e0b;
}

.gaming-intro p {
    font-size: 1.08em;
    color: #475569;
    max-width: 820px;
    margin: 0 auto 16px;
    line-height: 1.8;
}

.game-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid #e2e8f0;
    margin-bottom: 50px;
}

.game-frame iframe {
    display: block;
    width: 100%;
}

.game-details {
    margin-bottom: 50px;
}

.game-details h3 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 38px;
    color: #f59e0b;
}

.details-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.detail-panel {
    background: #fafafa;
    padding: 30px;
    border-radius: 14px;
    border-left: 4px solid #f59e0b;
}

.detail-panel h4 {
    font-size: 1.25em;
    margin-bottom: 13px;
    color: #0f172a;
}

.detail-panel p {
    color: #64748b;
    line-height: 1.7;
}

.critical-info h3 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 38px;
    color: #f59e0b;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-panel {
    padding: 30px;
    border-radius: 14px;
    border: 3px solid;
}

.info-panel.panel-red {
    background: #fef2f2;
    border-color: #ef4444;
}

.info-panel.panel-blue {
    background: #eff6ff;
    border-color: #3b82f6;
}

.info-panel.panel-yellow {
    background: #fffbeb;
    border-color: #f59e0b;
}

.info-panel h4 {
    font-size: 1.4em;
    margin-bottom: 13px;
    color: #0f172a;
}

.info-panel p {
    color: #475569;
    line-height: 1.7;
}

/* Legal Content */
.legal-content-section {
    background: white;
}

.legal-intro-panel {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 38px;
    border-radius: 14px;
    margin-bottom: 48px;
    font-size: 1.12em;
    line-height: 1.8;
}

.legal-entry {
    margin-bottom: 42px;
    padding: 36px;
    background: #fafafa;
    border-radius: 14px;
}

.legal-entry h3 {
    font-size: 1.85em;
    margin-bottom: 18px;
    color: #f59e0b;
}

.legal-entry p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-entry.highlight-critical {
    border: 3px solid #ef4444;
    background: #fef2f2;
}

.legal-entry.highlight-warning {
    border: 3px solid #f59e0b;
    background: #fffbeb;
}

.legal-outro-panel {
    background: #0f172a;
    color: white;
    padding: 36px;
    border-radius: 14px;
    text-align: center;
}

.legal-outro-panel p {
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 72px 0 32px;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 42px;
    margin-bottom: 42px;
}

.footer-block h4 {
    color: white;
    font-size: 1.28em;
    margin-bottom: 20px;
}

.footer-block p {
    line-height: 1.75;
    color: #94a3b8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f59e0b;
}

.footer-base {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.96em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .site-nav {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 78%;
        max-width: 290px;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        padding: 26px;
        box-shadow: 2px 0 14px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 6px;
    }
    
    .site-nav.active {
        left: 0;
    }
    
    .nav-option {
        display: block;
    }
    
    .hero-headline {
        font-size: 2.5em;
    }
    
    .hero-subheadline {
        font-size: 1.12em;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    
    .section-title {
        font-size: 2.3em;
    }
    
    .age-gate-container {
        margin: 22px;
        padding: 42px 32px;
    }
    
    .age-gate-options {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2em;
    }
    
    .page-title {
        font-size: 2.3em;
    }
    
    .metric-figure {
        font-size: 3em;
    }
}
