/*
 * PROJECT: motedartkoler.com
 * DOMAIN: motedartkoler.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Технологичный / Neon (неон #00ffaa, темный #0d1117)
 * - Effect: Neon Glow
 * - Fonts: JetBrains Mono (heading) + Inter (body)
 * - Buttons: Neon Border
 *
 * Created: 2026-01-01
 */

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

/* ===== CSS VARIABLES ===== */
:root {
    --neon-green: #00ffaa;
    --neon-blue: #00d4ff;
    --neon-purple: #bf00ff;
    --dark-bg: #0d1117;
    --dark-card: #161b22;
    --dark-border: #21262d;
    --dark-hover: #1c2128;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #484f58;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Inter', sans-serif;
    --glow-sm: 0 0 8px var(--neon-green), 0 0 16px rgba(0, 255, 170, 0.3);
    --glow-md: 0 0 12px var(--neon-green), 0 0 24px rgba(0, 255, 170, 0.4), 0 0 48px rgba(0, 255, 170, 0.15);
    --glow-blue: 0 0 8px var(--neon-blue), 0 0 20px rgba(0, 212, 255, 0.3);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--neon-blue);
}

ul, ol {
    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;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-mono);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

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

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

p:last-child {
    margin-bottom: 0;
}

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

.section {
    padding: 5rem 0;
}

.section--sm {
    padding: 3rem 0;
}

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

.section__title {
    font-family: var(--font-mono);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.section__subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--neon-green);
    text-shadow: var(--glow-sm);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: text-shadow var(--transition);
}

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

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

.nav__link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.nav__link:hover,
.nav__link--active {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}

.nav__play-btn {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 0.4rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--glow-sm);
    transition: background var(--transition), box-shadow var(--transition);
    letter-spacing: 0.5px;
}

.nav__play-btn:hover {
    background: rgba(0, 255, 170, 0.1);
    box-shadow: var(--glow-md);
    color: var(--neon-green);
}

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

.hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neon-green);
    transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0, 255, 170, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero__badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 170, 0.4);
    background: rgba(0, 255, 170, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero__title {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__title .highlight {
    color: var(--neon-green);
    text-shadow: var(--glow-md);
}

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

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

.hero__meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero__meta-item {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero__meta-item span {
    color: var(--neon-green);
    font-weight: 600;
}

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

.hero__game-preview {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--dark-border);
    box-shadow: 0 0 40px rgba(0, 255, 170, 0.1), 0 0 80px rgba(0, 255, 170, 0.05);
}

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

.hero__preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 17, 23, 0.45);
}

.hero__play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 255, 170, 0.12);
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--glow-md);
    transition: transform var(--transition), background var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.hero__play-icon:hover {
    background: rgba(0, 255, 170, 0.2);
    transform: scale(1.08);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
    text-decoration: none;
    background: var(--neon-green);
    color: var(--dark-bg);
    border: none;
    box-shadow: var(--glow-md);
}

.btn-play:hover {
    background: #00e89a;
    box-shadow: 0 0 20px var(--neon-green), 0 0 40px rgba(0, 255, 170, 0.5);
    transform: translateY(-2px);
    color: var(--dark-bg);
}

.btn--primary {
    background: var(--neon-green);
    color: var(--dark-bg);
    box-shadow: var(--glow-sm);
}

.btn--primary:hover {
    background: #00e89a;
    box-shadow: var(--glow-md);
    transform: translateY(-2px);
    color: var(--dark-bg);
}

.btn--outline {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    box-shadow: var(--glow-sm);
}

.btn--outline:hover {
    background: rgba(0, 255, 170, 0.08);
    box-shadow: var(--glow-md);
    color: var(--neon-green);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--dark-border);
}

.btn--ghost:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
}

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

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
    border-color: rgba(0, 255, 170, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.08);
    transform: translateY(-3px);
}

.feature-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card__title {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

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

/* ===== GAME SECTION ===== */
.game-section {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 5rem 0;
}

.game-embed {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.game-embed__window {
    position: relative;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 255, 170, 0.08);
}

.game-embed__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--dark-border);
}

.game-embed__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.game-embed__dot--red { background: #ff5f57; }
.game-embed__dot--yellow { background: #febc2e; }
.game-embed__dot--green { background: #28c840; }

.game-embed__title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.game-embed__frame {
    position: relative;
    aspect-ratio: 4/3;
}

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

.game-embed__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== HOW TO PLAY QUICK ===== */
.quick-guide {
    counter-reset: steps;
}

.quick-guide__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-guide__step {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color var(--transition);
}

.quick-guide__step:hover {
    border-color: rgba(0, 255, 170, 0.4);
}

.quick-guide__number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 255, 170, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.quick-guide__step-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

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

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

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

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

.article-card__img {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.article-card__img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--dark-card));
}

.article-card__content {
    padding: 1.5rem;
}

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

.article-card__category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-green);
    background: rgba(0, 255, 170, 0.08);
    border: 1px solid rgba(0, 255, 170, 0.2);
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.article-card__title {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    transition: color var(--transition);
}

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

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

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

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

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

.faq__item.is-open {
    border-color: rgba(0, 255, 170, 0.35);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-primary);
    user-select: none;
    transition: color var(--transition);
}

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

.faq__chevron {
    font-size: 0.7rem;
    color: var(--neon-green);
    transition: transform var(--transition);
    flex-shrink: 0;
    font-style: normal;
}

