/*
 * PROJECT: superamnesia
 * DOMAIN: superamnesia.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Speed/Arcade - Yellow, Red, Lightning
 * - Effect: Neon Glow
 * - Fonts: Orbitron (heading) + Exo 2 (body)
 * - Buttons: 3D Effect + Neon Border
 *
 * Created: 2026
 */

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

:root {
    --speed-yellow: #ffe600;
    --lightning-yellow: #ffd000;
    --slash-red: #ff1a1a;
    --blade-orange: #ff6a00;
    --dark-bg: #0a0a0a;
    --dark-surface: #111111;
    --dark-card: #181818;
    --dark-border: #2a2a2a;
    --text-primary: #f0f0f0;
    --text-secondary: #aaaaaa;
    --text-muted: #666666;
    --ninja-green: #39ff14;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --glow-yellow: 0 0 8px var(--speed-yellow), 0 0 20px var(--speed-yellow), 0 0 40px var(--lightning-yellow);
    --glow-red: 0 0 8px var(--slash-red), 0 0 20px var(--slash-red);
    --glow-green: 0 0 8px var(--ninja-green), 0 0 20px var(--ninja-green);
    --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;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden !important;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

/* ===== MANDATORY RULES ===== */
.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-card,
.offer-card,
.card {
    position: relative;
}

.stars {
    color: #ffc107;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    max-width: 400px;
    background: var(--dark-card);
    border: 1px solid var(--speed-yellow);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 230, 0, 0.15);
    padding: 1.5rem;
    animation: slideUp 0.5s ease;
}

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

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

.cookie-consent__text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.cookie-consent__text a {
    color: var(--speed-yellow);
    border-bottom: 1px solid rgba(255, 230, 0, 0.3);
}

.cookie-consent__text a:hover {
    border-bottom-color: var(--speed-yellow);
}

/* ===== LIGHTNING BACKGROUND PATTERN ===== */
.lightning-bg {
    background-color: var(--dark-bg);
    background-image:
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 80px,
            rgba(255, 230, 0, 0.03) 80px,
            rgba(255, 230, 0, 0.03) 82px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent,
            transparent 80px,
            rgba(255, 26, 26, 0.03) 80px,
            rgba(255, 26, 26, 0.03) 82px
        );
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--speed-yellow);
    backdrop-filter: blur(10px);
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    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.4rem;
    color: var(--speed-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--glow-yellow);
    transition: var(--transition);
}

.logo:hover {
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px var(--speed-yellow);
}

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

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav__link:hover,
.nav__link--active {
    color: var(--speed-yellow);
    border-bottom-color: var(--speed-yellow);
    text-shadow: var(--glow-yellow);
}

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

.nav__toggle-line {
    width: 26px;
    height: 2px;
    background: var(--speed-yellow);
    transition: var(--transition);
}

.nav__toggle.is-active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.is-active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.is-active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 20px) 1.5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--slash-red);
    text-shadow: var(--glow-red);
    margin-bottom: 1rem;
    display: block;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero__title--highlight {
    color: var(--speed-yellow);
    text-shadow: var(--glow-yellow);
    display: block;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
}

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

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--speed-yellow);
    text-shadow: var(--glow-yellow);
    display: block;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero__game-frame {
    position: relative;
    border: 2px solid var(--speed-yellow);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--glow-yellow), inset 0 0 30px rgba(255, 230, 0, 0.05);
}

.hero__game-frame::before {
    content: 'LIVE PREVIEW';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--speed-yellow);
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    padding: 0.35rem;
    z-index: 2;
}

.hero__game-icon {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    padding-top: 28px;
}

.hero__glow-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 230, 0, 0.15);
    animation: pulse-ring 2.5s ease-in-out infinite;
    pointer-events: none;
}

.hero__glow-ring--2 {
    width: 480px;
    height: 480px;
    border-color: rgba(255, 26, 26, 0.1);
    animation-delay: 0.8s;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 4px;
    padding: 0.85rem 2rem;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 4px;
    padding: 1rem 2.4rem;
    background: var(--speed-yellow);
    color: var(--dark-bg);
    border: none;
    box-shadow: 0 6px 0 #b3a000, 0 8px 20px rgba(255, 230, 0, 0.4);
    position: relative;
    top: 0;
}

