/*
 * PROJECT: montblur.com
 * DOMAIN: montblur.com
 * GAME: Stick Jump
 * 
 * DESIGN:
 * - CSS: BEM
 * - Palette: Стадион (темный #1b1b2f, LED-зеленый #39ff14)
 * - Effect: Neon Glow
 * - Fonts: Teko (heading) + Barlow Condensed (body)
 * - Buttons: Neon Border
 * 
 * Created: January 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
    --stadium-dark: #1b1b2f;
    --stadium-darker: #13131f;
    --stadium-mid: #22223a;
    --led-green: #39ff14;
    --led-green-dim: #28cc0e;
    --led-green-faint: rgba(57, 255, 20, 0.12);
    --scoreboard-amber: #ffb300;
    --crowd-blue: #1e90ff;
    --chalk-white: #e8f0e8;
    --turf-gray: #2a2a42;
    --line-gray: #3a3a5c;
    --text-light: #c8d8c8;
    --text-muted: #7a8a7a;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Barlow Condensed', sans-serif;
    --glow-green: 0 0 8px rgba(57, 255, 20, 0.8), 0 0 20px rgba(57, 255, 20, 0.4);
    --glow-green-sm: 0 0 6px rgba(57, 255, 20, 0.6);
    --glow-amber: 0 0 8px rgba(255, 179, 0, 0.7);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
    --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 {
    background-color: var(--stadium-dark);
    color: var(--chalk-white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--led-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--led-green-dim); }
ul, ol { 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; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--chalk-white);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.3rem; }

p { font-size: 1.05rem; line-height: 1.7; color: var(--text-light); }

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

/* ===================== SECTION ===================== */
.section { padding: 5rem 0; }
.section--dark { background-color: var(--stadium-darker); }
.section--mid { background-color: var(--stadium-mid); }

.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__title { color: var(--chalk-white); margin-bottom: 0.75rem; }
.section__title span { color: var(--led-green); text-shadow: var(--glow-green-sm); }
.section__subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===================== HEADER ===================== */
.site-header {
    background-color: var(--stadium-darker);
    border-bottom: 2px solid var(--led-green);
    box-shadow: 0 2px 20px rgba(57, 255, 20, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: text-shadow var(--transition);
}

.logo:hover { color: var(--led-green); text-shadow: 0 0 12px rgba(57,255,20,1), 0 0 30px rgba(57,255,20,0.6); }

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

.site-nav__link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--led-green);
    background: var(--led-green-faint);
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================== HAMBURGER ===================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger__bar {
    width: 26px;
    height: 2px;
    background: var(--led-green);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    display: block;
}

.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.65rem 1.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: transparent;
    color: var(--led-green);
    border-color: var(--led-green);
    box-shadow: var(--glow-green-sm), inset 0 0 0 0 var(--led-green);
}

.btn--primary:hover {
    background: var(--led-green);
    color: var(--stadium-dark);
    box-shadow: var(--glow-green);
}

.btn--amber {
    background: transparent;
    color: var(--scoreboard-amber);
    border-color: var(--scoreboard-amber);
    box-shadow: var(--glow-amber);
}

.btn--amber:hover {
    background: var(--scoreboard-amber);
    color: var(--stadium-dark);
}

.btn--lg {
    font-size: 1.4rem;
    padding: 0.9rem 2.8rem;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.8rem 2.5rem;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--led-green);
    border: 2px solid var(--led-green);
    box-shadow: var(--glow-green);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-play:hover {
    background: var(--led-green);
    color: var(--stadium-dark);
    box-shadow: 0 0 20px rgba(57,255,20,0.9), 0 0 40px rgba(57,255,20,0.5);
}

/* ===================== HERO ===================== */
.hero {
    background-color: var(--stadium-darker);
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(57,255,20,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(30,144,255,0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 59px,
            rgba(57,255,20,0.04) 59px,
            rgba(57,255,20,0.04) 60px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 59px,
            rgba(57,255,20,0.04) 59px,
            rgba(57,255,20,0.04) 60px
        );
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--led-green), transparent);
    box-shadow: var(--glow-green-sm);
}

.hero__inner {
    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;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--led-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid var(--led-green);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    box-shadow: var(--glow-green-sm);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--led-green);
    border-radius: 50%;
    box-shadow: var(--glow-green-sm);
    animation: blink 1.2s ease-in-out infinite;
}

