/*
 * PROJECT: zippopark
 * DOMAIN: zippopark.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Женщина-воин (Red, Gold, Deep Blue)
 * - Effect: Neon Glow + Pattern Backgrounds
 * - Fonts: Cormorant Garamond (headings) + Lato (body)
 * - Buttons: Gradient + 3D Effect
 *
 * Created: January 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --warrior-red: #c0392b;
  --warrior-red-dark: #922b21;
  --warrior-red-light: #e74c3c;
  --blade-gold: #d4a017;
  --blade-gold-light: #f0c040;
  --blade-gold-pale: #f5d87a;
  --dojo-blue: #1a2a4a;
  --dojo-blue-dark: #0d1829;
  --dojo-blue-mid: #22395e;
  --steel-silver: #bdc3c7;
  --shadow-dark: #0a0f1e;
  --parchment: #fdf6e3;
  --white: #ffffff;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;

  --transition: 0.3s ease;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 18px rgba(212,160,23,0.5), 0 0 36px rgba(212,160,23,0.2);
  --shadow-red: 0 0 18px rgba(192,57,43,0.6), 0 0 36px rgba(192,57,43,0.2);
}

/* ========================
   RESET & BASE
   ======================== */
*, *::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);
  font-weight: 400;
  color: var(--steel-silver);
  background-color: var(--dojo-blue-dark);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  line-height: 1.7;
  min-height: 100vh;
}

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

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

ul, ol {
  list-style: none;
}

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

p {
  margin-bottom: 1rem;
}

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

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

.stars {
  color: #ffc107;
}

/* ========================
   COOKIE CONSENT
   ======================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--dojo-blue) 0%, var(--dojo-blue-dark) 100%);
  border-top: 2px solid var(--blade-gold);
  padding: 20px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}

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

.cookie-consent__text {
  font-size: 0.88rem;
  color: var(--steel-silver);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-consent__text a {
  color: var(--blade-gold-light);
  text-decoration: underline;
}

/* ========================
   CONTAINER
   ======================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================
   HEADER
   ======================== */
.site-header {
  background: linear-gradient(135deg, var(--dojo-blue-dark) 0%, var(--dojo-blue) 100%);
  border-bottom: 2px solid var(--blade-gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(212,160,23,0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--blade-gold-light);
  letter-spacing: 0.04em;
  text-shadow: var(--shadow-gold);
  transition: color var(--transition);
}

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

.site-nav__list {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-silver);
  transition: color var(--transition);
  position: relative;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blade-gold);
  transition: width var(--transition);
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--blade-gold-light);
}

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

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

.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blade-gold-light);
  transition: all var(--transition);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 34px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--warrior-red) 0%, var(--warrior-red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 0 var(--warrior-red-dark), var(--shadow-red);
  transform: translateY(0);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--warrior-red-light) 0%, var(--warrior-red) 100%);
  box-shadow: 0 6px 0 var(--warrior-red-dark), var(--shadow-red);
  transform: translateY(-2px);
}

.btn--primary:active {
  box-shadow: 0 2px 0 var(--warrior-red-dark);
  transform: translateY(2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--blade-gold) 0%, #a07010 100%);
  color: var(--dojo-blue-dark);
  box-shadow: 0 4px 0 #7a5010, var(--shadow-gold);
  transform: translateY(0);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--blade-gold-light) 0%, var(--blade-gold) 100%);
  box-shadow: 0 6px 0 #7a5010, var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--blade-gold-light);
  border: 2px solid var(--blade-gold);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--blade-gold);
  color: var(--dojo-blue-dark);
  box-shadow: var(--shadow-gold);
}

