/* ============================================================
   SPORTH1.COM - Global Stylesheet
   Target: Bangladesh market | Language: Bengali (bn-BD)
   Design: Mixed dispatch + content flow + heavy footer
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary:       #1a3a6b;
  --primary-dark:  #0f2347;
  --primary-light: #2a5298;
  --accent:        #0d6e3f;
  --accent-light:  #16a85f;
  --gold:          #f5c518;
  --gold-dark:     #d4a017;
  --danger:        #e63946;
  --white:         #ffffff;
  --off-white:     #f8f9fa;
  --light-gray:    #e9ecef;
  --mid-gray:      #adb5bd;
  --dark-gray:     #495057;
  --text-main:     #1a1a2e;
  --text-muted:    #6c757d;
  --bg-dark:       #0a1628;
  --bg-dark2:      #0d1f3c;
  --bg-section:    #f4f6fb;
  --border-color:  #dee2e6;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold:   0 4px 20px rgba(245,197,24,0.25);
  --transition:    0.25s ease;
  --font-main:     system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container-max: 1280px;
  --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);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-weight: 700; color: var(--text-main); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.topbar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(245,197,24,0.2);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-item { display: flex; align-items: center; gap: 5px; }
.topbar-item svg { width: 13px; height: 13px; opacity: 0.7; }
.topbar-badge {
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}
.marquee-wrap {
  overflow: hidden;
  flex: 1;
  max-width: 500px;
}
.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  color: var(--gold);
  font-size: 0.75rem;
}
@keyframes marqueeScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark2);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}
.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-wrap img,
.logo-wrap svg {
  height: 44px;
  width: auto;
  max-width: 160px;
  display: block;
}
@media (max-width: 768px) {
  .logo-wrap img, .logo-wrap svg { height: 36px; max-width: 130px; }
}

/* ---- Main Nav ---- */
.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-list li a:hover,
.nav-list li a.active {
  color: var(--gold);
  background: rgba(245,197,24,0.1);
}

/* ---- Header CTA Buttons ---- */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-register:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-login {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-login:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-lg { padding: 13px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }

/* ---- Mobile Menu Toggle ---- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
}
.mobile-toggle svg { width: 26px; height: 26px; }

/* ---- Mobile Nav Drawer ---- */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
}
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.mobile-nav-panel {
  position: absolute;
  top: 0; left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-dark2);
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav-drawer.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-drawer.open { display: block; }
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: block;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list li a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-list li a:hover { color: var(--gold); background: rgba(245,197,24,0.08); }
.mobile-cta-wrap {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.mobile-cta-wrap .btn { flex: 1; justify-content: center; }

/* ============================================================
   BANNER / HERO
   ============================================================ */
.site-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--bg-dark);
  max-height: 420px;
}
.site-banner img,
.site-banner svg {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.7) 0%, transparent 60%);
  display: flex;
  align-items: center;
}
.banner-text {
  padding: 0 60px;
  max-width: 600px;
}
.banner-text h1 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.banner-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.banner-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   SHORTCUT ICON CARDS (Quick Entry)
   ============================================================ */
.shortcut-section {
  background: var(--bg-dark2);
  padding: 20px 0;
  border-bottom: 1px solid rgba(245,197,24,0.15);
}
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.shortcut-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: rgba(255,255,255,0.8);
}
.shortcut-card:hover {
  background: rgba(245,197,24,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.shortcut-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}
.shortcut-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.shortcut-label { font-size: 0.78rem; font-weight: 600; text-align: center; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 80px 0; }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-alt { background: var(--bg-section); }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}
.section-title p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section-dark .section-title p { color: rgba(255,255,255,0.65); }

/* ============================================================
   FEATURE CARDS (4-col icon boxes)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.feature-text h3 { font-size: 0.95rem; margin-bottom: 6px; }
.feature-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   CONTENT DISPATCH GRID (2-col category cards)
   ============================================================ */
.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.dispatch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.dispatch-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.dispatch-card-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.dispatch-card-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(245,197,24,0.1);
}
.dispatch-card-header h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.dispatch-card-header p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
.dispatch-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.dispatch-card-body { padding: 20px 24px; flex: 1; }
.dispatch-list { display: flex; flex-direction: column; gap: 10px; }
.dispatch-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-main);
  transition: all var(--transition);
  text-decoration: none;
}
.dispatch-list-item:hover {
  background: var(--primary);
  color: var(--white);
}
.dispatch-list-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.dispatch-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
}

/* ============================================================
   CONTENT FLOW / ARTICLE SECTION
   ============================================================ */