.btn-play:hover {
    top: 3px;
    box-shadow: 0 3px 0 #b3a000, 0 5px 15px rgba(255, 230, 0, 0.5);
    background: #fff500;
}

.btn-play:active {
    top: 6px;
    box-shadow: 0 0 0 #b3a000;
}

.btn--outline {
    background: transparent;
    color: var(--speed-yellow);
    border: 2px solid var(--speed-yellow);
    box-shadow: inset 0 0 0 0 var(--speed-yellow);
}

.btn--outline:hover {
    box-shadow: inset 0 0 0 2px var(--speed-yellow), var(--glow-yellow);
    color: var(--dark-bg);
    background: var(--speed-yellow);
}

.btn--red {
    background: var(--slash-red);
    color: #fff;
    box-shadow: 0 6px 0 #990000, 0 8px 20px rgba(255, 26, 26, 0.4);
    position: relative;
    top: 0;
}

.btn--red:hover {
    top: 3px;
    box-shadow: 0 3px 0 #990000, 0 5px 15px rgba(255, 26, 26, 0.5);
}

/* ===== SECTION SHARED ===== */
.section {
    padding: 5rem 1.5rem;
}

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

.section--darker {
    background: var(--dark-bg);
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--slash-red);
    text-shadow: var(--glow-red);
    margin-bottom: 0.75rem;
    display: block;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section__title--yellow {
    color: var(--speed-yellow);
    text-shadow: var(--glow-yellow);
}

.section__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    font-weight: 300;
}

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

.feature-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 2rem 1.75rem;
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--speed-yellow);
    box-shadow: var(--glow-yellow);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: var(--speed-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 230, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

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

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--speed-yellow);
    margin-bottom: 0.75rem;
}

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

/* ===== HOW TO PLAY PREVIEW ===== */
.steps__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: step-counter;
}

.step-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    transition: var(--transition);
    counter-increment: step-counter;
}

.step-card::before {
    content: counter(step-counter, decimal-leading-zero);
    position: absolute;
    top: -1px;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 230, 0, 0.08);
    line-height: 1;
}

.step-card:hover {
    border-color: rgba(255, 230, 0, 0.4);
    transform: translateY(-4px);
}

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

.step-card__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--speed-yellow);
    margin-bottom: 0.6rem;
}

.step-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 300;
}

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

.article-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--speed-yellow);
    box-shadow: 0 8px 30px rgba(255, 230, 0, 0.1);
    transform: translateY(-4px);
}

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

.article-card__banner {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    border-bottom: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.article-card__banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,230,0,0.05) 0%, transparent 60%);
}

.article-card__content {
    padding: 1.5rem;
}

.article-card__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--speed-yellow);
    border: 1px solid rgba(255,230,0,0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

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

.article-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.article-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

.faq__item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.faq__item.is-open {
    border-color: var(--speed-yellow);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--speed-yellow);
}

.faq__item.is-open .faq__question {
    color: var(--speed-yellow);
}

.faq__icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--speed-yellow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq__answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.75;
    border-top: 1px solid var(--dark-border);
    padding-top: 1.25rem;
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #0d0d00 0%, #0a0a0a 50%, #0d0000 100%);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255,230,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--speed-yellow);
    text-shadow: var(--glow-yellow);
    margin-bottom: 1rem;
}

.cta-banner__text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 120px 1.5rem 4rem;
    background: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255,230,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero__inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--slash-red);
    text-shadow: var(--glow-red);
    margin-bottom: 0.75rem;
    display: block;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--speed-yellow);
    text-shadow: var(--glow-yellow);
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 1rem 1.5rem;
    background: var(--dark-bg);
    border-bottom: 1px solid var(--dark-border);
}

.breadcrumb__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb__item {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb__item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--speed-yellow);
}