.hero__title { margin-bottom: 1rem; }
.hero__title-accent { color: var(--led-green); text-shadow: var(--glow-green-sm); display: block; }

.hero__desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 480px;
}

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

.hero__stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-gray);
}

.hero__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--glow-green-sm);
    line-height: 1;
}

.hero__stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

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

.hero__game-frame {
    background: var(--turf-gray);
    border: 2px solid var(--led-green);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-green), 0 0 60px rgba(57,255,20,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.hero__game-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(57,255,20,0.5));
}

.hero__play-prompt {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__score-ticker {
    display: flex;
    gap: 2rem;
    padding: 0.6rem 1.5rem;
    background: var(--stadium-darker);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-sm);
}

.hero__ticker-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--scoreboard-amber);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.feature-card {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    position: relative;
}

.feature-card:hover {
    border-color: var(--led-green);
    box-shadow: var(--glow-green-sm), 0 8px 30px rgba(0,0,0,0.3);
}

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

.feature-card__title {
    font-size: 1.5rem;
    color: var(--led-green);
    margin-bottom: 0.6rem;
}

.feature-card__text { font-size: 1rem; color: var(--text-muted); }

/* ===================== GAME SECTION ===================== */
.game-section { padding: 5rem 0; background: var(--stadium-mid); }

.game-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.game-section__label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--led-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.game-section__title { margin-bottom: 1rem; }
.game-section__desc { margin-bottom: 1.5rem; }

.game-section__controls {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.game-section__controls-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--scoreboard-amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.game-section__control-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.98rem;
    color: var(--text-light);
}

.game-section__key {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    background: var(--stadium-darker);
    border: 1px solid var(--led-green);
    color: var(--led-green);
    padding: 0.15rem 0.6rem;
    border-radius: 3px;
    box-shadow: var(--glow-green-sm);
    min-width: 60px;
    text-align: center;
    text-transform: uppercase;
}

.game-section__embed {
    background: var(--stadium-darker);
    border: 2px solid var(--led-green);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-green);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.game-section__embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

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

.step-card {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    padding: 2rem 1.25rem 1.5rem;
    text-align: center;
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.step-card:hover {
    border-color: var(--led-green);
    box-shadow: var(--glow-green-sm);
}

.step-card__number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--stadium-dark);
    background: var(--led-green);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-green-sm);
}

.step-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.step-card__title { font-size: 1.3rem; color: var(--led-green); margin-bottom: 0.5rem; }
.step-card__text { font-size: 0.95rem; color: var(--text-muted); }

/* ===================== ARTICLE CARDS ===================== */
.articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.article-card {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.article-card:hover {
    border-color: var(--led-green);
    box-shadow: var(--glow-green-sm), 0 12px 40px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}

.article-card__thumb {
    width: 100%;
    height: 180px;
    background: var(--stadium-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line-gray);
}

.article-card__thumb-placeholder {
    font-size: 3.5rem;
    opacity: 0.6;
}

.article-card__content { padding: 1.5rem; position: relative; z-index: 2; }

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.article-card__cat {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--led-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--led-green);
    padding: 0.15rem 0.6rem;
    border-radius: 2px;
    box-shadow: var(--glow-green-sm);
}

.article-card__date { font-size: 0.85rem; color: var(--text-muted); }

.article-card__title {
    font-size: 1.35rem;
    color: var(--chalk-white);
    margin-bottom: 0.6rem;
    line-height: 1.2;
    transition: color var(--transition);
}

.article-card:hover .article-card__title { color: var(--led-green); }

.article-card__excerpt { font-size: 0.92rem; color: 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: 0.75rem; }

.faq__item {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item.is-open { border-color: var(--led-green); box-shadow: var(--glow-green-sm); }

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--chalk-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: left;
    transition: color var(--transition);
}

.faq__item.is-open .faq__question { color: var(--led-green); }

.faq__icon {
    font-size: 1.3rem;
    color: var(--led-green);
    flex-shrink: 0;
    transition: transform var(--transition);
    font-style: normal;
}

.faq__item.is-open .faq__icon { transform: rotate(45deg); }

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

