/*
 * PROJECT: shipalesrot
 * DOMAIN: shipalesrot.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@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* =====================
   CSS CUSTOM PROPERTIES
   ===================== */
:root {
  --space-black: #080c10;
  --space-dark: #0d1117;
  --space-card: #111820;
  --space-border: #1a2535;
  --neon-green: #00ff88;
  --neon-green-dim: #00cc6a;
  --neon-green-glow: rgba(0, 255, 136, 0.25);
  --star-white: #e8f0fe;
  --nebula-teal: #00d4aa;
  --cosmic-blue: #0a84ff;
  --accent-lime: #aaff00;
  --text-primary: #e8f0fe;
  --text-secondary: #7a8fa6;
  --text-muted: #4a5e70;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-neon: 0 0 12px var(--neon-green-glow), 0 0 30px rgba(0,255,136,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--star-white);
}

/* =====================
   UTILITY
   ===================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

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

.stars { color: #ffc107; }

/* =====================
   BUTTONS
   ===================== */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--neon-green);
  background: transparent;
  color: var(--neon-green);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 0 10px var(--neon-green-glow), inset 0 0 10px rgba(0,255,136,0.05);
}

.btn-play::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-play:hover::before { transform: scaleX(1); }

.btn-play:hover {
  color: var(--space-black);
  box-shadow: 0 0 20px var(--neon-green-glow), 0 0 40px rgba(0,255,136,0.2);
}

.btn-play span, .btn-play { z-index: 1; }

.btn-play > * { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--space-border);
  background: var(--space-card);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green-glow);
}

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

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon-green);
  letter-spacing: -0.02em;
  text-shadow: 0 0 16px var(--neon-green-glow);
}

.logo span { color: var(--star-white); }

.site-nav { display: flex; align-items: center; gap: 8px; }

.site-nav__link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--neon-green);
  background: rgba(0,255,136,0.07);
}

.site-header__cta { margin-left: 12px; }

.site-header__cta .btn-play { padding: 9px 22px; font-size: 0.85rem; }

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

.hamburger__line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,255,136,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(10,132,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 85% 15%, rgba(170,255,0,0.04) 0%, transparent 50%);
}

.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 40%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 85%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.4) 0%, transparent 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero__title-accent {
  color: var(--neon-green);
  text-shadow: 0 0 30px rgba(0,255,136,0.4);
}

.hero__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--neon-green);
}

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

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

.hero__game-card {
  position: relative;
  width: 340px;
  height: 360px;
  border-radius: var(--radius-lg);
  background: var(--space-card);
  border: 1px solid var(--space-border);
  overflow: hidden;
  box-shadow: var(--shadow-neon), var(--shadow-card);
}

.hero__game-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,255,136,0.3), transparent 50%, rgba(0,212,170,0.1));
  z-index: 0;
  pointer-events: none;
}

.hero__game-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0d1a12 0%, #0a1520 100%);
  z-index: 1;
}

.hero__game-img img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0,255,136,0.4));
}

.hero__game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(0deg, rgba(8,12,16,0.95) 0%, transparent 100%);
}

.hero__game-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--star-white);
  margin-bottom: 4px;
}

.hero__game-tag {
  font-size: 0.75rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__floating {
  position: absolute;
  z-index: 3;
}

.hero__floating--tl {
  top: -12px;
  left: -12px;
}

.hero__floating--br {
  bottom: 16px;
  right: -16px;
}

.floating-badge {
  background: rgba(8,12,16,0.9);
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.floating-badge__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-badge__value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-green);
}

/* =====================
   SECTION WRAPPERS
   ===================== */
.section {
  padding: 96px 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

/* =====================
   FEATURE CARDS
   ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

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

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

.article-card:hover {
  border-color: rgba(0,255,136,0.25);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}

.article-card__image {
  height: 180px;
  background: linear-gradient(135deg, #0d1a12 0%, #0a1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--space-border);
  overflow: hidden;
  position: relative;
}

.article-card__image-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,255,136,0.08) 0%, transparent 60%);
}

.article-card__content {
  padding: 24px;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.article-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-green);
  background: rgba(0,255,136,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

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

.article-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

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

/* =====================
   HOW TO PLAY STEPS
   ===================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--space-card);
  border: 1px solid var(--space-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(0,255,136,0.3);
  box-shadow: var(--shadow-neon);
}

.step__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green-glow);
}

.step__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =====================
   FAQ
   ===================== */
.faq { max-width: 800px; margin: 0 auto; }

.faq__item {
  border-bottom: 1px solid var(--space-border);
  overflow: hidden;
}

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

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

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

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

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

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

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

/* =====================
   OFFER / INFO CARDS
   ===================== */
.offer-card {
  position: relative;
  background: var(--space-card);
  border: 1px solid var(--space-border);
  border-radius: var(--radius-md);
}

.card {
  position: relative;
  background: var(--space-card);
  border: 1px solid var(--space-border);
  border-radius: var(--radius-md);
}

/* =====================
   GAME PREVIEW SECTION
   ===================== */
.game-preview {
  text-align: center;
}

.game-preview__frame {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,255,136,0.2);
  box-shadow: var(--shadow-neon), var(--shadow-card);
  background: var(--space-card);
  aspect-ratio: 16/9;
}

