/*
 * PROJECT: ampsandaxes
 * DOMAIN: ampsandaxes.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Stadium / LED-green on dark
 * - Effect: Neon Glow
 * - Fonts: Teko (heading) + Barlow Condensed (body)
 * - Buttons: Neon Border
 *
 * Created: 2026
 */

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

:root {
    --stadium-dark: #1b1b2f;
    --stadium-darker: #13132a;
    --stadium-card: #22223a;
    --stadium-border: #2e2e50;
    --led-green: #39ff14;
    --led-green-dim: rgba(57, 255, 20, 0.15);
    --led-green-mid: rgba(57, 255, 20, 0.4);
    --accent-yellow: #f5e642;
    --accent-cyan: #00e5ff;
    --text-primary: #f0f0f8;
    --text-secondary: #9999bb;
    --text-muted: #666688;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Barlow Condensed', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-neon: 0 0 8px var(--led-green), 0 0 20px rgba(57,255,20,0.3);
    --shadow-neon-strong: 0 0 12px var(--led-green), 0 0 30px rgba(57,255,20,0.5), 0 0 60px rgba(57,255,20,0.2);
    --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; }
html, body { overflow-x: hidden !important; }

body {
    font-family: var(--font-body);
    background-color: var(--stadium-dark);
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--led-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--text-primary);
}

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

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

.stars { color: #ffc107; }

/* ========= LAYOUT ========= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.section--alt {
    background-color: var(--stadium-darker);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    position: relative;
    display: inline-block;
}

.section__title span {
    color: var(--led-green);
    text-shadow: var(--shadow-neon);
}

.section__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.section__header {
    margin-bottom: 3rem;
}

/* ========= HEADER ========= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(27, 27, 47, 0.95);
    border-bottom: 1px solid var(--stadium-border);
    backdrop-filter: blur(8px);
    padding: 0.75rem 0;
    height: var(--header-height);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.logo:hover {
    color: var(--led-green);
    text-shadow: var(--shadow-neon-strong);
}

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

.nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
}

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

.nav__toggle {
    display: none;
    background: none;
    border: 1px solid var(--stadium-border);
    color: var(--text-primary);
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
}

/* ========= HERO ========= */
.hero {
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, var(--stadium-darker) 0%, #1e1e38 50%, var(--stadium-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--led-green);
    margin-bottom: 1rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero__title--accent {
    color: var(--led-green);
    text-shadow: var(--shadow-neon-strong);
    display: block;
}

.hero__description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

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

.hero__badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero__badge-icon {
    color: var(--led-green);
    font-size: 1.1rem;
}

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

.hero__game-preview {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--led-green);
    box-shadow: var(--shadow-neon-strong), 0 20px 60px rgba(0,0,0,0.6);
}

.hero__game-icon {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.hero__game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,27,47,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.hero__game-label {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

/* ========= BUTTONS ========= */
.btn-play {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.8rem 2.4rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--led-green);
    color: var(--stadium-dark);
    background: var(--led-green);
    box-shadow: var(--shadow-neon);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-play:hover {
    background: transparent;
    color: var(--led-green);
    box-shadow: var(--shadow-neon-strong);
    text-shadow: 0 0 8px var(--led-green);
}

.btn-secondary {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.8rem 2.4rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--stadium-border);
    color: var(--text-secondary);
    background: transparent;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.btn-secondary:hover {
    border-color: var(--led-green);
    color: var(--led-green);
    background: var(--led-green-dim);
}

.btn-sm {
    font-size: 1rem;
    padding: 0.5rem 1.4rem;
}

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

.feature-card {
    background: var(--stadium-card);
    border: 1px solid var(--stadium-border);
    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: 0 0 20px rgba(57, 255, 20, 0.1);
}

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

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.feature-card__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========= HOW TO PLAY STEPS ========= */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

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

.step__number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--shadow-neon);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

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

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

.article-card {
    background: var(--stadium-card);
    border: 1px solid var(--stadium-border);
    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: 0 0 20px rgba(57, 255, 20, 0.12);
    transform: translateY(-3px);
}

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

.article-card__thumb-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--led-green);
    color: var(--stadium-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    z-index: 2;
}

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

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    line-height: 1.2;
    color: var(--text-primary);
    transition: color var(--transition);
}

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

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

.article-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.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(--stadium-card);
    border: 1px solid var(--stadium-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item:hover {
    border-color: var(--led-green-mid);
}

.faq__question {
    padding: 1.2rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    user-select: none;
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--led-green);
}

.faq__icon {
    color: var(--led-green);
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.faq__answer {
    display: none;
    padding: 0 1.5rem 1.2rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    border-top: 1px solid var(--stadium-border);
}

.faq__item--open .faq__answer {
    display: block;
}

/* ========= CTA BANNER ========= */
.cta-banner {
    background: linear-gradient(135deg, var(--stadium-darker) 0%, rgba(57,255,20,0.05) 100%);
    border: 1px solid var(--led-green-mid);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(57,255,20,0.08);
}

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

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.cta-banner__title span {
    color: var(--led-green);
    text-shadow: var(--shadow-neon);
}

.cta-banner__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ========= SCOREBOARD / STATS ========= */
.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat__value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--shadow-neon);
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat__label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========= BREADCRUMB ========= */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb__sep { color: var(--stadium-border); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--led-green); }
.breadcrumb__current { color: var(--text-secondary); }

