/*
 * PROJECT: moostdust
 * DOMAIN: moostdust.com
 * GAME: Super Ninja Adventure
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Holographic (переливчатые #a855f7→#ec4899→#06b6d4)
 * - Effect: Glassmorphism + Animated Gradients
 * - Fonts: Sora (heading) + Figtree (body)
 * - Buttons: Gradient with glow
 *
 * Created: 2025
 */

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

:root {
    --holo-purple: #a855f7;
    --holo-pink: #ec4899;
    --holo-cyan: #06b6d4;
    --holo-violet: #7c3aed;
    --holo-rose: #f43f5e;
    --holo-teal: #14b8a6;
    --bg-dark: #0d0820;
    --bg-mid: #130a2e;
    --bg-card: rgba(168, 85, 247, 0.07);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(168, 85, 247, 0.25);
    --text-primary: #f0e8ff;
    --text-secondary: #c4b5d8;
    --text-muted: #8b7aa8;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Figtree', sans-serif;
    --grad-main: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #06b6d4 100%);
    --grad-btn: linear-gradient(135deg, #a855f7, #ec4899);
    --grad-btn-alt: linear-gradient(135deg, #06b6d4, #a855f7);
    --shadow-glow: 0 0 30px rgba(168, 85, 247, 0.4), 0 0 60px rgba(236, 72, 153, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --header-height: 70px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; max-width: 100%; }

html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden !important; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 40%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Stars ─── */
.stars { color: #ffc107; }

/* ─── Animated Background Orbs ─── */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.18;
    animation: orbFloat 20s ease-in-out infinite;
}
.bg-orb--1 { width: 400px; height: 400px; background: var(--holo-purple); top: -100px; left: -100px; animation-delay: 0s; }
.bg-orb--2 { width: 300px; height: 300px; background: var(--holo-cyan); bottom: 10%; right: -80px; animation-delay: -7s; }
.bg-orb--3 { width: 250px; height: 250px; background: var(--holo-pink); top: 50%; left: 50%; animation-delay: -14s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ─── Holo Text Effect ─── */
.holo-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.holo-text--animated {
    background: linear-gradient(270deg, #a855f7, #ec4899, #06b6d4, #a855f7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holoShift 6s ease infinite;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }

.btn--primary {
    background: var(--grad-btn);
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(236, 72, 153, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.7), 0 0 60px rgba(236, 72, 153, 0.4);
}

.btn--secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--holo-purple);
    transform: translateY(-2px);
}

.btn--alt {
    background: var(--grad-btn-alt);
    color: #fff;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.5);
}

.btn--alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.7);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background: var(--grad-btn);
    color: #fff;
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.6), 0 0 50px rgba(236, 72, 153, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-play:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.8), 0 0 80px rgba(236, 72, 153, 0.5);
}

/* ─── Glass Card ─── */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(168, 85, 247, 0.2);
    transform: translateY(-4px);
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Section ─── */
.section { padding: 5rem 0; position: relative; z-index: 1; }
.section--sm { padding: 3rem 0; }

.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--holo-cyan);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section__title { margin-bottom: 1rem; }
.section__desc { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ─── HEADER / NAV ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 8, 32, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    height: var(--header-height);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav__link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    transition: all 0.25s;
}

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.12);
}

.site-header__cta { flex-shrink: 0; }

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

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

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
    z-index: 1;
    color: white;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--holo-purple);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--holo-purple);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__game-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-glow);
    width: 100%;
    max-width: 420px;
    position: relative;
}

.hero__game-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(168,85,247,0.5), rgba(236,72,153,0.3), rgba(6,182,212,0.4));
    z-index: -1;
    opacity: 0.6;
}

.hero__game-icon {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 1px solid var(--border-glass);
}

