/*
 * PROJECT: fanghialga
 * DOMAIN: fanghialga.com
 * GAME: Tennis Dash
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Premium/Luxury (Dark #1a1a2e, Gold #d4af37)
 * - Effect: Gradient Mesh + Neon Glow
 * - Fonts: Playfair Display + Montserrat
 * - Buttons: Gradient
 *
 * Created: January 2026
 */

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

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --deep-navy: #1a1a2e;
  --navy-mid: #16213e;
  --navy-dark: #0f1226;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-pale: #f5e9b8;
  --champion-gold: #ffd700;
  --court-green: #1e7a4a;
  --court-green-light: #26a96c;
  --energy-red: #c0392b;
  --platinum: #e5e5e5;
  --silver: #a8a8b3;
  --white: #ffffff;
  --text-body: #c8c8d4;
  --text-muted: #8888a0;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(212, 175, 55, 0.25);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-deep: 0 8px 32px rgba(0, 0, 0, 0.5);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --header-height: 72px;
}

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

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

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

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

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

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

ul {
  list-style: none;
}

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

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

.stars {
  color: #ffc107;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

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

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

.section {
  padding: 80px 0;
}

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

.section--mid {
  background: var(--navy-mid);
}

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

.section__header h2 {
  margin-bottom: 0.75rem;
}

.section__header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--champion-gold) 50%, var(--gold) 100%);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.65);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--champion-gold) 50%, var(--gold-light) 100%);
}

.btn--primary {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

/* ===========================
   COOKIE CONSENT
=========================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 18, 38, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1rem 0;
}

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

.cookie-consent__inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-consent__inner p a {
  color: var(--gold);
  text-decoration: underline;
}

/* ===========================
   SITE HEADER
=========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 18, 38, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: background var(--transition);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
  text-decoration: none;
}

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

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

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--platinum);
  position: relative;
  padding-bottom: 4px;
}

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

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

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

.nav__cta {
  margin-left: 1rem;
}

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

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

.hamburger--active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 121, 74, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(30, 48, 100, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--deep-navy) 50%, var(--navy-mid) 100%);
}

.hero__bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  transform: rotate(-8deg);
}

.hero__bg-lines::after {
  content: '';
  position: absolute;
  top: 40%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 169, 108, 0.1), transparent);
  transform: rotate(-8deg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--champion-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.75;
}

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

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.hero__stat-item {
  text-align: left;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

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

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

.hero__game-preview {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__game-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}

.hero__game-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--court-green) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero__game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.hero__game-info {
  padding: 1.25rem 1.5rem;
  background: rgba(15, 18, 38, 0.8);
}

.hero__game-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

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

.hero__game-meta span {
  color: var(--gold);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  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, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

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

.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   HOW TO PLAY SECTION
=========================== */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: steps;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

.step-card__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--champion-gold) 100%);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.step-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

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

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

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

.article-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--court-green) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.article-card__content {
  padding: 1.5rem;
}

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

.article-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

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

.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
  position: relative;
  z-index: 0;
}

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

.article-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.faq__item:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.faq__question-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

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

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

/* ===========================
   CONTROLS SECTION
=========================== */
.controls__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.control-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}

.control-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.control-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.control-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.control-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================
   CTA SECTION
=========================== */
.cta {
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
    var(--navy-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===========================
   SITE FOOTER
=========================== */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 60px 0 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
}

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

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

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

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

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

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

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

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

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

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

/* ===========================
   PAGE HERO
=========================== */
.page-hero {
  padding: 120px 0 60px;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--deep-navy) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

.page-hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   BREADCRUMBS
=========================== */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span {
  margin: 0 0.4rem;
}

/* ===========================
   ARTICLE PAGE
=========================== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  padding: 60px 0 80px;
}

.article-content h1 {
  margin-bottom: 1rem;
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--gold-pale);
}

.article-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--platinum);
}

.article-content p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

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

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

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

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

.article-meta__category {
  color: var(--gold);
  font-weight: 600;
}

/* ===========================
   SIDEBAR
=========================== */
.sidebar__widget {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar__widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.sidebar__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sidebar__links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.sidebar__links a:hover {
  color: var(--gold);
}

/* ===========================
   CONTACT FORM
=========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 60px 0 80px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-size: 0.9rem;
  color: var(--text-body);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

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

.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}

/* ===========================
   PROSE (About, Privacy, Terms, HowTo)
=========================== */
.prose {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.prose h2 {
  font-size: 1.6rem;
  color: var(--gold-pale);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--platinum);
}

.prose p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

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

.prose li {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }

.prose strong {
  color: var(--gold-pale);
  font-weight: 600;
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.35);
}

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

/* ===========================
   ABOUT PAGE — TEAM / VALUES
=========================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ===========================
   HOW TO PLAY PAGE
=========================== */
.tip-box {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.tip-box__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.tip-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
}

.scoring-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.scoring-table th,
.scoring-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.scoring-table th {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.scoring-table td {
  color: var(--text-body);
}

.scoring-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* ===========================
   BLOG PAGE
=========================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  padding: 60px 0 80px;
}

.blog-grid__posts {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.blog-post-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr;
  transition: all var(--transition);
  position: relative;
}

.blog-post-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.blog-post-card__img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--court-green) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-post-card__content {
  padding: 1.5rem;
}

.blog-post-card__meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.blog-post-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.blog-post-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-post-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.blog-post-card:hover .blog-post-card__title {
  color: var(--gold);
}

.blog-post-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

/* ===========================
   MOBILE NAV
=========================== */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    background: rgba(10, 12, 24, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1.5rem;
    flex-direction: column;
    z-index: 999;
  }

  .nav--open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hamburger {
    display: flex;
  }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

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

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

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__description {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__game-preview {
    max-width: 340px;
  }

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

  .blog-post-card {
    grid-template-columns: 1fr;
  }

  .blog-post-card__img {
    aspect-ratio: 16/9;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

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

  .how-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

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

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