
/* ============================================================
   SportG9.com - Global Stylesheet
   Style DNA: Mixed (Aggregator-Dispatch + Long-form SEO)
   Color: Deep Navy/Black bg, Orange-Red accent, White text
   Reference: ytv.uk.com skeleton (header+nav+banner+shortcut-cards+content-feed+long-text+FAQ+heavy-footer)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #f5a623;
  --primary-dark: #e8320a;
  --accent-grad: linear-gradient(90deg, #f5a623 0%, #e8320a 100%);
  --bg-deep: #07070f;
  --bg-dark: #0d0d1a;
  --bg-card: #12121f;
  --bg-card2: #181828;
  --bg-section: #0f0f1e;
  --border-color: rgba(245,166,35,0.18);
  --text-main: #f0f0f0;
  --text-muted: #9999bb;
  --text-light: #ccccdd;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 20px rgba(245,166,35,0.15);
  --transition: 0.25s ease;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --header-h: 72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-weight: 700; color: var(--white); }
p { margin-bottom: 1rem; color: var(--text-light); }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.topbar {
  background: #050510;
  border-bottom: 1px solid rgba(245,166,35,0.12);
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar a { color: var(--text-muted); font-size: 12px; }
.topbar a:hover { color: var(--primary); }
.topbar-badge {
  background: var(--accent-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-wrap img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.logo-wrap svg {
  height: 44px;
  width: auto;
  max-width: 180px;
}

/* ---- Main Nav ---- */
.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.main-nav a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: rgba(245,166,35,0.1);
}

/* ---- Header CTA Buttons ---- */
.header-ctas { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.btn-register {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,50,10,0.35);
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,50,10,0.5);
  color: #fff;
}
.btn-login {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-login:hover {
  background: rgba(245,166,35,0.12);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ---- Mobile Menu Toggle ---- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Mobile Nav Drawer ---- */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(7,7,15,0.98);
  border-bottom: 2px solid var(--border-color);
  z-index: 999;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-drawer a:hover { color: var(--primary); background: rgba(245,166,35,0.08); }
.mobile-nav-ctas { display: flex; gap: 10px; margin-top: 12px; }
.mobile-nav-ctas .btn { flex: 1; justify-content: center; }

/* ============================================================
   BANNER SECTION
   ============================================================ */
.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-dark);
}
.banner-section img,
.banner-section svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* ============================================================
   SHORTCUT CARDS (Category Entry Grid)
   ============================================================ */
.shortcut-section {
  background: var(--bg-dark);
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.shortcut-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.shortcut-card:hover {
  border-color: var(--primary);
  background: var(--bg-card2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.shortcut-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.shortcut-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}
.shortcut-card:hover span { color: var(--primary); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--bg-dark); }
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-grad);
  border-radius: 2px;
  margin-top: 8px;
}
.section-subtitle { color: var(--text-muted); font-size: 15px; margin-bottom: 32px; }
.section-header { margin-bottom: 36px; }
.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.view-all-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.view-all-link:hover { color: var(--primary-dark); }

