/*
=============================================================
  www.gamely8.com — Global Stylesheet
  Reference: telescope.uk.com (Flatsome theme, dark casino SEO)
  Style DNA:
    layout_bias: 混合型 (聚合分发 + 长文SEO)
    hero_layout: 全宽Banner + 快捷入口图块
    nav_alignment: 左Logo 中导航 右按钮
    card_geometry: 中等圆角 (8-12px)
    background_treatment: 深色分区色块 + 渐变层叠
    section_divider: 色块分区
    shadow_density: 层叠阴影
    icon_style: 实心图标 + 双色SVG
    cta_emphasis: 高
    copy_tone: 权威说明型 + 转化引导型
=============================================================
*/

/* ===== CSS VARIABLES ===== */
:root {
  --primary:       #1e88e5;
  --primary-dark:  #1565c0;
  --primary-light: #42a5f5;
  --accent:        #00e676;
  --accent-dark:   #00c853;
  --warn:          #ff6d00;
  --warn-light:    #ff9100;

  --bg-base:       #0a1628;
  --bg-surface:    #0d1f3c;
  --bg-card:       #112240;
  --bg-card-hover: #163060;
  --bg-section-alt:#0b1a30;
  --bg-footer:     #060e1c;

  --text-primary:  #e8f0fe;
  --text-secondary:#90a4ae;
  --text-muted:    #546e7a;
  --text-heading:  #ffffff;

  --border-color:  rgba(30,136,229,0.2);
  --border-accent: rgba(0,230,118,0.3);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow:0 0 20px rgba(30,136,229,0.25);

  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-bn:    "Noto Sans Bengali", "SolaimanLipi", system-ui, sans-serif;

  --container:  1280px;
  --header-h:   68px;
  --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-bn), var(--font-stack);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-primary); }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #0a1628;
  border-color: var(--accent);
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--accent), #69f0ae);
  color: #0a1628;
  box-shadow: 0 4px 16px rgba(0,230,118,0.4);
  transform: translateY(-1px);
}
.btn-login {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--primary);
}
.btn-login:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--primary-light);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

/* ===== NOTICE BAR ===== */
.notice-bar {
  background: linear-gradient(90deg, #061020, #0d1f3c);
  border-bottom: 2px solid var(--primary-dark);
  padding: 8px 0;
  overflow: hidden;
}
.notice-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.notice-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(30,136,229,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}
.notice-scroll-wrap { overflow: hidden; flex: 1; }
.notice-scroll-text {
  white-space: nowrap;
  display: inline-block;
  animation: scrollLeft 30s linear infinite;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.notice-scroll-text strong { color: var(--accent); }
@keyframes scrollLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img,
.header-logo svg {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--text-heading);
  background: rgba(30,136,229,0.12);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,14,28,0.95);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.mobile-nav-overlay a:hover { background: var(--bg-card); color: var(--accent); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.mobile-cta-row .btn { flex: 1; justify-content: center; }

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-surface);
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.hero-banner-content {
  padding: 0 40px;
  max-width: 560px;
}
.hero-banner-content h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-banner-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.hero-banner-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== SHORTCUT CARDS (Quick Entry) ===== */
.shortcut-section {
  padding: 32px 0;
  background: var(--bg-section-alt);
}
.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: 18px 10px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.shortcut-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.shortcut-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.shortcut-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.shortcut-card:hover span { color: var(--text-heading); }

/* ===== SECTION COMMON ===== */
.section {
  padding: 56px 0;
}
.section-alt {
  background: var(--bg-section-alt);
}
.section-dark {
  background: var(--bg-base);
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: rgba(30,136,229,0.15);
  color: var(--primary-light);
  border: 1px solid var(--primary-dark);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===== FEATURE CARDS ===== */
.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-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* ===== CONTENT CARDS (Slots/Sports listing) ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.content-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,230,118,0.15);
}
.content-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-card-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.content-card-body {
  padding: 14px;
}
.content-card-body h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--text-heading);
}
.content-card-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}
.content-card-badge {
  display: inline-block;
  background: rgba(0,230,118,0.15);
  color: var(--accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* ===== LONGFORM CONTENT AREA ===== */
.longform-section {
  padding: 56px 0;
  background: var(--bg-base);
}
.longform-inner {
  max-width: 900px;
  margin: 0 auto;
}
.longform-inner h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}
.longform-inner h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--accent);
}
.longform-inner p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
}
.longform-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}
.longform-inner ul li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.longform-inner a { color: var(--primary-light); }
.longform-inner a:hover { color: var(--accent); }

/* ===== FAQ ===== */
.faq-section { padding: 56px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  color: var(--text-heading);
  font-size: 0.97rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question.open { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(30,136,229,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: rgba(0,230,118,0.15); color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-color);
}
.faq-answer.open { display: block; }
.faq-answer a { color: var(--primary-light); }

/* ===== YOUTUBE VIDEO ===== */
.video-section { padding: 56px 0; background: var(--bg-section-alt); }
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { color: var(--text-secondary); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span { margin: 0 6px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 48px 0 36px;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
  border-bottom: 1px solid var(--border-color);
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { color: var(--text-secondary); max-width: 640px; }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ===== SPORTS LISTING ===== */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
  text-decoration: none;
}
.sport-card:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.sport-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.sport-info h3 { font-size: 1rem; margin-bottom: 4px; }
.sport-info p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }

/* ===== ABOUT PAGE ===== */
.about-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 0;
}
.about-article h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}
.about-article p { color: var(--text-secondary); line-height: 1.85; }
.about-article ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}
.about-article ul li { color: var(--text-secondary); margin-bottom: 6px; }
.about-article a { color: var(--primary-light); }
.about-article a:hover { color: var(--accent); }
.about-timeline {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 24px 0;
}
.timeline-item { margin-bottom: 24px; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg-base);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ===== PRIVACY / POLICY PAGE ===== */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 0;
}
.policy-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--primary-light);
}
.policy-content p, .policy-content li {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-color);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
.footer-brand img,
.footer-brand svg {
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 180px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.footer-contact-item strong { color: var(--text-primary); min-width: 60px; }
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-sitemap-link {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== 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: 6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(30,136,229,0.4);
}
.error-page h2 { margin-bottom: 12px; }
.error-page p { color: var(--text-secondary); margin-bottom: 28px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== RELATED LINKS ===== */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.related-link:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: var(--bg-card-hover);
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 500;
  transition: all var(--transition);
}
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
#back-to-top.visible { display: flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-banner-content { padding: 0 20px; }
  .hero-banner-content h1 { font-size: 1.3rem; }
  .hero-banner img, .hero-banner svg { max-height: 220px; }
  .section { padding: 36px 0; }
  .cta-section { padding: 40px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-banner-overlay { background: rgba(10,22,40,0.6); }
  .hero-banner-cta { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