.content-flow { max-width: 900px; margin: 0 auto; }
.content-flow h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-gray);
}
.content-flow h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin: 24px 0 10px;
}
.content-flow p { color: var(--dark-gray); line-height: 1.8; }
.content-flow ul, .content-flow ol {
  padding-left: 20px;
  margin-bottom: 1rem;
}
.content-flow ul { list-style: disc; }
.content-flow ol { list-style: decimal; }
.content-flow li { margin-bottom: 6px; color: var(--dark-gray); line-height: 1.7; }
.content-flow blockquote {
  border-left: 4px solid var(--gold);
  background: var(--bg-section);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--dark-gray);
}
.content-flow table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.content-flow table th {
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
}
.content-flow table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-color);
}
.content-flow table tr:nth-child(even) td { background: var(--bg-section); }

/* ============================================================
   INFO TABLE (overview table)
   ============================================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.info-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 18px;
  font-size: 0.9rem;
  text-align: left;
}
.info-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--dark-gray);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: var(--bg-section); }

/* ============================================================
   TABS
   ============================================================ */
.tabs-wrap { margin: 24px 0; }
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--bg-section);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-section); }
.faq-question.open { background: var(--primary); color: var(--white); }
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
}
.faq-question.open .faq-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 16px 20px;
  background: var(--bg-section);
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.75;
  border-top: 1px solid var(--border-color);
}
.faq-answer.open { display: block; }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section { background: var(--bg-dark); padding: 60px 0; }
.video-section .section-title h2 { color: var(--white); }
.video-section .section-title h2::after { background: var(--gold); }
.video-wrap {
  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: 2px solid rgba(245,197,24,0.3);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(245,197,24,0.08);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary-dark);
  padding: 28px 0;
  border-top: 1px solid rgba(245,197,24,0.2);
  border-bottom: 1px solid rgba(245,197,24,0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-wrap {
  background: var(--bg-section);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--mid-gray); }
.breadcrumb-current { color: var(--text-main); font-weight: 600; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   ARCHIVE / LISTING GRID (slots, sports)
   ============================================================ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.archive-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.archive-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.archive-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.archive-card-thumb svg { width: 60px; height: 60px; fill: rgba(245,197,24,0.6); }
.archive-card-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.archive-card-body { padding: 18px; flex: 1; }
.archive-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.archive-card-body p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.archive-card-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.archive-card-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   SIDEBAR LAYOUT (for archive pages)
   ============================================================ */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sidebar-widget-title {
  background: var(--primary);
  color: var(--white);
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 700;
}
.sidebar-widget-body { padding: 16px 18px; }
.sidebar-link-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-link-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
}
.sidebar-link-list a:hover { color: var(--primary); }
.sidebar-link-list a:last-child { border-bottom: none; }

/* ============================================================
   ABOUT PAGE - Story / Blog style
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-hero-text h1 { color: var(--white); font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 16px; }
.about-hero-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.about-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-visual svg { width: 100%; max-width: 320px; }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 0 0 32px 0;
  position: relative;
}
.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.timeline-content {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  flex: 1;
  box-shadow: var(--shadow-sm);
}
.timeline-content h3 { font-size: 1rem; color: var(--primary); margin-bottom: 6px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   PRIVACY / POLICY PAGE
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
}
.policy-content h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-gray);
}
.policy-content h3 { font-size: 1.05rem; color: var(--primary-dark); margin: 20px 0 8px; }
.policy-content p { color: var(--dark-gray); line-height: 1.8; font-size: 0.95rem; }
.policy-content ul { list-style: disc; padding-left: 20px; margin-bottom: 1rem; }
.policy-content ul li { color: var(--dark-gray); margin-bottom: 6px; font-size: 0.95rem; }
.policy-last-updated {
  background: var(--bg-section);
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  border-top: 3px solid var(--gold);
}
.footer-main {
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand {}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,197,24,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; fill: var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   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: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.error-content { position: relative; z-index: 1; }
.error-content h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.error-content p { color: var(--text-muted); margin-bottom: 28px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; fill: var(--white); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.fw-bold { font-weight: 700; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .dispatch-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-visual { display: none; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .topbar { display: none; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .shortcut-card { padding: 12px 6px; }
  .shortcut-icon { width: 38px; height: 38px; }
  .shortcut-label { font-size: 0.7rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-text { padding: 0 20px; }
  .banner-text h1 { font-size: 1.3rem; }
  .banner-text p { font-size: 0.88rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .section { padding: 40px 0; }
  .section-lg { padding: 50px 0; }
}
