/*
 * PROJECT: start-day.com
 * DOMAIN: start-day.com
 * GAME: Tennis Dash
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Dark Knight (Black, Grey, Yellow, Gothic)
 * - Effect: Neon Glow
 * - Fonts: Cinzel (headings) + Roboto Condensed (body)
 * - Buttons: 3D Effect + Neon Border
 *
 * Created: January 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Roboto+Condensed:wght@300;400;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --knight-black:    #0a0a0a;
  --knight-dark:     #111111;
  --knight-surface:  #1a1a1a;
  --knight-card:     #222222;
  --knight-border:   #333333;
  --knight-grey:     #888888;
  --knight-light:    #cccccc;
  --knight-white:    #f0f0f0;
  --knight-yellow:   #f5c518;
  --knight-gold:     #d4af37;
  --knight-amber:    #ffb300;
  --knight-glow:     #f5c518;

  --font-heading: 'Cinzel', Georgia, serif;
  --font-body:    'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-card:    0 4px 24px rgba(0,0,0,0.6);
  --shadow-neon:    0 0 8px var(--knight-glow), 0 0 20px var(--knight-glow), 0 0 40px rgba(245,197,24,0.3);
  --shadow-neon-sm: 0 0 6px var(--knight-glow), 0 0 12px rgba(245,197,24,0.4);

  --transition: 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--knight-black);
  color: var(--knight-light);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden !important;
}

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

a {
  color: var(--knight-yellow);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--knight-amber);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--knight-white);
  line-height: 1.2;
}

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

p {
  margin-bottom: 1rem;
  color: var(--knight-light);
}

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

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

.stars {
  color: #ffc107;
}

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

.section {
  padding: 80px 0;
}

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

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--knight-border);
  backdrop-filter: blur(8px);
}

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

/* TEXT LOGO */
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--knight-yellow);
  letter-spacing: 2px;
  text-decoration: none;
  text-shadow: var(--shadow-neon-sm);
  transition: text-shadow var(--transition);
}

.logo:hover {
  color: var(--knight-yellow);
  text-shadow: var(--shadow-neon);
}

/* NAV */
.site-nav__list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--knight-light);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

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

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

/* MOBILE TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle__line {
  width: 26px;
  height: 2px;
  background: var(--knight-yellow);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--knight-black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,197,24,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 30%, rgba(245,197,24,0.04) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  z-index: 0;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(245,197,24,0.03) 60px,
      rgba(245,197,24,0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(245,197,24,0.03) 60px,
      rgba(245,197,24,0.03) 61px
    );
  z-index: 0;
}

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

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--knight-yellow);
  border: 1px solid rgba(245,197,24,0.4);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--knight-white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero__title span {
  color: var(--knight-yellow);
  text-shadow: var(--shadow-neon-sm);
}

.hero__description {
  font-size: 1.1rem;
  color: var(--knight-grey);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

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

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

.hero__game-card {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(245,197,24,0.1);
  max-width: 360px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hero__game-card:hover {
  border-color: rgba(245,197,24,0.5);
  box-shadow: var(--shadow-card), var(--shadow-neon-sm);
}

.hero__game-icon {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto 20px;
  border: 2px solid rgba(245,197,24,0.3);
}

.hero__game-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--knight-white);
  margin-bottom: 12px;
}

.hero__game-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__game-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--knight-yellow);
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 4px 12px;
  border-radius: 20px;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.hero__rating .stars {
  font-size: 1.1rem;
}

.hero__rating-text {
  font-size: 0.85rem;
  color: var(--knight-grey);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--knight-black);
  background: var(--knight-yellow);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 36px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 0 #a88010, 0 4px 16px rgba(245,197,24,0.4);
  position: relative;
  top: 0;
}

.btn-play:hover {
  top: 2px;
  box-shadow: 0 2px 0 #a88010, 0 2px 12px rgba(245,197,24,0.5);
  color: var(--knight-black);
  background: var(--knight-amber);
}

.btn-play:active {
  top: 4px;
  box-shadow: 0 0 0 #a88010, 0 0 8px rgba(245,197,24,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--knight-yellow);
  background: transparent;
  border: 2px solid var(--knight-yellow);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 0 8px rgba(245,197,24,0.2);
}

.btn-secondary:hover {
  background: rgba(245,197,24,0.1);
  box-shadow: var(--shadow-neon-sm);
  color: var(--knight-yellow);
}

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

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--knight-yellow);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  color: var(--knight-white);
  margin-bottom: 16px;
}

.section__desc {
  color: var(--knight-grey);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section__divider {
  width: 60px;
  height: 3px;
  background: var(--knight-yellow);
  margin: 20px auto 0;
  box-shadow: var(--shadow-neon-sm);
  border-radius: 2px;
}

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

.feature-card {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.feature-card:hover {
  border-color: rgba(245,197,24,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-neon-sm);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: rgba(245,197,24,0.2);
  box-shadow: 0 0 12px rgba(245,197,24,0.3);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--knight-white);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.95rem;
  color: var(--knight-grey);
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

.article-card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 20px rgba(245,197,24,0.1);
}

.article-card__thumb {
  height: 200px;
  background: var(--knight-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--knight-border);
  overflow: hidden;
}

.article-card__thumb--tennis {
  background: linear-gradient(135deg, #0d1b0d 0%, #1a2f1a 100%);
}

.article-card__thumb--strategy {
  background: linear-gradient(135deg, #1a1a0d 0%, #2f2f1a 100%);
}

.article-card__thumb--beginner {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2f 100%);
}

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

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

.article-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--knight-yellow);
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 3px 10px;
  border-radius: 20px;
}

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

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

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

.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--knight-grey);
  line-height: 1.6;
  margin-bottom: 0;
}

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

/* ============================================================
   HOW TO PLAY STEPS
   ============================================================ */
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}