.hero__game-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hero__game-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.hero__game-tag {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--holo-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__game-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero__floating {
    position: absolute;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
}

.hero__floating--1 {
    top: -20px;
    right: -20px;
    color: var(--holo-cyan);
    border-color: rgba(6,182,212,0.3);
    animation-delay: 0s;
}

.hero__floating--2 {
    bottom: 30px;
    left: -25px;
    color: var(--holo-pink);
    border-color: rgba(236,72,153,0.3);
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ─── FEATURES ─── */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    position: relative;
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--grad-btn);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.feature-card__icon--alt { background: var(--grad-btn-alt); box-shadow: 0 4px 15px rgba(6,182,212,0.4); }
.feature-card__icon--rose { background: linear-gradient(135deg, var(--holo-rose), var(--holo-pink)); box-shadow: 0 4px 15px rgba(244,63,94,0.4); }
.feature-card__icon--teal { background: linear-gradient(135deg, var(--holo-teal), var(--holo-cyan)); box-shadow: 0 4px 15px rgba(20,184,166,0.4); }

.feature-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

/* ─── HOW TO PLAY (Homepage snippet) ─── */
.howto__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.howto__steps { display: flex; flex-direction: column; gap: 1.5rem; }

.howto__step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.howto__step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(168,85,247,0.45);
}

.howto__step-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

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

.howto__visual {
    display: flex;
    justify-content: center;
}

.howto__visual-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 360px;
    width: 100%;
    box-shadow: var(--shadow-card);
}

.howto__controls { display: flex; flex-direction: column; gap: 1rem; }

.howto__control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.howto__key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.4rem 0.75rem;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--holo-purple);
    flex-shrink: 0;
}

.howto__key--cyan {
    background: rgba(6,182,212,0.1);
    border-color: rgba(6,182,212,0.3);
    color: var(--holo-cyan);
}

.howto__action { font-size: 0.88rem; color: var(--text-secondary); }

/* ─── BLOG / ARTICLE CARDS ─── */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168,85,247,0.4);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 25px rgba(168,85,247,0.2);
}

.article-card__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(168,85,247,0.3), rgba(236,72,153,0.2), rgba(6,182,212,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.article-card__thumb-inner {
    position: relative;
    z-index: 1;
}

.article-card__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(6,182,212,0.1));
    animation: shimmer 4s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.article-card__content { padding: 1.5rem; }

.article-card__tag {
    display: inline-block;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.25);
    color: var(--holo-purple);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.75rem;
}

.article-card__tag--cyan {
    background: rgba(6,182,212,0.1);
    border-color: rgba(6,182,212,0.25);
    color: var(--holo-cyan);
}

.article-card__tag--pink {
    background: rgba(236,72,153,0.1);
    border-color: rgba(236,72,153,0.25);
    color: var(--holo-pink);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.article-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ─── FAQ ─── */
.faq__list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 0 auto; }

.faq__item {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq__item.is-open { border-color: rgba(168,85,247,0.4); }

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(168,85,247,0.15);
    border: 1px solid rgba(168,85,247,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--holo-purple);
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s, background 0.3s;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
    background: rgba(168,85,247,0.3);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 1.5rem;
}

.faq__answer p {
    padding-bottom: 1.25rem;
    font-size: 0.93rem;
    color: var(--text-secondary);
    margin: 0;
}

.faq__item.is-open .faq__answer { max-height: 400px; }

