/*
 * PROJECT: storescity
 * DOMAIN: storescity.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Dark Knight (Black, Grey, Yellow, Gothic)
 * - Effect: Neon Glow
 * - Fonts: Cinzel (heading) + Roboto Condensed (body)
 * - Buttons: Neon Border
 *
 * Created: 2026
 */

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

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden !important; }

:root {
    --knight-black:   #0a0a0a;
    --shadow-dark:    #111111;
    --forge-grey:     #1e1e1e;
    --steel-grey:     #2e2e2e;
    --ash-grey:       #555555;
    --bone-grey:      #888888;
    --torch-yellow:   #f5c518;
    --gold-bright:    #ffd700;
    --amber-glow:     #ff9900;
    --smoke-white:    #d4d0c8;
    --font-heading:   'Cinzel', serif;
    --font-body:      'Roboto Condensed', sans-serif;
    --neon-yellow:    #f5c518;
    --radius-sm:      4px;
    --radius-md:      8px;
    --transition:     0.3s ease;
    --header-height:  70px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--knight-black);
    color: var(--smoke-white);
    line-height: 1.7;
    font-size: 16px;
}

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

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--torch-yellow);
    letter-spacing: 0.04em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--smoke-white); }

/* ===================== MANDATORY RULES ===================== */
.article-card { position: relative; }
.offer-card   { position: relative; }
.card         { position: relative; }

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

.stars { color: #ffc107; }

/* ===================== LAYOUT ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section--dark {
    background-color: var(--shadow-dark);
}

.section--forge {
    background-color: var(--forge-grey);
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title {
    margin-bottom: 12px;
}

.section__subtitle {
    color: var(--bone-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== COOKIE CONSENT ===================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(17, 17, 17, 0.97);
    border-top: 1px solid var(--steel-grey);
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

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

.cookie-consent__text {
    color: var(--bone-grey);
    font-size: 0.9rem;
    margin-bottom: 0;
    flex: 1;
    min-width: 280px;
}

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

.cookie-consent__btn {
    flex-shrink: 0;
}

/* ===================== HEADER ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--steel-grey);
    backdrop-filter: blur(8px);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--torch-yellow);
    text-shadow: 0 0 12px rgba(245, 197, 24, 0.6);
    letter-spacing: 0.06em;
    transition: text-shadow var(--transition);
}

.logo:hover {
    text-shadow: 0 0 20px rgba(245, 197, 24, 0.9), 0 0 40px rgba(245, 197, 24, 0.4);
}

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

.site-nav__link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--smoke-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition);
    position: relative;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--torch-yellow);
    box-shadow: 0 0 8px var(--torch-yellow);
    transition: width var(--transition);
}

.site-nav__link:hover {
    color: var(--torch-yellow);
}

.site-nav__link:hover::after {
    width: 100%;
}

.site-nav__link--cta {
    color: var(--torch-yellow);
    border: 1px solid var(--torch-yellow);
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 8px rgba(245, 197, 24, 0.3);
}

.site-nav__link--cta::after { display: none; }

.site-nav__link--cta:hover {
    background: var(--torch-yellow);
    color: var(--knight-black);
    box-shadow: 0 0 18px rgba(245, 197, 24, 0.7);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--torch-yellow);
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--primary {
    background: transparent;
    color: var(--torch-yellow);
    border-color: var(--torch-yellow);
    box-shadow: 0 0 12px rgba(245, 197, 24, 0.4), inset 0 0 12px rgba(245, 197, 24, 0.05);
}

.btn--primary:hover {
    background: var(--torch-yellow);
    color: var(--knight-black);
    box-shadow: 0 0 24px rgba(245, 197, 24, 0.8), 0 0 48px rgba(245, 197, 24, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--smoke-white);
    border-color: var(--ash-grey);
}

.btn--secondary:hover {
    border-color: var(--torch-yellow);
    color: var(--torch-yellow);
    box-shadow: 0 0 12px rgba(245, 197, 24, 0.3);
}

.btn--large {
    font-size: 1.1rem;
    padding: 18px 48px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 52px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--torch-yellow);
    background: transparent;
    color: var(--torch-yellow);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 0 16px rgba(245, 197, 24, 0.5), inset 0 0 16px rgba(245, 197, 24, 0.05);
    text-decoration: none;
}

.btn-play:hover {
    background: var(--torch-yellow);
    color: var(--knight-black);
    box-shadow: 0 0 32px rgba(245, 197, 24, 0.9), 0 0 64px rgba(245, 197, 24, 0.4);
    transform: translateY(-2px);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background-color: var(--knight-black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(245, 197, 24, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 197, 24, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--torch-yellow);
    border: 1px solid var(--torch-yellow);
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(245, 197, 24, 0.3);
}

.hero__title {
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(245, 197, 24, 0.3);
}

.hero__description {
    font-size: 1.15rem;
    color: var(--bone-grey);
    margin-bottom: 36px;
    max-width: 500px;
}

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

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

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--torch-yellow);
    display: block;
    text-shadow: 0 0 12px rgba(245, 197, 24, 0.5);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--bone-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero__game-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(245, 197, 24, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(245, 197, 24, 0.08);
}

.hero__game-preview {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--shadow-dark) 0%, var(--forge-grey) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__game-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.5));
}

.hero__game-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--torch-yellow);
    color: var(--knight-black);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.hero__game-info {
    padding: 20px;
}

.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--torch-yellow);
    margin-bottom: 6px;
}

.hero__game-meta {
    font-size: 0.85rem;
    color: var(--bone-grey);
}

/* ===================== GAME SECTION ===================== */
.game-section {
    background: var(--shadow-dark);
    padding: 80px 0;
}

.game-section__title {
    text-align: center;
    margin-bottom: 40px;
}

.game-embed {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(245, 197, 24, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(245, 197, 24, 0.06);
}

.game-embed__frame {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
}

.game-embed__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: opacity var(--transition);
}

.game-embed__overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.game-embed__play-icon {
    width: 80px;
    height: 80px;
    border: 3px solid var(--torch-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(245, 197, 24, 0.5);
}

.game-embed__play-icon svg {
    fill: var(--torch-yellow);
    margin-left: 6px;
}

.game-embed__label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--smoke-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===================== FEATURES ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    position: relative;
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--torch-yellow);
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.15), 0 8px 32px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