.breadcrumb__link {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumb__link:hover {
    color: var(--speed-yellow);
}

.breadcrumb__item--current {
    color: var(--speed-yellow);
}

/* ===== PROSE CONTENT (articles, about, etc) ===== */
.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--speed-yellow);
    text-shadow: 0 0 10px rgba(255,230,0,0.3);
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,230,0,0.2);
}

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

.prose p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.prose ol {
    list-style: decimal;
}

.prose li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

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

.prose a {
    color: var(--speed-yellow);
    border-bottom: 1px solid rgba(255,230,0,0.3);
}

.prose a:hover {
    border-bottom-color: var(--speed-yellow);
    text-shadow: var(--glow-yellow);
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 4rem 1.5rem;
}

.about-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-visual {
    position: relative;
}

.about-visual__img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid var(--speed-yellow);
    box-shadow: var(--glow-yellow);
}

.about-visual__badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--slash-red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    box-shadow: var(--glow-red);
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.value-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 1.25rem;
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(255,230,0,0.4);
}

.value-card__icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    display: block;
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--speed-yellow);
    margin-bottom: 0.4rem;
}

.value-card__text {
    font-size: 0.825rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ===== HOW TO PLAY PAGE ===== */
.htp-section {
    padding: 4rem 1.5rem;
}

.htp-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.htp-block {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.htp-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--speed-yellow), var(--slash-red));
}

.htp-block__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--speed-yellow);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.htp-block__icon {
    font-size: 1.4rem;
}

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

.control-item {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.control-item:hover {
    border-color: rgba(255,230,0,0.3);
}

.control-item__key {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.control-item__label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--speed-yellow);
    margin-bottom: 0.35rem;
}

.control-item__desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

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

.tip-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-item__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--speed-yellow);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    box-shadow: var(--glow-yellow);
}

.tip-item__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    padding-top: 0.35rem;
    line-height: 1.7;
}

/* ===== BLOG PAGE ===== */
.blog-section {
    padding: 4rem 1.5rem;
}

.blog-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 1.5rem;
}

.contact-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--speed-yellow), var(--slash-red));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--speed-yellow);
    box-shadow: 0 0 0 2px rgba(255, 230, 0, 0.15);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.contact-info-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(255,230,0,0.3);
}

.contact-info-card__icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    display: block;
}

.contact-info-card__title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--speed-yellow);
    margin-bottom: 0.35rem;
}

.contact-info-card__text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
    padding: 4rem 1.5rem;
}

.article-page__inner {
    max-width: 860px;
    margin: 0 auto;
}

.article-page__header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dark-border);
}

.article-page__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--speed-yellow);
    border: 1px solid rgba(255,230,0,0.3);
    padding: 0.2rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.article-page__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-page__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-page__meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-nav {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    flex-wrap: wrap;
}

.article-nav__link {
    flex: 1;
    min-width: 200px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
    display: block;
}

.article-nav__link:hover {
    border-color: var(--speed-yellow);
    transform: translateY(-2px);
}

.article-nav__dir {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.article-nav__title {
    font-size: 0.875rem;
    color: var(--speed-yellow);
    font-weight: 600;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 4rem 1.5rem;
}

.legal-section__inner {
    max-width: 860px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 3.5rem 1.5rem 2rem;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--dark-border);
}

.footer__brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--speed-yellow);
    text-shadow: var(--glow-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.footer__brand-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--speed-yellow);
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__link {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--speed-yellow);
    padding-left: 4px;
}

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

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer__legal-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-yellow { color: var(--speed-yellow); }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.slash-divider {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--speed-yellow);
    font-size: 1.4rem;
    margin: 0 0.25rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero__description {
        margin: 0 auto 2.5rem;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features__grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        border-bottom: 2px solid var(--speed-yellow);
        transform: translateY(-110%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    .nav__list.is-open {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero__stat-number {
        font-size: 1.4rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

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

    .htp-block {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3.5rem 1rem;
    }

    .btn-play, .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.75rem;
    }

    .hero__stats {
        gap: 1.25rem;
    }

    .article-card__banner {
        height: 120px;
    }
}