.faq__item.is-open .faq__chevron {
    transform: rotate(180deg);
}

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

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

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 2.5rem 0;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat__value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: var(--glow-sm);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

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

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

.footer__brand .logo {
    display: block;
    margin-bottom: 1rem;
}

.footer__brand-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 260px;
}

.footer__heading {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

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

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

.footer__link:hover {
    color: var(--neon-green);
}

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

.footer__copy {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
}

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

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

.footer__legal-link:hover {
    color: var(--neon-green);
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--dark-border);
    background: linear-gradient(180deg, rgba(0, 255, 170, 0.03) 0%, transparent 100%);
}

.page-hero__badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 170, 0.3);
    background: rgba(0, 255, 170, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero__title {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero__title .accent {
    color: var(--neon-green);
    text-shadow: var(--glow-sm);
}

.page-hero__desc {
    max-width: 620px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

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

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

.breadcrumb__link:hover {
    color: var(--neon-green);
}

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

/* ===== CONTENT BODY ===== */
.content-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem 0;
}

.content-body h2 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--dark-border);
}

.content-body h3 {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.content-body ul,
.content-body ol {
    list-style: none;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.content-body ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.content-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 0.8rem;
}

.content-body ol {
    counter-reset: list;
    list-style: none;
}

.content-body ol li {
    counter-increment: list;
    position: relative;
    padding-left: 2.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.content-body ol li::before {
    content: counter(list, decimal-leading-zero);
    position: absolute;
    left: 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-green);
    font-weight: 600;
}

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

.content-body a {
    color: var(--neon-green);
    border-bottom: 1px solid rgba(0, 255, 170, 0.3);
    transition: border-color var(--transition);
}

.content-body a:hover {
    border-bottom-color: var(--neon-green);
}

/* ===== TIP BOX ===== */
.tip-box {
    background: rgba(0, 255, 170, 0.05);
    border: 1px solid rgba(0, 255, 170, 0.25);
    border-left: 3px solid var(--neon-green);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.tip-box__label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tip-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== HOW TO PLAY PAGE ===== */
.htp-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: border-color var(--transition);
}

.htp-step:hover {
    border-color: rgba(0, 255, 170, 0.3);
}

.htp-step__num {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 255, 170, 0.2);
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.htp-step__title {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.htp-step__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.control-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

.control-item__key {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--neon-green);
    background: rgba(0, 255, 170, 0.08);
    border: 1px solid rgba(0, 255, 170, 0.25);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius);
    min-width: 50px;
    text-align: center;
    font-weight: 700;
}

.control-item__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== ABOUT PAGE ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.team-card:hover {
    border-color: rgba(0, 255, 170, 0.35);
}

.team-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 255, 170, 0.08);
    border: 2px solid rgba(0, 255, 170, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.team-card__name {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-green);
    margin-bottom: 0.75rem;
}

.team-card__bio {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== CONTACT PAGE ===== */
.contact-form {
    max-width: 640px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

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

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: rgba(0, 255, 170, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 255, 170, 0.08);
}

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

/* ===== BLOG PAGE ===== */
.blog-hero {
    padding: 3rem 0;
    border-bottom: 1px solid var(--dark-border);
}

.blog-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.blog-filter__btn {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--dark-border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.blog-filter__btn:hover,
.blog-filter__btn.is-active {
    border-color: var(--neon-green);
    color: var(--neon-green);
    background: rgba(0, 255, 170, 0.06);
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--dark-border);
}

.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-hero__cat {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-green);
    background: rgba(0, 255, 170, 0.08);
    border: 1px solid rgba(0, 255, 170, 0.2);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-hero__date {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.article-hero__title {
    font-family: var(--font-mono);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-hero__lead {
    max-width: 700px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.article-share__label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.article-share__btn {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-secondary);
    border: 1px solid var(--dark-border);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    background: none;
}

.article-share__btn:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
    padding: 4rem 0;
    border-top: 1px solid var(--dark-border);
    margin-top: 2rem;
}

/* ===== PRIVACY / TERMS ===== */
.legal-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem 0;
}

.legal-page h2 {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--dark-border);
}

.legal-page p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 0;
}

.legal-page ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.legal-page ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 0.75rem;
}

/* ===== TERMINAL DECORATION ===== */
.terminal-line {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.terminal-line .prompt {
    color: var(--neon-green);
    margin-right: 0.5rem;
}

/* ===== GLOW DIVIDER ===== */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    opacity: 0.3;
    margin: 0;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark-card);
    border-bottom: 1px solid var(--dark-border);
    padding: 1.5rem;
    z-index: 99;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav__link {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dark-border);
    transition: color var(--transition);
}

.mobile-nav__link:hover {
    color: var(--neon-green);
}

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

    .quick-guide__steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero__actions {
        justify-content: center;
    }

    .hero__meta {
        justify-content: center;
    }

    .hero__desc {
        margin: 0 auto 2.5rem;
    }

    .hero__visual {
        order: -1;
    }

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

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

    .quick-guide__steps {
        grid-template-columns: 1fr;
    }

    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .htp-step {
        grid-template-columns: 1fr;
    }

    .htp-step__num {
        font-size: 1.5rem;
    }
}

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

    .stats-bar__grid {
        grid-template-columns: 1fr 1fr;
    }

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