.game-preview__placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(160deg, #0d1a12 0%, #0a1520 100%);
}

.game-preview__icon {
  font-size: 5rem;
  filter: drop-shadow(0 0 20px rgba(0,255,136,0.4));
}

.game-preview__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

/* =====================
   CONTROLS BOX
   ===================== */
.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.control-item {
  position: relative;
  background: var(--space-card);
  border: 1px solid var(--space-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.control-item:hover {
  border-color: rgba(0,255,136,0.3);
  box-shadow: var(--shadow-neon);
}

.control-item__key {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 12px;
}

.control-item__label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

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

/* =====================
   TIPS / STRATEGY
   ===================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tip-card {
  position: relative;
  background: var(--space-card);
  border: 1px solid var(--space-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: var(--transition);
}

.tip-card:hover {
  border-color: rgba(0,255,136,0.25);
  box-shadow: var(--shadow-neon);
}

.tip-card__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tip-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tip-card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-hero {
  padding: 80px 0;
  text-align: center;
}

.about-content {
  max-width: 760px;
  margin: 0 auto;
}

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

.about-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  position: relative;
  background: var(--space-card);
  border: 1px solid var(--space-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}

.team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,255,136,0.1);
  border: 2px solid rgba(0,255,136,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

.team-card__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =====================
   CONTACT FORM
   ===================== */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  background: var(--space-card);
  border: 1px solid var(--space-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--space-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}

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

.form-submit {
  width: 100%;
  display: flex;
  justify-content: center;
}

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

/* =====================
   BLOG / ARTICLE PAGE
   ===================== */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--space-border);
}

.page-hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-green);
  background: rgba(0,255,136,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.page-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.article-body {
  max-width: 760px;
  margin: 60px auto;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--star-white);
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.8rem;
  color: var(--star-white);
}

.article-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.3rem;
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  list-style: initial;
  margin: 0 0 1.3rem 1.5rem;
  color: var(--text-secondary);
}

.article-body ul li,
.article-body ol li {
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
  line-height: 1.7;
}

.article-body strong {
  color: var(--star-white);
  font-weight: 600;
}

.article-body a {
  color: var(--neon-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-callout {
  background: rgba(0,255,136,0.06);
  border-left: 3px solid var(--neon-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 2rem 0;
}

.article-callout p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* =====================
   PRIVACY / TERMS
   ===================== */
.legal-content {
  max-width: 800px;
  margin: 60px auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

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

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--space-dark);
  border-top: 1px solid var(--space-border);
  padding: 64px 0 32px;
}

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

.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 14px var(--neon-green-glow);
  margin-bottom: 14px;
}

.footer-brand__logo span { color: var(--star-white); }

.footer-brand__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

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

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

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

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

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

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

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

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

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

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 16px 0;
}

.breadcrumb a { color: var(--neon-green); transition: var(--transition); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--text-muted); }

/* =====================
   NEON GLOW ANIMATION
   ===================== */
@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0,255,136,0.2), 0 0 20px rgba(0,255,136,0.1); }
  50% { box-shadow: 0 0 20px rgba(0,255,136,0.4), 0 0 40px rgba(0,255,136,0.2); }
}

.neon-pulse { animation: neon-pulse 3s ease infinite; }

/* =====================
   MISC
   ===================== */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), transparent);
  border-radius: 2px;
  margin: 16px auto 0;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0,255,136,0.08);
  color: var(--neon-green);
  border: 1px solid rgba(0,255,136,0.2);
}

/* =====================
   COOKIE CONSENT
   ===================== */
#cookie-consent {
  animation: slideUp 0.4s ease;
}

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

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { gap: 40px; }
  .hero__game-card { width: 300px; height: 320px; }
}

@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__game-card { width: 280px; height: 300px; }
  .hero__stats { gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .site-nav { display: none; }
  .site-nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--space-dark);
    border-bottom: 1px solid var(--space-border);
    padding: 16px;
    z-index: 99;
  }
  .hamburger { display: flex; }
  .contact-form { padding: 32px 24px; }
  .site-header__cta { display: none; }
  .page-hero__meta { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .controls-grid { grid-template-columns: 1fr; }
}