.btn-play {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--warrior-red) 0%, var(--warrior-red-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 0 var(--warrior-red-dark), var(--shadow-red);
  transform: translateY(0);
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-play:hover {
  background: linear-gradient(135deg, var(--warrior-red-light) 0%, var(--warrior-red) 100%);
  box-shadow: 0 8px 0 var(--warrior-red-dark), 0 0 30px rgba(192,57,43,0.8);
  transform: translateY(-3px);
}

.btn-play:active {
  box-shadow: 0 2px 0 var(--warrior-red-dark);
  transform: translateY(3px);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  padding: 100px 20px 80px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--dojo-blue-dark) 0%, var(--dojo-blue) 60%, var(--dojo-blue-dark) 100%);
    color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,160,23,0.15) 0%, transparent 70%),
    radial-gradient(ellipse at 0% 100%, rgba(192,57,43,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 80%, rgba(192,57,43,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 3px solid var(--blade-gold);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
}

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

.hero__kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blade-gold);
  margin-bottom: 12px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  position: relative;
}

.hero__title span {
  color: var(--blade-gold-light);
  text-shadow: var(--shadow-gold);
}

.hero__description {
  font-size: 1.15rem;
  color: var(--steel-silver);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blade-gold-light);
  display: block;
}

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

/* ========================
   SECTION HEADERS
   ======================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blade-gold);
  margin-bottom: 10px;
  display: block;
}

.section-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--blade-gold-light);
  margin-bottom: 14px;
}

.section-header__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--warrior-red), var(--blade-gold));
  margin: 0 auto;
  border-radius: 2px;
}

.section-header__desc {
  font-size: 1rem;
  color: var(--steel-silver);
  max-width: 560px;
  margin: 16px auto 0;
}

/* ========================
   FEATURES SECTION
   ======================== */
.features {
  padding: 80px 0;
}

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

.feature-card {
  background: rgba(26,42,74,0.6);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warrior-red), var(--blade-gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(212,160,23,0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

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

.feature-card__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--blade-gold-light);
  margin-bottom: 10px;
}

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

/* ========================
   HOW TO PLAY PREVIEW
   ======================== */
.how-to-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26,42,74,0.5) 0%, rgba(10,15,30,0.5) 100%);
}

.how-to-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.how-to-preview__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-item__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warrior-red), var(--warrior-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.step-item__content {}

.step-item__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blade-gold-light);
  margin-bottom: 6px;
}

.step-item__desc {
  font-size: 0.9rem;
  color: var(--steel-silver);
  margin: 0;
}

.how-to-preview__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.game-preview-box {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dojo-blue) 0%, var(--dojo-blue-dark) 100%);
  border: 2px solid var(--blade-gold);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  position: relative;
}

.game-preview-box__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--blade-gold);
  overflow: hidden;
}

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

.game-preview-box__label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blade-gold-light);
  text-align: center;
}

/* ========================
   BLOG / ARTICLES
   ======================== */
.blog-section {
  padding: 80px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.article-card {
  background: linear-gradient(145deg, rgba(26,42,74,0.7) 0%, rgba(13,24,41,0.8) 100%);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
    position: relative;
}

.article-card:hover {
  border-color: rgba(212,160,23,0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.article-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--warrior-red-dark) 0%, var(--dojo-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.article-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,15,30,0.8));
}

.article-card__body {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.article-card__meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blade-gold);
  flex-wrap: wrap;
  align-items: center;
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--steel-silver);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

/* ========================
   FAQ
   ======================== */
.faq-section {
  padding: 80px 0;
  background: rgba(26,42,74,0.3);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: rgba(26,42,74,0.6);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--blade-gold-light);
  transition: color var(--transition);
}

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

.faq__icon {
  font-size: 1.4rem;
  color: var(--warrior-red);
  transition: transform var(--transition);
  flex-shrink: 0;
}

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

.faq__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item--open .faq__answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--steel-silver);
  margin: 0;
  line-height: 1.75;
}

/* ========================
   CONTROLS SECTION
   ======================== */