/* ─── CTA SECTION ─── */
.cta-section {
    text-align: center;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.cta-section__inner {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(168,85,247,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section__title { margin-bottom: 1rem; }
.cta-section__desc { color: var(--text-secondary); margin-bottom: 2.5rem; font-size: 1.05rem; }

.cta-section__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.site-footer {
    background: rgba(13, 8, 32, 0.95);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.site-footer__brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.site-footer__tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.site-footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.site-footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.25s;
}
.site-footer__link:hover { color: var(--holo-purple); }

.site-footer__bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer__copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.site-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.site-footer__legal-link {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.25s;
}
.site-footer__legal-link:hover { color: var(--holo-purple); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero__title { margin-bottom: 1rem; }
.page-hero__desc { color: var(--text-secondary); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    justify-content: center;
}

.breadcrumb__link { color: var(--text-secondary); transition: color 0.25s; }
.breadcrumb__link:hover { color: var(--holo-purple); }
.breadcrumb__sep { color: var(--text-muted); }

/* ─── ARTICLE PAGE ─── */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.article-body h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}
.article-body h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.article-body p { margin-bottom: 1.2rem; font-size: 0.97rem; color: var(--text-secondary); }
.article-body ul, .article-body ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
.article-body li { color: var(--text-secondary); margin-bottom: 0.4rem; font-size: 0.97rem; }
.article-body ul li { list-style: none; padding-left: 1.2em; position: relative; }
.article-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--holo-purple);
}

.sidebar-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.sidebar-card__game-icon {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 1px solid var(--border-glass);
}

/* ─── CONTACT FORM ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(8px);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--holo-purple);
    box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
}

.contact-info-item__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--grad-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-item__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-info-item__value {
    font-size: 0.93rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ─── HOW TO PLAY PAGE ─── */
.htp-section { padding: 2.5rem 0; }
.htp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.htp-card {
    padding: 2rem;
    text-align: center;
}

.htp-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.htp-card__title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

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

.htp-steps { display: flex; flex-direction: column; gap: 1.5rem; }

.htp-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
}

.htp-step__num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(168,85,247,0.5);
}

.htp-step__title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.htp-step__desc { font-size: 0.9rem; color: var(--text-secondary); }

/* ─── ABOUT PAGE ─── */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.value-card {
    padding: 1.75rem;
    text-align: center;
}

.value-card__icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.value-card__title { font-size: 1rem; margin-bottom: 0.4rem; }
.value-card__desc { font-size: 0.88rem; color: var(--text-secondary); }

/* ─── BLOG PAGE ─── */
.blog-hero { padding: 4rem 0 2rem; }

/* ─── PROSE (privacy, terms) ─── */
.prose {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.prose h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-glass);
}

.prose h3 { font-size: 1.15rem; margin: 1.5rem 0 0.6rem; }
.prose p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 1rem; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.prose li { color: var(--text-secondary); margin-bottom: 0.35rem; font-size: 0.95rem; }

/* ─── GAME IFRAME PAGE ─── */
.game-container { position: relative; }
.game-frame {
    width: 100%;
    height: 600px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    background: #000;
}

/* ─── COOKIE CONSENT ─── */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    max-width: 420px;
    background: rgba(19, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.cookie-consent__text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-consent__text a {
    color: var(--holo-cyan);
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-consent__actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
}

.cookie-consent--hidden {
    display: none;
}

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-gradient {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }

/* ─── DIVIDER ─── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
    margin: 1rem 0;
}

/* ─── Offer / card shared pattern ─── */
.offer-card, .card { position: relative; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero__visual { order: -1; }
    .hero__game-card { max-width: 480px; }
    .howto__grid { grid-template-columns: 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13,8,32,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 200;
    }
    .site-nav.is-open { display: flex; }
    .site-nav__list { flex-direction: column; gap: 0.5rem; }
    .site-nav__link { font-size: 1.2rem; padding: 0.75rem 2rem; }
    .hamburger { display: flex; z-index: 201; }
    .site-header__cta { display: none; }

    .hero { min-height: auto; padding: 3rem 0; }
    .hero__stats { gap: 1.5rem; }

    .section { padding: 3.5rem 0; }
    .blog__grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr; }
    .htp-grid { grid-template-columns: 1fr; }

    .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer__bottom { flex-direction: column; text-align: center; }

    .prose { padding: 2rem 1.25rem; }
    .cta-section__inner { padding: 2.5rem 1.25rem; }

    .about-values { grid-template-columns: 1fr 1fr; }

    .cookie-consent {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__actions .btn-play { width: 100%; }
    .about-values { grid-template-columns: 1fr; }
    .cta-section__actions { flex-direction: column; }
    .cta-section__actions .btn { width: 100%; }
    .cookie-consent__actions { flex-direction: column; }
}