/*
 * PROJECT: futurehadret.com
 * DOMAIN: futurehadret.com
 * GAME: Checkers Master
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Futurism (Dark #0b0c10, Cyan #66fcf1)
 * - Effect: Neon Glow
 * - Fonts: Chakra Petch (heading) + Titillium Web (body)
 * - Buttons: Neon Border
 *
 * Created: 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Titillium+Web:wght@300;400;600&display=swap');

:root {
    --bg-primary: #0b0c10;
    --bg-secondary: #111318;
    --bg-card: #13151c;
    --neon-cyan: #66fcf1;
    --neon-cyan-dim: rgba(102, 252, 241, 0.15);
    --neon-cyan-mid: rgba(102, 252, 241, 0.4);
    --accent-teal: #45a29e;
    --text-primary: #c5c6c7;
    --text-bright: #f0f8ff;
    --text-muted: #6b7280;
    --border-glow: rgba(102, 252, 241, 0.3);
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Titillium Web', sans-serif;
    --shadow-neon: 0 0 8px rgba(102, 252, 241, 0.5), 0 0 20px rgba(102, 252, 241, 0.2);
    --shadow-neon-strong: 0 0 12px rgba(102, 252, 241, 0.7), 0 0 30px rgba(102, 252, 241, 0.35), 0 0 60px rgba(102, 252, 241, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
    --header-height: 68px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden !important; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── MANDATORY RULES ───────────────────────────────── */
.article-card__overlay { position: absolute; inset: 0; z-index: 1; }
.article-card, .offer-card, .card { position: relative; }
.stars { color: #ffc107; }

/* ─── GRID HELPER ───────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── SCANLINE OVERLAY ───────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

/* ─── COOKIE CONSENT ─────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(17, 19, 24, 0.97);
    border-top: 1px solid var(--border-glow);
    backdrop-filter: blur(12px);
    padding: 20px 0;
}

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

.cookie-consent__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    min-width: 280px;
}

.cookie-consent__text a {
    color: var(--neon-cyan);
    border-bottom: 1px solid var(--border-glow);
}

.cookie-consent__btn {
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: 0.8rem;
}

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

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 12, 16, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glow);
    padding: 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    letter-spacing: 0.06em;
    text-shadow: var(--shadow-neon);
    text-transform: uppercase;
    transition: text-shadow var(--transition);
}
.logo:hover { text-shadow: var(--shadow-neon-strong); }

.site-nav__list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.site-nav__link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    transition: color var(--transition);
    position: relative;
}
.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
    transition: width var(--transition);
}
.site-nav__link:hover { color: var(--neon-cyan); }
.site-nav__link:hover::after { width: 100%; }

.site-nav__link--active {
    color: var(--neon-cyan);
}
.site-nav__link--active::after { width: 100%; }

.site-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.site-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neon-cyan);
    transition: transform var(--transition), opacity var(--transition);
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(102,252,241,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102,252,241,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero__bg-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(102,252,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    border: 1px solid var(--border-glow);
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(102,252,241,0.15);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-bright);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero__title span {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-neon);
}

.hero__desc {
    font-size: 1.05rem;
    color: var(--text-primary);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero__stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: var(--shadow-neon);
}

.hero__stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 2px;
}

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

.hero__board-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

.hero__board-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102,252,241,0.12) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

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

.hero__checkerboard {
    position: relative;
    width: 320px;
    height: 320px;
    border: 2px solid var(--border-glow);
    box-shadow: var(--shadow-neon);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hero__cell {
    width: 100%;
    height: 100%;
}
.hero__cell--dark { background: #111318; }
.hero__cell--light { background: #1a1f2e; }
.hero__cell--neon { background: rgba(102,252,241,0.08); }

.hero__piece {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid;
    position: absolute;
}
.hero__piece--cyan {
    background: rgba(102,252,241,0.25);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}
.hero__piece--dark {
    background: rgba(69,162,158,0.25);
    border-color: var(--accent-teal);
    box-shadow: 0 0 10px var(--accent-teal);
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bg-primary);
    background: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-neon);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-play:hover {
    background: transparent;
    color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-strong);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--neon-cyan);
    background: transparent;
    border: 2px solid var(--border-glow);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-secondary:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-glow);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-outline:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(102,252,241,0.2);
}

/* ─── SECTION TITLES ─────────────────────────────────── */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.section-title span { color: var(--neon-cyan); text-shadow: var(--shadow-neon); }

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 540px;
}

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto 48px; }

/* ─── SECTIONS ───────────────────────────────────────── */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-secondary); }

/* ─── FEATURE CARDS ──────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--neon-cyan-dim);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-bright);
    margin-bottom: 10px;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── HOW TO PLAY STEPS ──────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    position: relative;
}

.step-card__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: var(--shadow-neon);
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.step-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── GAME SECTION ───────────────────────────────────── */
.game-section { padding: 80px 0; }

.game-section__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

.game-section__info-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}

.game-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-bright);
    margin-bottom: 20px;
    line-height: 1.15;
}

.game-section__desc {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.game-section__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.game-section__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
}

.game-section__feature::before {
    content: '▸';
    color: var(--neon-cyan);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.game-section__card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}

.game-section__card-header {
    background: var(--bg-secondary);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-section__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.game-section__dot--cyan { background: var(--neon-cyan); box-shadow: 0 0 6px var(--neon-cyan); }
.game-section__dot--teal { background: var(--accent-teal); box-shadow: 0 0 6px var(--accent-teal); }
.game-section__dot--muted { background: var(--text-muted); }

.game-section__card-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-left: auto;
}

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