/* ============================================================
   FEATURE CARDS (3-col)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--white); }
.feature-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ============================================================
   CONTENT FEED / ARTICLE CARDS
   ============================================================ */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feed-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.feed-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feed-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-card2);
  overflow: hidden;
  position: relative;
}
.feed-card-img svg { width: 100%; height: 100%; }
.feed-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.feed-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.feed-card h4 { font-size: 15px; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.feed-card p { font-size: 13px; color: var(--text-muted); margin: 0; flex: 1; }
.feed-card-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-card-date { font-size: 12px; color: var(--text-muted); }
.feed-card-link { font-size: 13px; color: var(--primary); font-weight: 600; }

/* ============================================================
   PROMO / CTA BANNER
   ============================================================ */
.promo-banner {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d0a0a 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.promo-text h2 { font-size: 32px; color: var(--white); margin-bottom: 12px; }
.promo-text p { color: var(--text-muted); font-size: 16px; margin: 0; }
.promo-cta { display: flex; gap: 12px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(232,50,10,0.4);
  transition: all var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,50,10,0.55);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(245,166,35,0.1);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================
   LONG-FORM CONTENT AREA
   ============================================================ */
.longform-section {
  background: var(--bg-section);
  padding: 60px 0;
}
.longform-inner {
  max-width: 900px;
  margin: 0 auto;
}
.longform-inner h1 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.longform-inner h2 {
  font-size: 26px;
  color: var(--white);
  margin: 36px 0 14px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}
.longform-inner h3 {
  font-size: 20px;
  color: var(--primary);
  margin: 28px 0 10px;
}
.longform-inner p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.longform-inner ul {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}
.longform-inner ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.longform-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-grad);
}
.longform-inner a { color: var(--primary); font-weight: 600; }
.longform-inner a:hover { color: var(--primary-dark); text-decoration: underline; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 60px 0; background: var(--bg-dark); }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}
.faq-item.open .faq-toggle { background: var(--accent-grad); color: #fff; transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section { padding: 60px 0; background: var(--bg-section); }
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
}
.video-title { font-size: 24px; color: var(--white); margin-bottom: 8px; }
.video-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.breadcrumb-current { color: var(--primary); font-weight: 600; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 50%, #0d0d1a 100%);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 100%;
  background: radial-gradient(ellipse at right, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: 40px; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0; }

/* ============================================================
   SLOTS PAGE - Archive/Listing Style
   ============================================================ */
.slots-filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  align-items: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.slot-card-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}
.slot-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.slot-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 1;
  text-transform: uppercase;
}
.slot-card-info { padding: 14px; }
.slot-card-info h4 { font-size: 14px; color: var(--white); margin-bottom: 4px; }
.slot-card-info span { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   SPORTS PAGE - Event Listing Style
   ============================================================ */
.sports-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}
.sports-tab {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}
.sports-tab:hover, .sports-tab.active {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
}
.event-list { display: flex; flex-direction: column; gap: 12px; }
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}
.event-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.event-sport-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.event-info { flex: 1; }
.event-info h4 { font-size: 16px; color: var(--white); margin-bottom: 4px; }
.event-info span { font-size: 13px; color: var(--text-muted); }
.event-time {
  text-align: right;
  flex-shrink: 0;
}
.event-time .time { font-size: 18px; font-weight: 700; color: var(--primary); }
.event-time .date { font-size: 12px; color: var(--text-muted); }
.event-cta {
  background: var(--accent-grad);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition);
}
.event-cta:hover { transform: scale(1.05); color: #fff; }

/* ============================================================
   ABOUT PAGE - Story/Blog Style
   ============================================================ */
.about-timeline { position: relative; padding-left: 32px; }
.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--accent-grad);
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-grad);
  border: 3px solid var(--bg-section);
}
.timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.timeline-item h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.timeline-item p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ============================================================
   PRIVACY / POLICY PAGE
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 22px;
  color: var(--white);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}
.policy-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0 20px;
}
.policy-content ul li { color: var(--text-muted); font-size: 15px; margin-bottom: 6px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050510;
  border-top: 2px solid var(--border-color);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-logo img, .footer-logo svg { height: 44px; width: auto; max-width: 160px; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
.footer-contact-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: all var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--primary); font-size: 16px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: 120px;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-title { font-size: 28px; color: var(--white); margin-bottom: 12px; }
.error-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gradient {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-hot { background: var(--accent-grad); color: #fff; }
.badge-new { background: rgba(245,166,35,0.15); color: var(--primary); border: 1px solid var(--primary); }
.divider { height: 1px; background: var(--border-color); margin: 40px 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-ctas .btn-login { display: none; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .promo-cta { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 28px; }
  .longform-inner h1 { font-size: 26px; }
  .longform-inner h2 { font-size: 20px; }
  .section-title { font-size: 22px; }
  .event-card { flex-wrap: wrap; }
  .topbar { display: none; }
}

@media (max-width: 480px) {
  .shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .error-code { font-size: 80px; }
  .header-ctas .btn-register { padding: 8px 14px; font-size: 13px; }
  .logo-wrap img, .logo-wrap svg { height: 36px; max-width: 140px; }
}