.step-item {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
}

.step-item:hover {
  border-color: rgba(245,197,24,0.4);
  box-shadow: var(--shadow-neon-sm);
}

.step-item__number {
  width: 48px;
  height: 48px;
  background: var(--knight-yellow);
  color: var(--knight-black);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(245,197,24,0.4);
}

.step-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--knight-white);
  margin-bottom: 10px;
}

.step-item__text {
  font-size: 0.9rem;
  color: var(--knight-grey);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  border-top: 3px solid var(--knight-yellow);
  box-shadow: 0 -3px 0 0 rgba(245,197,24,0.2);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--knight-yellow);
  display: block;
  text-shadow: var(--shadow-neon-sm);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--knight-grey);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.is-open {
  border-color: rgba(245,197,24,0.4);
}

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

.faq-item__question:hover {
  color: var(--knight-yellow);
}

.faq-item.is-open .faq-item__question {
  color: var(--knight-yellow);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid rgba(245,197,24,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--knight-yellow);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(245,197,24,0.15);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding: 16px 24px 20px;
  color: var(--knight-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--knight-border);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--knight-card);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--knight-white);
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1.1rem;
  color: var(--knight-grey);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-consent__text {
  font-size: 0.88rem;
  color: var(--knight-light);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.cookie-consent__btn {
  align-self: flex-end;
  padding: 10px 24px;
  font-size: 0.85rem;
}

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

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

.site-footer__brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}

.site-footer__tagline {
  font-size: 0.9rem;
  color: var(--knight-grey);
  line-height: 1.7;
  max-width: 280px;
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--knight-yellow);
  margin-bottom: 16px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__link {
  font-size: 0.9rem;
  color: var(--knight-grey);
  transition: color var(--transition);
}

.site-footer__link:hover {
  color: var(--knight-yellow);
}

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

.site-footer__copy {
  font-size: 0.82rem;
  color: var(--knight-grey);
  margin-bottom: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--knight-dark);
  border-bottom: 1px solid var(--knight-border);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,197,24,0.05) 0%, transparent 60%);
}

.page-hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--knight-yellow);
  margin-bottom: 12px;
  position: relative;
}

.page-hero__title {
  font-family: var(--font-heading);
  position: relative;
}

.page-hero__desc {
  color: var(--knight-grey);
  max-width: 600px;
  margin: 16px auto 0;
  position: relative;
}

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

.breadcrumb a {
  color: var(--knight-grey);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--knight-yellow);
}

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

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