/* ========= PAGE HERO (inner pages) ========= */
.page-hero {
    padding: 4rem 0 3rem;
    background: var(--stadium-darker);
    border-bottom: 1px solid var(--stadium-border);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.75rem;
}

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

.page-hero__sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 580px;
}

/* ========= PROSE (article content) ========= */
.prose {
    max-width: 760px;
}

.prose h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--stadium-border);
}

.prose h2 span { color: var(--led-green); }

.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--led-green);
    margin: 1.8rem 0 0.7rem;
}

.prose p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.prose ul, .prose ol {
    margin: 0 0 1.2rem 1.5rem;
    list-style: disc;
}

.prose ol { list-style: decimal; }

.prose li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.4rem;
}

.prose strong { color: var(--text-primary); font-weight: 600; }

.prose .highlight-box {
    background: var(--stadium-card);
    border-left: 3px solid var(--led-green);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    box-shadow: -3px 0 20px rgba(57,255,20,0.1);
}

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

.article-sidebar {
    position: sticky;
    top: 90px;
}

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

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--led-green);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.sidebar-link-list li {
    border-bottom: 1px solid var(--stadium-border);
    padding: 0.6rem 0;
}

.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.sidebar-link-list a:hover { color: var(--led-green); }

/* ========= FORMS ========= */
.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--stadium-card);
    border: 1px solid var(--stadium-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--led-green);
    box-shadow: 0 0 0 3px rgba(57,255,20,0.1);
}

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

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

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info__text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.contact-item__icon {
    font-size: 1.4rem;
    color: var(--led-green);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-item__value {
    font-size: 1rem;
    color: var(--text-primary);
}

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

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

.footer-brand__logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--shadow-neon);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 260px;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-col__list li {
    margin-bottom: 0.5rem;
}

.footer-col__list a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-col__list a:hover { color: var(--led-green); }

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

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

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

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

.site-footer__legal a:hover { color: var(--led-green); }

/* ========= GAME IFRAME PAGE ========= */
.game-frame-section {
    padding: 0;
    background: var(--stadium-darker);
}

.game-frame-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-neon-strong);
    border: 2px solid var(--led-green-mid);
}

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

/* ========= ABOUT PAGE ========= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--stadium-card);
    border: 1px solid var(--stadium-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color var(--transition);
}

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

.team-card__avatar {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--led-green);
    margin-bottom: 0.75rem;
}

.team-card__bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ========= HOW TO PLAY PAGE ========= */
.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.control-item {
    background: var(--stadium-card);
    border: 1px solid var(--stadium-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: border-color var(--transition);
}

.control-item:hover { border-color: var(--led-green); }

.control-item__key {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--shadow-neon);
    flex-shrink: 0;
    min-width: 2.5rem;
    text-align: center;
}

.control-item__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    counter-reset: tips;
}

.tip-card {
    background: var(--stadium-card);
    border: 1px solid var(--stadium-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    counter-increment: tips;
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.tip-card:hover {
    border-color: var(--led-green);
    box-shadow: 0 0 15px rgba(57,255,20,0.08);
}

.tip-card__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--led-green-dim);
    line-height: 1;
    margin-bottom: 0.5rem;
    user-select: none;
}

.tip-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tip-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========= LEGAL PAGES ========= */
.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 2.5rem 0 0.8rem;
    color: var(--text-primary);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--stadium-border);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1.5rem 0 0.6rem;
    color: var(--led-green);
}

.legal-content p, .legal-content li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    list-style: disc;
}

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

.legal-content a { color: var(--led-green); }

/* ========= COOKIE CONSENT ========= */
#cookie-consent {
    font-family: var(--font-body);
}

/* ========= UTILITIES ========= */
.text-center { text-align: center; }
.text-green { color: var(--led-green); text-shadow: 0 0 6px rgba(57,255,20,0.4); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.divider {
    height: 1px;
    background: var(--stadium-border);
    margin: 2rem 0;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
    .features__grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero__visual {
        order: -1;
    }
    .hero__game-preview {
        max-width: 360px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--stadium-darker);
        border-bottom: 1px solid var(--stadium-border);
        padding: 1rem 0;
    }
    .nav--open { display: block; }
    .nav__list { flex-direction: column; padding: 0 1.5rem; gap: 0; }
    .nav__link { display: block; padding: 0.7rem 0; }
    .nav__toggle { display: block; }
    .site-header__inner { position: relative; }
    .section { padding: 3.5rem 0; }
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .cta-banner { padding: 3rem 1.5rem; }
    .hero__title { font-size: clamp(2.5rem, 8vw, 4rem); }
    .features__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero { padding: 4rem 0 3rem; }
    .hero__game-preview { max-width: 100%; }
    .articles__grid { grid-template-columns: 1fr; }
    .steps__grid { grid-template-columns: 1fr 1fr; }
    .features__grid { grid-template-columns: 1fr; }
}