@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-deep: #0a1a0e;
    --bg-card: #11241a;
    --accent-primary: #10b981;
    --accent-secondary: #6ee7b7;
    --accent-warm: #d4a843;
    --coral-pink: #ff6b6b;
    --text-primary: #e8eaed;
    --text-secondary: #9ca3af;
    --border: #1e3327;
    --bg-overlay: rgba(10, 26, 14, 0.92);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-secondary);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ENTERTAINMENT STRIP ===== */
.entertainment-strip {
    background: linear-gradient(90deg, var(--accent-primary), #059669, var(--accent-primary));
    background-size: 200% 100%;
    animation: stripShimmer 6s ease-in-out infinite;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0a1a0e;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
}

@keyframes stripShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== HEADER ===== */
.site-header {
    background: var(--bg-overlay);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 24px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-primary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-desktop a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--accent-primary);
    background: rgba(16, 185, 129, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-pink);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile Nav */
.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.nav-mobile a:hover {
    color: var(--accent-primary);
    background: rgba(16, 185, 129, 0.1);
}

.nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 100px 24px 80px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C30 5 15 20 15 35 C15 43 22 50 30 50 C38 50 45 43 45 35 C45 20 30 5 30 5Z' fill='none' stroke='%231e3327' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #059669);
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

.btn-warm {
    background: linear-gradient(135deg, var(--accent-warm), #c49b38);
    color: #0a1a0e;
}

.btn-warm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.3);
    color: #0a1a0e;
}

.btn-sm {
    font-size: 0.88rem;
    padding: 10px 22px;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    color: var(--accent-primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-alt {
    background: linear-gradient(180deg, rgba(17, 36, 26, 0.5) 0%, transparent 100%);
}

/* ===== GAME CARDS ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.game-card-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.game-card-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--bg-card));
}

.game-card-body {
    padding: 24px;
}

.game-card-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.game-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.game-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.game-card .btn {
    width: 100%;
    justify-content: center;
}

/* Game thumb backgrounds */
.thumb-fern { background: linear-gradient(135deg, #0d3320, #134e2a); }
.thumb-koru { background: linear-gradient(135deg, #1a2f40, #0f3a2d); }
.thumb-ponga { background: linear-gradient(135deg, #2d1f0e, #1a3a20); }
.thumb-rimu { background: linear-gradient(135deg, #1e2a15, #0e2818); }
.thumb-bush { background: linear-gradient(135deg, #0a2818, #1a3a10); }

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: rgba(16, 185, 129, 0.1);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* ===== HOW IT WORKS ===== */
.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 32px;
    counter-reset: step;
}

.step-item {
    text-align: center;
    counter-increment: step;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 18px;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== STATS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.testimonial-stars {
    color: var(--accent-warm);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 80px 24px;
    background: radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

/* ===== RESPONSIBLE PLAY BANNER ===== */
.responsible-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.responsible-banner h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.responsible-banner p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 16px 0;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-primary);
}

.footer-helplines {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.helpline-title {
    color: var(--accent-warm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.helpline-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.helpline-links a {
    color: var(--accent-primary);
}

.helpline-links strong {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-question .arrow {
    font-size: 1.2rem;
    transition: transform var(--transition);
    color: var(--accent-primary);
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.legal-page .page-updated {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 36px 0 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 10px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    color: var(--text-secondary);
    margin: 0 0 16px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--accent-primary);
}

/* ===== RESPONSIBLE PLAY ===== */
.warning-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.warning-sign {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.warning-sign .sign-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.warning-sign p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.self-assessment {
    background: var(--bg-card);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
}

.self-assessment h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.assessment-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.assessment-question:last-child {
    border-bottom: none;
}

.assessment-question input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--accent-primary);
    flex-shrink: 0;
}

.assessment-question label {
    font-size: 0.92rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.assessment-result {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--radius-md);
    display: none;
    font-size: 0.95rem;
}

.assessment-result.show {
    display: block;
}

.assessment-result.low {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-secondary);
}

.assessment-result.medium {
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--accent-warm);
    color: var(--accent-warm);
}

.assessment-result.high {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--coral-pink);
    color: var(--coral-pink);
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.help-resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.help-resource-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--accent-primary);
}

.help-resource-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* ===== GAME PAGE ===== */
.game-page {
    padding: 40px 0 80px;
}

.game-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 32px;
}

.game-header h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.game-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.game-credits {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
}

.credit-display {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    text-align: center;
}

.credit-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credit-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-warm);
}

.game-area {
    margin: 24px 0;
}

.game-controls {
    text-align: center;
    margin-top: 24px;
}

.game-info {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.game-info h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.game-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.no-real-money {
    text-align: center;
    padding: 14px;
    margin-top: 20px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-md);
    color: var(--coral-pink);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.cookie-consent.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    flex: 1;
}

.cookie-inner p a {
    color: var(--accent-primary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-hero {
    padding: 60px 24px 40px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 60px 24px 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .game-container {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .game-credits {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .helpline-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}