.article-content {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.article-content h2 {
  font-family: var(--font-heading);
  color: var(--knight-white);
  font-size: 1.6rem;
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--knight-yellow);
}

.article-content h3 {
  font-family: var(--font-heading);
  color: var(--knight-white);
  font-size: 1.2rem;
  margin: 24px 0 12px;
}

.article-content p {
  color: var(--knight-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--knight-light);
}

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

.article-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-content strong {
  color: var(--knight-yellow);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--knight-border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.article-meta__date {
  font-size: 0.85rem;
  color: var(--knight-grey);
}

.article-meta__cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--knight-yellow);
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 4px 12px;
  border-radius: 20px;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-widget__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--knight-yellow);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--knight-border);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.sidebar-links a {
  font-size: 0.9rem;
  color: var(--knight-grey);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-links a::before {
  content: '▶';
  font-size: 0.55rem;
  color: var(--knight-yellow);
}

.sidebar-links a:hover {
  color: var(--knight-yellow);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--knight-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--knight-surface);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--knight-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--knight-yellow);
  box-shadow: 0 0 0 2px rgba(245,197,24,0.15);
}

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

.form-success {
  display: none;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: var(--knight-yellow);
  font-family: var(--font-heading);
  margin-top: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.contact-info-item__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-info-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--knight-white);
  margin-bottom: 8px;
}

.contact-info-item__text {
  font-size: 0.9rem;
  color: var(--knight-grey);
  margin-bottom: 0;
}

/* ============================================================
   PROSE (about, privacy, terms)
   ============================================================ */
.prose {
  max-width: 800px;
  margin: 0 auto;
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 48px;
}

.prose h2 {
  font-family: var(--font-heading);
  color: var(--knight-yellow);
  font-size: 1.5rem;
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--knight-yellow);
}

.prose h3 {
  font-family: var(--font-heading);
  color: var(--knight-white);
  font-size: 1.15rem;
  margin: 24px 0 12px;
}

.prose p {
  color: var(--knight-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--knight-light);
}

.prose li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.prose a {
  color: var(--knight-yellow);
  text-decoration: underline;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.about-visual {
  text-align: center;
}

.about-icon {
  width: 180px;
  height: 180px;
  background: var(--knight-card);
  border: 2px solid rgba(245,197,24,0.4);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin: 0 auto;
  box-shadow: var(--shadow-neon-sm);
}

.about-text h2 {
  font-family: var(--font-heading);
  color: var(--knight-yellow);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--knight-light);
  line-height: 1.8;
}

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

.team-card {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-4px);
}

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

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--knight-white);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--knight-yellow);
}

/* ============================================================
   HOW TO PLAY PAGE
   ============================================================ */
.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.control-item {
  background: var(--knight-surface);
  border: 1px solid var(--knight-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.control-item__key {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--knight-yellow);
  background: rgba(245,197,24,0.1);
  border: 2px solid rgba(245,197,24,0.4);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-bottom: 10px;
  box-shadow: 0 4px 0 rgba(245,197,24,0.2);
}

.control-item__desc {
  font-size: 0.85rem;
  color: var(--knight-grey);
  margin-bottom: 0;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tip-item {
  background: var(--knight-card);
  border: 1px solid var(--knight-border);
  border-left: 4px solid var(--knight-yellow);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.tip-item:hover {
  box-shadow: var(--shadow-neon-sm);
}

.tip-item__num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--knight-yellow);
  min-width: 32px;
  line-height: 1.2;
}

.tip-item__text {
  font-size: 0.95rem;
  color: var(--knight-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   BLOG LIST
   ============================================================ */
.blog-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-count {
  font-size: 0.85rem;
  color: var(--knight-grey);
}

.blog-count strong {
  color: var(--knight-yellow);
}

/* ============================================================
   MOBILE NAV OPEN STATE
   ============================================================ */
.site-nav.is-open .site-nav__list {
  display: flex;
}

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

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__game-card {
    max-width: 320px;
  }

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

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

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

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

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

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

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

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--knight-border);
    padding: 20px;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

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

  .section {
    padding: 50px 0;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prose {
    padding: 28px 20px;
  }

  .article-content {
    padding: 24px 20px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .cookie-consent {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

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

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