.faq__answer p { font-size: 1rem; color: var(--text-muted); padding-bottom: 1.2rem; }
.faq__item.is-open .faq__answer { max-height: 400px; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: var(--stadium-darker);
    border: 2px solid var(--led-green);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--glow-green), inset 0 0 60px rgba(57,255,20,0.04);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(57,255,20,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner__title { margin-bottom: 0.75rem; }
.cta-banner__title span { color: var(--led-green); text-shadow: var(--glow-green-sm); }
.cta-banner__text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--stadium-darker);
    border-top: 2px solid var(--line-gray);
    padding: 3.5rem 0 1.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.site-footer__brand .logo { font-size: 1.6rem; display: inline-block; margin-bottom: 0.75rem; }
.site-footer__brand p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; max-width: 260px; }

.site-footer__col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--chalk-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--line-gray);
}

.site-footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__link {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--transition);
    text-decoration: none;
}
.site-footer__link:hover { color: var(--led-green); }

.site-footer__bottom {
    border-top: 1px solid var(--line-gray);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.site-footer__legal-links { display: flex; gap: 1.5rem; }
.site-footer__legal-link { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.site-footer__legal-link:hover { color: var(--led-green); }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
    background: var(--stadium-darker);
    background-image: radial-gradient(ellipse at 30% 70%, rgba(57,255,20,0.06) 0%, transparent 55%);
    padding: 4rem 0;
    border-bottom: 2px solid var(--line-gray);
}

.page-hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.page-hero__breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.page-hero__breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: var(--led-green); }
.page-hero__breadcrumb-sep { color: var(--line-gray); }
.page-hero__title { margin-bottom: 0.75rem; }
.page-hero__title span { color: var(--led-green); }
.page-hero__subtitle { font-size: 1.1rem; color: var(--text-muted); }

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-stat {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: border-color var(--transition);
}

.about-stat:hover { border-color: var(--led-green); box-shadow: var(--glow-green-sm); }

.about-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--led-green);
    text-shadow: var(--glow-green-sm);
}

.about-stat__label { font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.about-visual {
    background: var(--turf-gray);
    border: 2px solid var(--led-green);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-green);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    font-size: 8rem;
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.team-card {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.team-card:hover { border-color: var(--led-green); box-shadow: var(--glow-green-sm); }

.team-card__avatar {
    width: 80px;
    height: 80px;
    background: var(--stadium-mid);
    border: 2px solid var(--led-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: var(--glow-green-sm);
}

.team-card__name { font-size: 1.4rem; color: var(--chalk-white); margin-bottom: 0.25rem; }
.team-card__role { font-size: 0.9rem; color: var(--led-green); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===================== HOW TO PLAY PAGE ===================== */
.htp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

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

.htp-tip {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-left: 3px solid var(--led-green);
    border-radius: var(--radius-sm) var(--radius-md) var(--radius-md) var(--radius-sm);
    padding: 1.2rem 1.25rem;
    box-shadow: -3px 0 10px rgba(57,255,20,0.1);
}

.htp-tip__title { font-size: 1.2rem; color: var(--led-green); margin-bottom: 0.4rem; }
.htp-tip__text { font-size: 0.95rem; color: var(--text-muted); }

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

.htp-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: border-color var(--transition);
}

.htp-step:hover { border-color: var(--led-green); }

.htp-step__num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--glow-green-sm);
    min-width: 2rem;
    line-height: 1;
}

.htp-step__title { font-size: 1.2rem; color: var(--chalk-white); margin-bottom: 0.3rem; }
.htp-step__text { font-size: 0.95rem; color: var(--text-muted); }

/* ===================== BLOG PAGE ===================== */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ===================== ARTICLE PAGE ===================== */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.article-body { padding: 3rem 0; }

.article-header { margin-bottom: 2.5rem; }
.article-header__meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; }
.article-header__cat {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--led-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--led-green);
    padding: 0.2rem 0.7rem;
    border-radius: 2px;
    box-shadow: var(--glow-green-sm);
}
.article-header__date { font-size: 0.9rem; color: var(--text-muted); }
.article-header__title { margin-bottom: 0.75rem; }
.article-header__lead { font-size: 1.15rem; color: var(--text-light); }