.feature-card__icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.4));
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--torch-yellow);
    margin-bottom: 10px;
}

.feature-card__text {
    color: var(--bone-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===================== HOW TO PLAY (home snippet) ===================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    counter-reset: steps;
}

.step-card {
    position: relative;
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    padding: 36px 24px 28px;
    text-align: center;
    transition: all var(--transition);
}

.step-card:hover {
    border-color: rgba(245, 197, 24, 0.4);
    box-shadow: 0 0 16px rgba(245, 197, 24, 0.1);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: transparent;
    border: 2px solid var(--torch-yellow);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--torch-yellow);
    margin: 0 auto 18px;
    box-shadow: 0 0 12px rgba(245, 197, 24, 0.3);
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--torch-yellow);
    margin-bottom: 10px;
}

.step-card__text {
    color: var(--bone-grey);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===================== ARTICLE CARDS ===================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.article-card {
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.article-card:hover {
    border-color: var(--torch-yellow);
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.12), 0 8px 32px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

.article-card__thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--shadow-dark) 0%, var(--steel-grey) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.article-card__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.6) 100%);
}

.article-card__category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.4);
    color: var(--torch-yellow);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.article-card__content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--smoke-white);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color var(--transition);
}

.article-card:hover .article-card__title {
    color: var(--torch-yellow);
}

.article-card__excerpt {
    color: var(--bone-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--ash-grey);
    margin-bottom: 16px;
}

.article-card__read-more {
    color: var(--torch-yellow);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--transition);
    position: relative;
    z-index: 2;
    display: inline-block;
    border: 1px solid var(--torch-yellow);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 8px rgba(245, 197, 24, 0.2);
}

.article-card__read-more:hover {
    background: var(--torch-yellow);
    color: var(--knight-black);
    box-shadow: 0 0 16px rgba(245, 197, 24, 0.6);
}

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

.faq-item {
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.is-open {
    border-color: rgba(245, 197, 24, 0.4);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--smoke-white);
    font-weight: 600;
    user-select: none;
    transition: color var(--transition);
}

.faq-item__question:hover {
    color: var(--torch-yellow);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--ash-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--torch-yellow);
    transition: transform var(--transition), border-color var(--transition);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    border-color: var(--torch-yellow);
    box-shadow: 0 0 8px rgba(245, 197, 24, 0.4);
}

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

.faq-item.is-open .faq-item__answer {
    max-height: 400px;
}

.faq-item__answer-inner {
    padding: 0 24px 20px;
    color: var(--bone-grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--shadow-dark);
    border-top: 1px solid var(--steel-grey);
    padding: 60px 0 30px;
}

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

.footer-brand__logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--torch-yellow);
    text-shadow: 0 0 12px rgba(245, 197, 24, 0.5);
    display: block;
    margin-bottom: 14px;
}

.footer-brand__desc {
    color: var(--bone-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--torch-yellow);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}

.footer-col__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col__link {
    color: var(--bone-grey);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col__link:hover {
    color: var(--torch-yellow);
}

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

.site-footer__copy {
    color: var(--ash-grey);
    font-size: 0.85rem;
    margin-bottom: 0;
}

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

.site-footer__legal-link {
    color: var(--ash-grey);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.site-footer__legal-link:hover {
    color: var(--torch-yellow);
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--knight-black);
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--bone-grey);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.team-card {
    position: relative;
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.team-card:hover {
    border-color: rgba(245, 197, 24, 0.4);
    box-shadow: 0 0 16px rgba(245, 197, 24, 0.1);
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--steel-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
    border: 2px solid var(--torch-yellow);
    box-shadow: 0 0 12px rgba(245, 197, 24, 0.3);
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--torch-yellow);
    margin-bottom: 4px;
}

.team-card__role {
    color: var(--bone-grey);
    font-size: 0.85rem;
}

/* ===================== HOW TO PLAY PAGE ===================== */
.htp-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--knight-black);
    position: relative;
}