.controls-section {
  padding: 80px 0;
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.control-card {
  background: rgba(26,42,74,0.6);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.control-card:hover {
  border-color: var(--warrior-red);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px);
}

.control-card__icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.control-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--blade-gold-light);
  margin-bottom: 8px;
}

.control-card__desc {
  font-size: 0.85rem;
  color: var(--steel-silver);
  margin: 0;
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, rgba(26,42,74,0.8) 50%, rgba(212,160,23,0.1) 100%);
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
}

.cta-section__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section__desc {
  font-size: 1.05rem;
  color: var(--steel-silver);
  max-width: 520px;
  margin: 0 auto 36px;
}

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

.about-content {
  padding: 60px 0;
}

.about-content__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content__text h2 {
  font-size: 1.8rem;
  color: var(--blade-gold-light);
  margin-bottom: 18px;
}

.about-content__text p {
  font-size: 0.95rem;
  color: var(--steel-silver);
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  background: rgba(26,42,74,0.6);
  border-left: 4px solid var(--warrior-red);
  padding: 18px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.value-item__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--blade-gold-light);
  margin-bottom: 6px;
}

.value-item__desc {
  font-size: 0.88rem;
  color: var(--steel-silver);
  margin: 0;
}

/* ========================
   HOW TO PLAY PAGE
   ======================== */
.htp-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.htp-content {
  padding: 60px 0 80px;
}

.htp-steps {
  max-width: 820px;
  margin: 0 auto 60px;
}

.htp-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  background: rgba(26,42,74,0.5);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.htp-step:hover {
  border-color: rgba(212,160,23,0.4);
  box-shadow: var(--shadow-gold);
}

.htp-step__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warrior-red), var(--warrior-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.htp-step__body {}

.htp-step__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--blade-gold-light);
  margin-bottom: 10px;
}

.htp-step__desc {
  font-size: 0.92rem;
  color: var(--steel-silver);
  line-height: 1.75;
  margin: 0;
}

.htp-tips {
  max-width: 820px;
  margin: 0 auto;
}

.htp-tips__title {
  font-size: 1.8rem;
  color: var(--blade-gold-light);
  margin-bottom: 24px;
  text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tip-card {
  background: rgba(26,42,74,0.5);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tip-card__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.tip-card__text {
  font-size: 0.88rem;
  color: var(--steel-silver);
  margin: 0;
  line-height: 1.6;
}

/* ========================
   BLOG PAGE
   ======================== */
.blog-hero {
  padding: 70px 0 40px;
  text-align: center;
}

.blog-content {
  padding: 50px 0 80px;
}

/* ========================
   ARTICLE PAGE
   ======================== */
.article-hero {
  padding: 70px 0 40px;
}

.article-hero__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blade-gold);
  margin-bottom: 14px;
  display: block;
}

.article-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 900px;
}

.article-hero__meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blade-gold);
}

.article-body {
  padding: 50px 0 80px;
}

.article-body__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.article-content h2 {
  font-size: 1.6rem;
  color: var(--blade-gold-light);
  margin: 32px 0 14px;
}

.article-content h3 {
  font-size: 1.25rem;
  color: var(--blade-gold);
  margin: 24px 0 10px;
}

.article-content p {
  font-size: 0.95rem;
  color: var(--steel-silver);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.2rem 1.5rem;
}

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

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

.article-content li {
  font-size: 0.95rem;
  color: var(--steel-silver);
  line-height: 1.7;
  margin-bottom: 6px;
}

.article-content li::marker {
  color: var(--warrior-red);
}

.article-sidebar__box {
  background: rgba(26,42,74,0.6);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  margin-bottom: 24px;
}

.article-sidebar__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blade-gold-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212,160,23,0.25);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-links a {
  font-size: 0.88rem;
  color: var(--steel-silver);
  transition: color var(--transition);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-links a:hover {
  color: var(--blade-gold-light);
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.contact-content {
  padding: 50px 0 80px;
}

.contact-content__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: var(--blade-gold-light);
  margin-bottom: 18px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--steel-silver);
  line-height: 1.8;
}

