/*
 * PROJECT: magshells.com
 * DOMAIN: magshells.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Космический страж (Green, Black, Space)
 * - Effect: Neon Glow
 * - Fonts: Space Grotesk + Inter
 * - Buttons: Neon Border
 *
 * Created: 2026
 */

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

:root {
    --space-black: #050d0a;
    --deep-space: #0a1a12;
    --panel-dark: #0d2218;
    --panel-mid: #112b1e;
    --neon-green: #00ff88;
    --lime-green: #39ff14;
    --forest-green: #1a7a4a;
    --mid-green: #0f5c36;
    --soft-green: #a8ffcb;
    --glow-green: rgba(0, 255, 136, 0.15);
    --glow-green-strong: rgba(0, 255, 136, 0.35);
    --text-primary: #e8fff4;
    --text-secondary: #7ec9a0;
    --text-muted: #4a7a5e;
    --border-glow: rgba(0, 255, 136, 0.3);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--space-black);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep-space); }
::-webkit-scrollbar-thumb { background: var(--forest-green); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-green); }

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

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

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

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

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

ul { list-style: none; }

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

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section--dark {
    background-color: var(--deep-space);
}

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

/* ===== STARS BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(0, 255, 136, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 80%, rgba(0, 255, 136, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 40%, rgba(168, 255, 203, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 10%, rgba(0, 255, 136, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 60%, rgba(0, 255, 136, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 50%, rgba(168, 255, 203, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 35%, rgba(0, 255, 136, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 70%, rgba(0, 255, 136, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 90%, rgba(168, 255, 203, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 65%, rgba(0, 255, 136, 0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 13, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glow);
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--neon-green);
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--soft-green);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

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

.navbar__nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-family: var(--font-heading);
}

.navbar__nav a:hover,
.navbar__nav a.active {
    color: var(--neon-green);
    background: var(--glow-green);
}

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

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neon-green);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4), inset 0 0 15px rgba(0, 255, 136, 0.05);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-play:hover {
    background: var(--neon-green);
    color: var(--space-black);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.7), 0 0 60px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.btn--primary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
}

.btn--primary:hover {
    background: var(--neon-green);
    color: var(--space-black);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

.btn--secondary {
    background: var(--panel-mid);
    color: var(--text-secondary);
    border: 1px solid var(--border-glow);
}

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

.btn--sm {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 30%, rgba(57, 255, 20, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--space-black) 0%, var(--deep-space) 100%);
    z-index: 0;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__text {}

.hero__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-green);
    background: var(--glow-green);
    border: 1px solid var(--border-glow);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__title .highlight {
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

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

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

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glow);
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

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

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

.hero__game-card {
    position: relative;
    background: var(--panel-dark);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(0, 255, 136, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 420px;
}

.hero__game-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    z-index: 1;
}

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

.hero__game-info {
    padding: 1.5rem;
}

.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero__game-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero__game-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: var(--glow-green);
    color: var(--neon-green);
    border: 1px solid var(--border-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-green);
    margin-bottom: 0.75rem;
}

.section__title {
    margin-bottom: 1rem;
}

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

/* ===== CARDS (BEM) ===== */
.card {
    position: relative;
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.12);
    transform: translateY(-4px);
}

.card__body {
    padding: 1.75rem;
}

.card__icon {
    width: 52px;
    height: 52px;
    background: var(--glow-green);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

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

/* ===== ARTICLE CARDS ===== */
.article-card {
    position: relative;
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.12);
    transform: translateY(-4px);
}

.article-card__image {
    width: 100%;
    height: 200px;
    background: var(--panel-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.article-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--panel-mid) 0%, var(--mid-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-card__content {
    padding: 1.5rem;
}

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

.article-card__cat {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-green);
    background: var(--glow-green);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

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

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

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

.article-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-green);
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
}

.article-card__link:hover {
    gap: 0.6rem;
}

/* ===== BLOG GRID ===== */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

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

.step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.step:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--glow-green);
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.step__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step__text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.faq__item {
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.is-open {
    border-color: var(--border-glow);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.08);
}

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

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

.faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--glow-green);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--neon-green);
    transition: var(--transition);
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
    background: var(--neon-green);
    color: var(--space-black);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.is-open .faq__answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 300px;
}

.faq__answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===== STARS ===== */
.stars {
    color: #ffc107;
}

/* ===== OFFER CARD / CARD RULES ===== */
.offer-card {
    position: relative;
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    z-index: 1;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0, 255, 136, 0.07) 0%, transparent 70%),
        var(--deep-space);
    z-index: 0;
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta__title .highlight {
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.cta__text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    background: var(--deep-space);
    border-top: 1px solid var(--border-glow);
    padding: 3rem 0 1.5rem;
}

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

.footer__brand {}

.footer__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer__logo:hover {
    color: var(--soft-green);
}

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

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

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

.footer__links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--neon-green);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(0, 255, 136, 0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

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

/* ===== INNER PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background:
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0, 255, 136, 0.06) 0%, transparent 70%),
        var(--deep-space);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.page-hero__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-green);
    background: var(--glow-green);
    border: 1px solid var(--border-glow);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.page-hero__title {
    margin-bottom: 1rem;
}

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

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

.about__visual {
    background: var(--panel-dark);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.about__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.about__img-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, var(--panel-mid) 0%, var(--mid-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.about__content {}

.about__content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.about__list-item::before {
    content: '▹';
    color: var(--neon-green);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.controls__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.control-card {
    position: relative;
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition);
    text-align: center;
}

.control-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

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

.control-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 0.6rem;
}

.control-card__text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.tip-card {
    position: relative;
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--border-glow);
}

.tip-card__num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--border-glow);
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.tip-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

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

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

.contact__info {}

.contact__info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact__info-icon {
    width: 44px;
    height: 44px;
    background: var(--glow-green);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact__info-value {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    background: var(--space-black);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

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

.form__select {
    cursor: pointer;
    -webkit-appearance: none;
}

/* ===== BLOG PAGE ===== */
.blog__header-extra {
    text-align: right;
    margin-bottom: 1.5rem;
}

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

.article-content {
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.article-content h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--neon-green);
}

.article-content h3 {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin: 1.5rem 0 0.75rem;
}

.article-content p {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.article-content strong {
    color: var(--neon-green);
    font-weight: 600;
}

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

.article-meta__cat {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-green);
    background: var(--glow-green);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

.article-sidebar {}

.sidebar-widget {
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-glow);
}

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

.sidebar-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
}

.sidebar-links a:hover {
    color: var(--neon-green);
    padding-left: 4px;
}

.sidebar-links a::before {
    content: '→';
    color: var(--neon-green);
    opacity: 0.6;
    flex-shrink: 0;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

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

.breadcrumb__current {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    background: var(--panel-dark);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
    color: var(--text-primary);
    padding-left: 1rem;
    border-left: 3px solid var(--neon-green);
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--neon-green);
    margin: 1.25rem 0 0.5rem;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.legal-content a {
    color: var(--neon-green);
    text-decoration: underline;
}

.legal-updated {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--glow-green);
    border: 1px solid var(--border-glow);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

/* ===== GAME FRAME SECTION ===== */
.game-section {
    padding: 4rem 0;
    background: var(--deep-space);
}

.game-frame {
    background: var(--panel-dark);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
}

.game-frame__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--panel-mid);
    border-bottom: 1px solid var(--border-glow);
}

.game-frame__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-frame__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.game-frame__iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
    background: #000;
}

/* ===== UTILITIES ===== */
.text-neon { color: var(--neon-green); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

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

    .hero__visual {
        order: -1;
    }

    .hero__game-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

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

    .footer__brand {
        grid-column: 1 / -1;
    }

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

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

    .navbar__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 13, 10, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-glow);
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar__nav.is-open {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

    .hero__stats {
        gap: 1.5rem;
    }

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

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

    .legal-content,
    .article-content {
        padding: 1.5rem;
    }

    .contact__form {
        padding: 1.5rem;
    }

    .game-frame__iframe {
        height: 400px;
    }

    .hero__game-icon {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-play, .btn {
        width: 100%;
        justify-content: center;
    }

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

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

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