.htp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.htp-section {
    padding: 70px 0;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.control-card {
    position: relative;
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: border-color var(--transition);
}

.control-card:hover {
    border-color: rgba(245, 197, 24, 0.4);
}

.control-card__key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--steel-grey);
    border: 2px solid var(--torch-yellow);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--torch-yellow);
    margin: 0 auto 14px;
    box-shadow: 0 0 10px rgba(245, 197, 24, 0.2), 0 4px 0 rgba(245, 197, 24, 0.3);
}

.control-card__action {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--smoke-white);
    margin-bottom: 6px;
}

.control-card__desc {
    color: var(--bone-grey);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.tip-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.tip-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-left: 3px solid var(--torch-yellow);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.tip-item__number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--torch-yellow);
    flex-shrink: 0;
    min-width: 28px;
}

.tip-item__text {
    color: var(--bone-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================== BLOG PAGE ===================== */
.blog-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--knight-black);
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* ===================== ARTICLE PAGE ===================== */
.article-hero {
    padding: 120px 0 60px;
    background: var(--knight-black);
    border-bottom: 1px solid var(--steel-grey);
}

.article-hero__category {
    display: inline-block;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.3);
    color: var(--torch-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}

.article-hero__title {
    max-width: 800px;
    margin-bottom: 16px;
}

.article-hero__meta {
    color: var(--ash-grey);
    font-size: 0.9rem;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-body h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
    color: var(--torch-yellow);
}

.article-body h3 {
    font-size: 1.2rem;
    margin: 28px 0 12px;
    color: var(--smoke-white);
}

.article-body p {
    color: var(--bone-grey);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.article-body ul, .article-body ol {
    margin: 0 0 1.2rem 1.5rem;
    color: var(--bone-grey);
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.article-body ol li {
    list-style: decimal;
}

.article-body strong {
    color: var(--smoke-white);
    font-weight: 700;
}

/* ===================== CONTACT PAGE ===================== */
.contact-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--knight-black);
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

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

.contact-form {
    background: var(--forge-grey);
    border: 1px solid var(--steel-grey);
    border-radius: var(--radius-md);
    padding: 40px;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    background: var(--steel-grey);
    border: 1px solid var(--ash-grey);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--smoke-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--torch-yellow);
    box-shadow: 0 0 8px rgba(245, 197, 24, 0.2);
}

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

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

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item__label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--torch-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contact-info-item__value {
    color: var(--bone-grey);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===================== LEGAL PAGES ===================== */
.legal-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--knight-black);
    position: relative;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.legal-body h2 {
    font-size: 1.3rem;
    margin: 36px 0 14px;
    color: var(--torch-yellow);
}

.legal-body p {
    color: var(--bone-grey);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-body ul {
    margin: 0 0 1rem 1.5rem;
    color: var(--bone-grey);
}

.legal-body li {
    list-style: disc;
    margin-bottom: 6px;
    line-height: 1.7;
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--ash-grey);
    padding: 14px 0;
    justify-content: center;
}

.breadcrumb__sep { color: var(--steel-grey); }
.breadcrumb__item--current { color: var(--torch-yellow); }
.breadcrumb a { color: var(--bone-grey); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--torch-yellow); }

/* ===================== GLOW DIVIDER ===================== */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--torch-yellow), transparent);
    box-shadow: 0 0 8px var(--torch-yellow);
    margin: 0;
    opacity: 0.4;
}

/* ===================== ARTICLE NAV ===================== */
.article-nav {
    border-top: 1px solid var(--steel-grey);
    padding: 40px 0;
    background: var(--shadow-dark);
}

.article-nav__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.article-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bone-grey);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--transition);
    border: 1px solid var(--steel-grey);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.article-nav__link:hover {
    color: var(--torch-yellow);
    border-color: var(--torch-yellow);
    box-shadow: 0 0 10px rgba(245, 197, 24, 0.2);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero__visual { order: -1; }
    .hero__game-card { max-width: 340px; }
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .controls-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        border-top: 1px solid var(--steel-grey);
        padding: 24px 20px;
    }
    .site-nav.is-open {
        display: block;
    }
    .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .hamburger {
        display: flex;
    }
    .hero__stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .section {
        padding: 60px 0;
    }
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .controls-grid {
        grid-template-columns: 1fr;
    }
    .game-embed__frame {
        height: 360px;
    }
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }
    .article-nav__inner {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    .btn-play { padding: 14px 32px; font-size: 1rem; }
    .hero { padding: 90px 0 40px; }
    .game-embed__frame { height: 280px; }
}