.contact-info__items {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warrior-red), var(--warrior-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__text {
  font-size: 0.9rem;
  color: var(--steel-silver);
}

.contact-form {
  background: rgba(26,42,74,0.6);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blade-gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(10,15,30,0.8);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blade-gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

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

/* ========================
   PRIVACY / TERMS
   ======================== */
.legal-hero {
  padding: 70px 0 30px;
}

.legal-content {
  padding: 40px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--blade-gold-light);
  margin: 32px 0 12px;
}

.legal-content p {
  font-size: 0.93rem;
  color: var(--steel-silver);
  line-height: 1.8;
}

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

.legal-content ul li {
  font-size: 0.93rem;
  color: var(--steel-silver);
  margin-bottom: 6px;
}

.legal-content ul li::marker {
  color: var(--warrior-red);
}

/* ========================
   BREADCRUMB
   ======================== */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,160,23,0.1);
  margin-bottom: 20px;
}

.breadcrumb__list {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb__item {
  font-size: 0.8rem;
  color: var(--steel-silver);
}

.breadcrumb__item a {
  color: var(--blade-gold);
  transition: color var(--transition);
}

.breadcrumb__item a:hover {
  color: var(--blade-gold-light);
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--dojo-blue-dark);
  border-top: 2px solid rgba(212,160,23,0.3);
  padding: 60px 0 20px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blade-gold-light);
  text-shadow: var(--shadow-gold);
  display: block;
  margin-bottom: 14px;
}

.footer-brand__desc {
  font-size: 0.88rem;
  color: var(--steel-silver);
  line-height: 1.7;
  margin: 0;
}

.footer-nav__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--blade-gold-light);
  margin-bottom: 16px;
}

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

.footer-nav__link {
  font-size: 0.88rem;
  color: var(--steel-silver);
  transition: color var(--transition);
}

.footer-nav__link:hover {
  color: var(--blade-gold-light);
}

.site-footer__bottom {
  border-top: 1px solid rgba(212,160,23,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__copy {
  font-size: 0.82rem;
  color: rgba(189,195,199,0.6);
}

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

.site-footer__legal a {
  font-size: 0.82rem;
  color: rgba(189,195,199,0.6);
  transition: color var(--transition);
}

.site-footer__legal a:hover {
  color: var(--blade-gold);
}

/* ========================
   PAGE INNER HERO
   ======================== */
.page-hero {
  padding: 70px 0 40px;
  text-align: center;
  border-bottom: 1px solid rgba(212,160,23,0.15);
  margin-bottom: 10px;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero__desc {
  font-size: 1rem;
  color: var(--steel-silver);
  max-width: 560px;
  margin: 0 auto;
}

/* ========================
   UTILITY
   ======================== */
.text-center { text-align: center; }
.text-gold { color: var(--blade-gold-light); }
.text-red { color: var(--warrior-red); }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge--red {
  background: rgba(192,57,43,0.25);
  color: var(--warrior-red-light);
  border: 1px solid rgba(192,57,43,0.4);
}

.badge--gold {
  background: rgba(212,160,23,0.2);
  color: var(--blade-gold-light);
  border: 1px solid rgba(212,160,23,0.35);
}

/* ========================
   MOBILE NAV
   ======================== */
@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dojo-blue-dark);
    border-left: 2px solid var(--blade-gold);
    z-index: 999;
    transition: right var(--transition);
    padding: 80px 28px 28px;
    overflow-y: auto;
  }

  .site-nav--open {
    right: 0;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }

  .site-nav__link {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
  }

  .nav-overlay--active {
    display: block;
  }

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

@media (max-width: 768px) {
  .how-to-preview__inner,
  .about-content__inner,
  .contact-content__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

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

@media (max-width: 500px) {
  .hero__stats {
    gap: 24px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

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

  .btn-play {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}