* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b6b;
    --primary-dark: #ff5252;
    --secondary: #4ecdc4;
    --accent: #ffa502;
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --text-light: #b2bec3;
    --bg-white: #ffffff;
    --bg-light: #f7f9fc;
    --bg-gray: #ecf0f1;
    --border: #dfe6e9;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Age Gate Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.hidden {
    display: none;
}

.modal-container {
    max-width: 500px;
    width: 90%;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-emoji {
    font-size: 64px;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.modal-text {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.modal-highlight {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.modal-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    flex: 1;
    min-width: 160px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: var(--bg-gray);
    color: var(--text-medium);
    flex: 1;
    min-width: 160px;
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

/* Header and Navigation */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon svg {
    width: 44px;
    height: 44px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
    background: rgba(255, 107, 107, 0.08);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 80px 24px;
    text-align: center;
}

.hero-heading {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-lead {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Sections */
section {
    padding: 64px 24px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-lead {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Cards and Grids */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.card-emoji {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Alert Cards */
.alert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.alert-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.alert-red { border-left-color: var(--primary); }
.alert-blue { border-left-color: var(--secondary); }
.alert-orange { border-left-color: var(--accent); }

.alert-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.alert-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Game Container */
.game-container {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    margin: 48px 0;
    border: 1px solid var(--border);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    background: #000;
}

.game-info-box {
    background: white;
    padding: 32px;
    margin-top: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.game-info-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-items {
    display: grid;
    gap: 16px;
}

.info-item {
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-medium);
    line-height: 1.6;
}

.info-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

/* Feature List */
.feature-list {
    display: grid;
    gap: 20px;
    margin-top: 48px;
}

.feature-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.2s ease;
}

.feature-box:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Text Content */
.text-content {
    max-width: 800px;
    margin: 48px auto 0;
}

.content-block {
    background: white;
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.content-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.content-block p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 24px;
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-box p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.95;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
}

.cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Play Page */
.play-header {
    background: var(--bg-light);
    padding: 64px 24px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.technical-box,
.reminders-box {
    background: white;
    padding: 40px;
    margin-top: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.technical-box h3,
.reminders-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.tech-list {
    display: grid;
    gap: 16px;
}

.tech-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.tech-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.tech-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.reminder-items {
    list-style: none;
    display: grid;
    gap: 12px;
}

.reminder-items li {
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-medium);
    border-left: 3px solid var(--primary);
}

/* Legal Pages */
.legal-hero {
    background: var(--bg-light);
    padding: 64px 24px;
    text-align: center;
}

.legal-date {
    font-size: 16px;
    color: var(--text-medium);
    font-style: italic;
}

.legal-doc {
    background: white;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.legal-doc h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
}

.legal-doc h2:first-child {
    margin-top: 0;
}

.legal-doc h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 28px 0 16px 0;
}

.legal-doc p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-doc ul {
    color: var(--text-medium);
    margin: 16px 0 16px 32px;
    line-height: 1.7;
}

.legal-doc li {
    margin-bottom: 8px;
}

.terms-box,
.privacy-box,
.disclaimer-summary {
    background: var(--bg-light);
    padding: 24px;
    margin-top: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.warning-box h2 {
    color: var(--primary);
    margin-bottom: 16px;
}

.warning-text {
    font-size: 18px;
    line-height: 1.6;
}

.summary-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.summary-points li {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 56px 24px 24px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-list a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 84px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--bg-white);
        padding: 24px;
        gap: 8px;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .nav-list.active {
        left: 0;
    }

    .nav-item {
        text-align: center;
        width: 100%;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 20px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-lead {
        font-size: 16px;
    }

    .legal-doc {
        padding: 32px 24px;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .game-frame {
        height: 400px;
    }

    .cards-grid,
    .alert-cards,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
