/*
 * PROJECT: shiplok-mek
 * DOMAIN: shiplok-mek.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Speed/Racing (Yellow, Red, Lightning)
 * - Effect: Neon Glow
 * - Fonts: Orbitron (heading) + Exo 2 (body)
 * - Buttons: Gradient + 3D Effect
 *
 * Created: January 2026
 */

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

:root {
    --speed-yellow: #f5c400;
    --lightning-yellow: #ffe600;
    --turbo-red: #e8001a;
    --fire-orange: #ff4d00;
    --dark-base: #0d0d0d;
    --dark-surface: #161616;
    --dark-card: #1e1e1e;
    --dark-border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --neon-glow-yellow: 0 0 8px #f5c400, 0 0 20px #f5c400, 0 0 40px #f5c400aa;
    --neon-glow-red: 0 0 8px #e8001a, 0 0 20px #e8001a, 0 0 40px #e8001aaa;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 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);
    font-weight: 400;
    background-color: var(--dark-base);
    color: var(--text-primary);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

.section {
    padding: 5rem 0;
}

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

/* ===== 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: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(22, 22, 22, 0.98);
    border-top: 2px solid var(--speed-yellow);
    padding: 1.2rem 0;
    backdrop-filter: blur(10px);
}

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

.cookie-consent__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.cookie-consent__btn {
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo span {
    color: var(--turbo-red);
    text-shadow: var(--neon-glow-red);
}

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

.nav__link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

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

.nav__link:hover,
.nav__link--active {
    color: var(--speed-yellow);
}

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

.nav__cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--turbo-red), var(--fire-orange));
    color: #fff;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(232, 0, 26, 0.4);
    transition: var(--transition);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 0, 26, 0.6);
    color: #fff;
}

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

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

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-base);
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(245, 196, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(232, 0, 26, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.hero__lightning {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(245, 196, 0, 0.04) 60%, transparent 80%);
    z-index: 0;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 196, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 196, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

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

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--speed-yellow);
    background: rgba(245, 196, 0, 0.1);
    border: 1px solid rgba(245, 196, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero__title {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.hero__desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

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

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

.hero__game-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero__game-frame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    background: var(--dark-card);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(245, 196, 0, 0.15), inset 0 0 30px rgba(0,0,0,0.5);
}

.hero__game-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--turbo-red), var(--speed-yellow), var(--turbo-red));
    z-index: 2;
}

.hero__game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__game-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.2rem;
}

.hero__control-icon {
    font-size: 1.4rem;
}

.hero__control-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-play,
.btn--primary {
    background: linear-gradient(135deg, var(--speed-yellow) 0%, var(--fire-orange) 100%);
    color: #0d0d0d;
    box-shadow: 0 4px 15px rgba(245, 196, 0, 0.4), 0 8px 0 rgba(180, 120, 0, 0.5);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-play:hover,
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 196, 0, 0.6), 0 11px 0 rgba(180, 120, 0, 0.5);
    color: #0d0d0d;
}

.btn-play:active,
.btn--primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 8px rgba(245, 196, 0, 0.4), 0 4px 0 rgba(180, 120, 0, 0.5);
}

.btn--secondary {
    background: transparent;
    color: var(--speed-yellow);
    border: 2px solid var(--speed-yellow);
    box-shadow: 0 0 10px rgba(245, 196, 0, 0.2);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn--secondary:hover {
    background: rgba(245, 196, 0, 0.1);
    box-shadow: var(--neon-glow-yellow);
    color: var(--speed-yellow);
}

.btn--danger {
    background: linear-gradient(135deg, var(--turbo-red), var(--fire-orange));
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 0, 26, 0.4);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn--danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 0, 26, 0.6);
    color: #fff;
}

.btn--lg {
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

/* ===== FEATURES SECTION ===== */
.features__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features__header h2 {
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.features__header h2 span {
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
}

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

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--speed-yellow), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(245, 196, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.how-it-works__header h2 {
    text-transform: uppercase;
    color: var(--text-primary);
}

.how-it-works__header h2 span {
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.how-it-works__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--speed-yellow), var(--turbo-red), var(--speed-yellow));
    opacity: 0.3;
}

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