.article-content h2 { font-size: 1.9rem; color: var(--led-green); margin: 2rem 0 0.75rem; text-shadow: var(--glow-green-sm); }
.article-content h3 { font-size: 1.5rem; color: var(--scoreboard-amber); margin: 1.5rem 0 0.6rem; }
.article-content p { font-size: 1rem; color: var(--text-light); margin-bottom: 1rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1rem 1.5rem; list-style: disc; }
.article-content li { font-size: 1rem; color: var(--text-light); margin-bottom: 0.4rem; }
.article-content blockquote {
    border-left: 3px solid var(--led-green);
    background: var(--turf-gray);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: -3px 0 10px rgba(57,255,20,0.1);
}
.article-content blockquote p { color: var(--chalk-white); font-size: 1.05rem; }

.article-sidebar { padding: 3rem 0; }

.sidebar-widget {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--led-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--line-gray);
}

.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-link {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--line-gray);
    transition: color var(--transition);
}
.sidebar-link:hover { color: var(--led-green); }
.sidebar-link:last-child { border-bottom: none; }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--chalk-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input,
.form-textarea,
.form-select {
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--chalk-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--led-green);
    box-shadow: var(--glow-green-sm);
}

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

.form-select option {
    background: var(--stadium-dark);
    color: var(--chalk-white);
}

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

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--turf-gray);
    border: 1px solid var(--line-gray);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: border-color var(--transition);
}

.contact-info-item:hover { border-color: var(--led-green); box-shadow: var(--glow-green-sm); }

.contact-info-item__icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-info-item__title { font-size: 1.15rem; color: var(--led-green); margin-bottom: 0.25rem; }
.contact-info-item__text { font-size: 0.95rem; color: var(--text-muted); }

/* ===================== LEGAL PAGES ===================== */
.legal-content { max-width: 860px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.legal-content h2 { font-size: 1.8rem; color: var(--led-green); margin: 2.5rem 0 0.75rem; }
.legal-content h3 { font-size: 1.4rem; color: var(--scoreboard-amber); margin: 1.75rem 0 0.5rem; }
.legal-content p { margin-bottom: 1rem; font-size: 1rem; color: var(--text-light); }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content li { font-size: 1rem; color: var(--text-light); margin-bottom: 0.4rem; }
.legal-content a { color: var(--led-green); }
.legal-last-updated { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ===================== COOKIE CONSENT ===================== */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 420px;
    background: var(--stadium-darker);
    border: 1px solid var(--led-green);
    border-radius: var(--radius-md);
    box-shadow: var(--glow-green-sm), 0 8px 30px rgba(0,0,0,0.5);
    z-index: 200;
    padding: 1.5rem;
    animation: slideUp 0.4s ease;
}

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

.cookie-consent__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cookie-consent__text a { color: var(--led-green); }

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===================== SCOREBOARD TICKER ===================== */
.score-ticker {
    background: var(--stadium-darker);
    border-bottom: 1px solid var(--line-gray);
    border-top: 1px solid var(--line-gray);
    padding: 0.5rem 0;
    overflow: hidden;
}

.score-ticker__inner {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
}

.score-ticker__item {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--scoreboard-amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.score-ticker__sep { color: var(--led-green); }

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--stadium-darker);
    border-top: 1px solid var(--line-gray);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    position: absolute;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    z-index: 99;
}

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

.mobile-nav__link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link--active { color: var(--led-green); background: var(--led-green-faint); }

/* ===================== ANIMATIONS ===================== */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes neonPulse {
    0%, 100% { box-shadow: var(--glow-green); }
    50% { box-shadow: 0 0 15px rgba(57,255,20,1), 0 0 30px rgba(57,255,20,0.7); }
}

.neon-pulse { animation: neonPulse 2.5s ease-in-out infinite; }

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.text-green { color: var(--led-green); }
.text-amber { color: var(--scoreboard-amber); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 1rem; }
.hidden { display: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .articles__grid { grid-template-columns: repeat(2, 1fr); }
    .blog__grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { padding: 0 0 3rem; }
}

@media (max-width: 768px) {
    .site-nav { display: none; }
    .site-header__cta { display: none; }
    .hamburger { display: flex; }

    .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__visual { order: -1; }
    .hero__stats { gap: 1rem; }

    .game-section__inner { grid-template-columns: 1fr; gap: 2rem; }

    .features__grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .articles__grid { grid-template-columns: 1fr; }
    .blog__grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .htp-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

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

    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }

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

@media (max-width: 480px) {
    .hero__stats { flex-wrap: wrap; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
}