.game-section__icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.game-section__icon {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-glow);
    box-shadow: var(--shadow-neon);
    object-fit: cover;
}

.game-section__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.game-section__meta-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    text-align: center;
}

.game-section__meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.game-section__meta-value {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

/* ─── ARTICLE CARDS ──────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.article-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
    transform: translateY(-4px);
}

.article-card__image {
    height: 180px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(102,252,241,0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.5;
}

.article-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bg-primary);
    background: var(--neon-cyan);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.article-card__content {
    padding: 24px;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 10px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 2;
    position: relative;
}

.article-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.article-card__meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-muted);
}

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

/* ─── FAQ ────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.is-open { border-color: var(--neon-cyan); }

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.faq-item__question-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform var(--transition), box-shadow var(--transition);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--neon-cyan);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item__answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border-glow);
    padding-top: 16px;
}

.faq-item__answer-inner a {
    color: var(--neon-cyan);
    border-bottom: 1px solid var(--border-glow);
    transition: border-color var(--transition);
}
.faq-item__answer-inner a:hover {
    border-color: var(--neon-cyan);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 32px;
}

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

.site-footer__brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.site-footer__tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.site-footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__link {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.site-footer__link:hover { color: var(--neon-cyan); }

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

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

.site-footer__legal {
    display: flex;
    gap: 24px;
}

.site-footer__legal-link {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.site-footer__legal-link:hover { color: var(--neon-cyan); }

/* ─── INNER PAGE HERO ────────────────────────────────── */
.page-hero {
    padding: 60px 0 48px;
    position: relative;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(102,252,241,0.04) 0%, transparent 100%);
    pointer-events: none;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-hero__breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--neon-cyan); }
.page-hero__breadcrumb-sep { color: var(--border-glow); }

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-bright);
    margin-bottom: 16px;
}

.page-hero__title span { color: var(--neon-cyan); text-shadow: var(--shadow-neon); }

.page-hero__desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* ─── CONTENT SECTIONS ───────────────────────────────── */
.content-body {
    max-width: 820px;
    margin: 0 auto;
}

.content-body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-bright);
    margin: 40px 0 16px;
}

.content-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    margin: 28px 0 12px;
}

.content-body p { margin-bottom: 16px; color: var(--text-primary); line-height: 1.8; }
.content-body ul, .content-body ol { margin: 16px 0 20px 24px; }
.content-body li { color: var(--text-primary); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.content-body ol li { list-style: decimal; }
.content-body strong { color: var(--text-bright); }
.content-body a { color: var(--neon-cyan); border-bottom: 1px solid var(--border-glow); transition: border-color var(--transition); }
.content-body a:hover { border-color: var(--neon-cyan); }

/* ─── INFO BOXES ─────────────────────────────────────── */
.info-box {
    background: var(--neon-cyan-dim);
    border: 1px solid var(--border-glow);
    border-left: 3px solid var(--neon-cyan);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box p { color: var(--text-primary); margin: 0; }
.info-box a { color: var(--neon-cyan); }

/* ─── HOW TO PLAY PAGE ───────────────────────────────── */
.htp-controls {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
}

.htp-controls__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.htp-controls__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.htp-control-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.htp-control-item__key {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bg-primary);
    background: var(--neon-cyan);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.htp-control-item__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 3px;
}

/* ─── STRATEGY GRID ──────────────────────────────────── */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.strategy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition);
    position: relative;
}

.strategy-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
}

.strategy-card__num {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.strategy-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.strategy-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── ABOUT PAGE ─────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.about-value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.about-value-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
}

.about-value-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.about-value-card__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.about-value-card__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-bright);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(102,252,241,0.08);
}

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

.form-select option { background: var(--bg-secondary); }

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

.contact-info-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--neon-cyan-dim);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    margin-bottom: 6px;
}

.contact-info-item__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.article-header { margin-bottom: 36px; }

.article-header__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bg-primary);
    background: var(--neon-cyan);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.article-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-bright);
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-header__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.article-sidebar__card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.article-sidebar__title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.sidebar-related-link {
    display: block;
    font-size: 0.88rem;
    color: var(--text-primary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-glow);
    transition: color var(--transition);
}
.sidebar-related-link:last-child { border-bottom: none; }
.sidebar-related-link:hover { color: var(--neon-cyan); }

/* ─── BLOG INDEX ─────────────────────────────────────── */
.blog-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.blog-count {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ─── TERMS / PRIVACY ────────────────────────────────── */
.legal-layout {
    max-width: 840px;
    margin: 0 auto;
}

.legal-section {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 24px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neon-cyan);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    margin: 16px 0 8px;
}

.legal-section p, .legal-section li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section ul { margin-left: 20px; }
.legal-section li { list-style: disc; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero__visual { order: -1; }
    .hero__stats { justify-content: flex-start; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .game-section__inner { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-nav { display: none; }
    .site-nav.is-open {
        display: flex;
        position: fixed;
        inset: var(--header-height) 0 0;
        background: rgba(11,12,16,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 99;
    }
    .site-nav.is-open .site-nav__list { flex-direction: column; gap: 28px; text-align: center; }
    .site-header__burger { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .strategy-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .htp-controls__grid { grid-template-columns: 1fr; }
    .hero__checkerboard, .hero__board-wrapper { width: 240px; height: 240px; }
    .hero__stats { gap: 24px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .site-footer__bottom { flex-direction: column; text-align: center; }
    .game-section__meta { grid-template-columns: 1fr 1fr; }
    .cookie-consent__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 60px 0 48px; }
    .section { padding: 48px 0; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .btn-play, .btn-secondary { text-align: center; justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; }
}