.step__number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--speed-yellow), var(--fire-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #0d0d0d;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 20px rgba(245, 196, 0, 0.4);
    position: relative;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.step__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== BLOG / ARTICLES ===== */
.blog__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.blog__header h2 {
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.blog__header h2 span {
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
}

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

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

.article-card:hover {
    border-color: rgba(245, 196, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.article-card__thumb {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-border));
    overflow: hidden;
    position: relative;
}

.article-card__thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.article-card__content {
    padding: 1.5rem;
}

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

.article-card__cat {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--speed-yellow);
    background: rgba(245, 196, 0, 0.1);
    border: 1px solid rgba(245, 196, 0, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

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

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

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

.article-card__excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.blog__cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FAQ ===== */
.faq__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq__header h2 {
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.faq__header h2 span {
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
}

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

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

.faq__item.is-open {
    border-color: rgba(245, 196, 0, 0.4);
    box-shadow: 0 0 20px rgba(245, 196, 0, 0.08);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
}

.faq__question-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.faq__question-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 2px solid var(--speed-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--speed-yellow);
    font-size: 1.2rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq__item.is-open .faq__question-icon {
    background: var(--speed-yellow);
    color: #0d0d0d;
    transform: rotate(45deg);
}

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

.faq__answer-inner {
    padding: 0 1.5rem 1.3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__item.is-open .faq__answer {
    max-height: 300px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.1) 0%, rgba(232, 0, 26, 0.1) 100%);
    border-top: 1px solid rgba(245, 196, 0, 0.2);
    border-bottom: 1px solid rgba(245, 196, 0, 0.2);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(245, 196, 0, 0.05) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.cta-banner__title {
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-banner__title span {
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.cta-banner__desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

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

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

.footer__brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--speed-yellow);
    margin-bottom: 1.2rem;
}

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

.footer__link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

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

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

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

.footer__legal-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--dark-surface);
    border-bottom: 2px solid var(--dark-border);
    padding: 6rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(245, 196, 0, 0.06) 0%, transparent 70%);
}

.page-header__inner {
    position: relative;
    z-index: 1;
}

.page-header__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--speed-yellow);
    background: rgba(245, 196, 0, 0.1);
    border: 1px solid rgba(245, 196, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.page-header h1 {
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.page-header h1 span {
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 0;
    font-size: 0.85rem;
}

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

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

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

.breadcrumb__sep {
    color: var(--text-muted);
    font-size: 0.7rem;
}

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

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

.about-intro__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    height: 350px;
    position: relative;
    overflow: hidden;
}

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

.about-intro__icon-big {
    font-size: 8rem;
    opacity: 0.6;
}

.about-intro__content h2 {
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-intro__content h2 span {
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.about-intro__content p {
    font-size: 1rem;
    line-height: 1.8;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(245, 196, 0, 0.3);
    transform: translateY(-5px);
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--speed-yellow);
    margin-bottom: 0.6rem;
}

.value-card__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== HOW TO PLAY PAGE ===== */
.htp__intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.htp__game-frame {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    position: relative;
}

.htp__game-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--turbo-red), var(--speed-yellow), var(--turbo-red));
    z-index: 2;
}

.htp__game-banner {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-border));
    font-size: 6rem;
    position: relative;
}

.htp__controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.htp__control-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}

.htp__control-card:hover {
    border-color: rgba(245, 196, 0, 0.3);
}

.htp__control-icon {
    font-size: 2.5rem;
    min-width: 3rem;
}

.htp__control-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--speed-yellow);
    margin-bottom: 0.5rem;
}

.htp__control-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.htp__tips {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-left: 4px solid var(--speed-yellow);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 3rem;
}

.htp__tips h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--speed-yellow);
    margin-bottom: 1.2rem;
}

.htp__tips-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.htp__tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.htp__tip-num {
    min-width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--speed-yellow), var(--fire-orange));
    color: #0d0d0d;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.article-body h2 {
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.article-body h2 span {
    color: var(--speed-yellow);
}

.article-body h3 {
    color: var(--speed-yellow);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.article-body p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.article-body ul, .article-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.article-body ul li, .article-body ol li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style: disc;
}

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

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-border);
    flex-wrap: wrap;
}

.article-meta__cat {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--speed-yellow);
    background: rgba(245, 196, 0, 0.1);
    border: 1px solid rgba(245, 196, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
}

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

.article-hero {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-border));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.article-sidebar__widget {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-sidebar__title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--speed-yellow);
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 0.8rem;
}

.sidebar-post {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--dark-border);
    transition: var(--transition);
}

.sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    transition: var(--transition);
    line-height: 1.4;
}

.sidebar-post:hover .sidebar-post__title {
    color: var(--speed-yellow);
}

.sidebar-post__date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sidebar-cta {
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.15), rgba(232, 0, 26, 0.1));
    border: 1px solid rgba(245, 196, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.sidebar-cta__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sidebar-cta__desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.contact__info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--speed-yellow);
    margin-bottom: 1rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
}

.contact__item-icon {
    font-size: 1.5rem;
}

.contact__item-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.contact__item-val {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.form {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.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: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    background: var(--dark-base);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--speed-yellow);
    box-shadow: 0 0 10px rgba(245, 196, 0, 0.15);
}

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

.form__btn {
    width: 100%;
}

/* ===== PRIVACY / TERMS ===== */
.legal__content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.legal__section {
    margin-bottom: 2.5rem;
}

.legal__section h2 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--speed-yellow);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--dark-border);
}

.legal__section p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.legal__section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal__section ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.4rem;
    list-style: disc;
}

/* ===== DIVIDERS & UTILITIES ===== */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--speed-yellow), var(--turbo-red));
    border-radius: 2px;
    margin: 1rem auto;
    box-shadow: 0 0 10px rgba(245, 196, 0, 0.4);
}

.text-center { text-align: center; }
.text-yellow { color: var(--speed-yellow); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.lightning-accent {
    display: inline-block;
    color: var(--speed-yellow);
    text-shadow: var(--neon-glow-yellow);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(245, 196, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(245, 196, 0, 0.7); }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        border-bottom: 2px solid var(--speed-yellow);
        padding: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        z-index: 999;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .hero__desc { max-width: 100%; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__game-preview { display: none; }

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

    .how-it-works__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works__steps::before { display: none; }

    .blog__grid,
    .blog-page__grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .about-intro__visual {
        height: 220px;
    }

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

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

    .article-layout {
        grid-template-columns: 1fr;
    }

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

    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .section { padding: 3rem 0; }
    .how-it-works__steps { grid-template-columns: 1fr 1fr; }
    .legal__content { padding: 1.5rem; }
    .form { padding: 1.5rem; }
    .hero__stats { flex-direction: column; gap: 1rem; }
}