/*
 * PROJECT: marvindiaz.com
 * DOMAIN: marvindiaz.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Stadium / Neon 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 {
    --bg-dark: #1b1b2f;
    --bg-card: #22223b;
    --bg-surface: #2d2d44;
    --led-green: #39ff14;
    --led-green-dim: #1aaa00;
    --neon-yellow: #f9f002;
    --blade-red: #ff3333;
    --veggie-orange: #ff7c00;
    --text-primary: #e8e8f0;
    --text-muted: #9090b0;
    --border-color: #3a3a5c;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Barlow Condensed', sans-serif;
    --transition: 0.25s ease;
    --glow-green: 0 0 8px #39ff14, 0 0 20px #39ff1466;
    --glow-red: 0 0 8px #ff3333, 0 0 20px #ff333366;
    --header-height: 70px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 18px;
    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: var(--neon-yellow);
}

ul {
    list-style: none;
}

/* ===================== MANDATORY RULES ===================== */
.article-card,
.offer-card,
.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--alt {
    background-color: var(--bg-card);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

.section__header {
    margin-bottom: 48px;
}

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

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.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;
}

.logo:hover {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow), 0 0 20px #f9f00266;
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    transition: color var(--transition), text-shadow var(--transition);
}

.nav__link:hover,
.nav__link--active {
    color: var(--led-green);
    text-shadow: var(--glow-green);
}

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

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

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1b1b2f 0%, #0d1a0d 60%, #1b1b2f 100%);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(57, 255, 20, 0.04) 60px, rgba(57, 255, 20, 0.04) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(57, 255, 20, 0.04) 60px, rgba(57, 255, 20, 0.04) 61px);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--led-green);
    border: 1px solid var(--led-green);
    box-shadow: var(--glow-green);
    padding: 4px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.0;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

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

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

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

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

.hero__game-preview {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--led-green);
    box-shadow: var(--glow-green), inset 0 0 40px rgba(57, 255, 20, 0.05);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    max-width: 380px;
    width: 100%;
}

.hero__game-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 16px;
    border: 2px solid var(--border-color);
}

.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin-bottom: 8px;
}

.hero__game-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.hero__score-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

/* ===================== BUTTONS ===================== */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bg-dark);
    background: var(--led-green);
    border: 2px solid var(--led-green);
    box-shadow: var(--glow-green);
    padding: 12px 36px;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn-play:hover {
    background: transparent;
    color: var(--led-green);
    box-shadow: var(--glow-green), inset 0 0 20px rgba(57, 255, 20, 0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn-secondary:hover {
    border-color: var(--led-green);
    color: var(--led-green);
    box-shadow: var(--glow-green);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 32px 28px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

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

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

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--led-green);
    margin-bottom: 10px;
}

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

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

.step-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 28px 24px;
    counter-increment: step-counter;
    position: relative;
}

.step-card::before {
    content: counter(step-counter, decimal-leading-zero);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 10px;
}

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

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

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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);
    transform: translateY(-4px);
}

.article-card__image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-surface) 0%, #1a2a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.article-card__content {
    padding: 24px;
}

.article-card__category {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--led-green);
    margin-bottom: 8px;
    display: block;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.article-card__excerpt {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color var(--transition);
}

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

.faq__question {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
    transition: color var(--transition);
}

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

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

.faq__toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--led-green);
    transition: transform var(--transition);
}

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

.faq__answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

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

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 32px 20px;
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 0.97rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: linear-gradient(135deg, #0d1a0d 0%, #1b1b2f 100%);
    border: 1px solid var(--led-green);
    box-shadow: var(--glow-green);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin-bottom: 12px;
}

.cta-banner__text {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #111120;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 24px;
}

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

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

.footer-brand__text {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 300px;
}

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

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

.footer-nav__link {
    color: var(--text-muted);
    font-size: 0.97rem;
    transition: color var(--transition);
}

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

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

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

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

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

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

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
    background: linear-gradient(135deg, #1b1b2f 0%, #0d1a0d 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(57, 255, 20, 0.03) 60px, rgba(57, 255, 20, 0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(57, 255, 20, 0.03) 60px, rgba(57, 255, 20, 0.03) 61px);
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin-bottom: 12px;
}

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

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

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb__sep {
    color: var(--border-color);
}

/* ===================== ARTICLE PAGE ===================== */
.article-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-page__header {
    margin-bottom: 40px;
}

.article-page__category {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--led-green);
    margin-bottom: 12px;
    display: block;
}

.article-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 16px;
}

.article-page__meta {
    color: var(--text-muted);
    font-size: 0.97rem;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.article-page__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-page__body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin: 40px 0 16px;
}

.article-page__body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.article-page__body p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.article-page__body ul,
.article-page__body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-page__body ul {
    list-style: none;
    padding-left: 0;
}

.article-page__body ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.article-page__body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--led-green);
}

.article-page__body ol {
    list-style: decimal;
    color: var(--text-muted);
}

.article-page__body ol li {
    margin-bottom: 8px;
}

.article-page__body strong {
    color: var(--text-primary);
}

.article-page__body blockquote {
    border-left: 3px solid var(--led-green);
    padding: 16px 24px;
    margin: 28px 0;
    background: var(--bg-card);
    border-radius: 0 4px 4px 0;
    color: var(--text-muted);
    font-style: italic;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.article-nav__link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

/* ===================== BLOG PAGE ===================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

/* ===================== ABOUT PAGE ===================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--led-green);
    padding: 20px 24px;
    border-radius: 4px;
}

.highlight-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--led-green);
    margin-bottom: 6px;
}

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

/* ===================== HOW TO PLAY PAGE ===================== */
.htp-section {
    margin-bottom: 60px;
}

.htp-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.control-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.control-card__icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
    display: block;
}

.control-card__action {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--led-green);
    margin-bottom: 6px;
}

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

.tip-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 16px 20px;
}

.tip-item__number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    line-height: 1;
    min-width: 40px;
}

.tip-item__text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 2px;
}

.tip-item__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

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

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin-bottom: 16px;
}

.contact-info__text {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.contact-detail__icon {
    font-size: 1.4rem;
}

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

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

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

.form-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

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

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

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

/* ===================== PRIVACY / TERMS ===================== */
.legal-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--led-green);
    text-shadow: var(--glow-green);
    margin-bottom: 8px;
}

.legal-page__date {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 36px 0 14px;
}

.legal-page p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.legal-page ul {
    list-style: none;
    margin-bottom: 16px;
    padding: 0;
}

.legal-page ul li {
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.65;
}

.legal-page ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--led-green);
}

/* ===================== COOKIE CONSENT ===================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-consent p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__description {
        margin: 0 auto 36px;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__image-wrap {
        order: -1;
    }
    .hero__game-preview {
        max-width: 320px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .features__grid {
        grid-template-columns: 1fr;
    }
    .steps__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav__list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(27, 27, 47, 0.98);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        gap: 16px;
    }
    .nav__list.is-open {
        display: flex;
    }
    .nav__toggle {
        display: flex;
    }
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .section {
        padding: 56px 0;
    }
    .contact-form {
        padding: 24px 20px;
    }
    .cta-banner {
        padding: 40px 24px;
    }
    .cookie-consent {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: 12px;
    }
}