/* ============================================================
   LottoPro.it.com - Global Stylesheet
   Target: Bangladesh | Language: bn-BD
   Design: Mixed (Brand-dispatch + Content-flow + Heavy Footer)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1a1060;
  --primary-dark:  #0d0840;
  --primary-light: #2d1fa3;
  --accent:        #f5c518;
  --accent-dark:   #d4a800;
  --secondary:     #e63946;
  --success:       #2dc653;
  --bg-white:      #ffffff;
  --bg-light:      #f4f6fb;
  --bg-section:    #eef0f8;
  --text-dark:     #0a0a1a;
  --text-body:     #3a3a5c;
  --text-muted:    #7a7a9a;
  --border:        #dde0f0;
  --shadow-sm:     0 2px 8px rgba(26,16,96,.10);
  --shadow-md:     0 6px 24px rgba(26,16,96,.15);
  --shadow-lg:     0 12px 40px rgba(26,16,96,.20);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --font-main:     system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --transition:    all .25s ease;
  --container:     1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-main);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .5em;
}
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.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 a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--accent); }
.topbar-badge {
  background: var(--accent);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: .03em;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 180px;
}
.site-logo img,
.site-logo svg {
  max-width: 100%;
  max-height: 44px;
  height: auto;
  width: auto;
  display: block;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1;
}
.logo-text span { color: var(--accent); }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-dark);
  font-size: .88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); background: rgba(26,16,96,.07); }

/* Header CTA Buttons */
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-register {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn-register:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,197,24,.4);
}
.btn-login {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-login:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-weight: 800;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,.45);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 6px 14px; font-size: .8rem; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--primary);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
}
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-white);
  z-index: 1200;
  overflow-y: auto;
  transition: right .3s ease;
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav-panel.open { right: 0; }
.mobile-nav-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.mobile-nav-close button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.mobile-nav-links a:hover { color: var(--primary); }
.mobile-cta-btns { display: flex; flex-direction: column; gap: 10px; }
.mobile-cta-btns .btn { width: 100%; justify-content: center; }

/* ---------- Hero / Banner ---------- */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-banner img {
  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,8,64,.75) 0%, rgba(10,8,64,.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.hero-content {
  padding: 40px 20px;
  max-width: 560px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin-bottom: .5em;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  margin-bottom: 1.5em;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Shortcut Cards (Quick Entry) ---------- */
.shortcut-section {
  background: var(--bg-white);
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border);
}
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}
.shortcut-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-dark);
}
.shortcut-card:hover {
  border-color: var(--primary);
  background: rgba(26,16,96,.05);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}
.shortcut-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.shortcut-card span { font-size: .82rem; font-weight: 600; }

/* ---------- Section Utilities ---------- */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 80px 0; }
.section-dark {
  background: var(--primary-dark);
  color: #fff;
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.82); }
.section-alt { background: var(--bg-section); }
.section-title-wrap { text-align: center; margin-bottom: 40px; }
.section-title-wrap h2 { margin-bottom: .4em; }
.section-title-wrap p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: rgba(26,16,96,.08);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.section-dark .section-label {
  background: rgba(245,197,24,.15);
  color: var(--accent);
}

/* ---------- Feature Cards (3-col) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: .4em; }
.feature-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---------- Game Category Tabs ---------- */
.tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: 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: rgba(26,16,96,.04);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.tab-content-row img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.tab-text h3 { margin-bottom: .6em; }
.tab-text p { color: var(--text-muted); font-size: .95rem; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); }

/* ---------- Content Flow (Left-Right alternating) ---------- */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }
.content-row img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.content-text h2 { margin-bottom: .6em; }
.content-text p { color: var(--text-muted); margin-bottom: 1em; }
.content-text ul { margin: 1em 0; }
.content-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-body);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ---------- Promotion Cards ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.promo-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.promo-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.promo-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .4em; }
.promo-card p { color: rgba(255,255,255,.8); font-size: .88rem; margin: 0; }

/* ---------- Steps / How-to ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}
.step-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  counter-increment: step-counter;
}
.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 32px;
  text-align: center;
}
.step-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.step-card h4 { margin-top: 8px; margin-bottom: .4em; font-size: 1rem; }
.step-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--bg-white);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dark);
  gap: 12px;
  user-select: none;
}
.faq-question:hover { background: var(--bg-light); }
.faq-item.open .faq-question { background: rgba(26,16,96,.04); color: var(--primary); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform .25s;
  color: var(--primary);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-related {
  margin-top: 32px;
  text-align: center;
}
.faq-related a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 16px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-xl);
  margin: 4px;
  transition: var(--transition);
}
.faq-related a:hover { background: var(--primary); color: #fff; }

/* ---------- YouTube Video Module ---------- */
.video-section { background: var(--bg-section); }
.video-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.video-title { text-align: center; margin-bottom: 20px; }
.video-title h2 { margin-bottom: .3em; }
.video-title p { color: var(--text-muted); }
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(245,197,24,.08);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-banner h2 { color: #fff; margin-bottom: .4em; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 1.5em; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Long-form SEO Content ---------- */
.longform-section { background: var(--bg-white); }
.longform-inner { max-width: 900px; margin: 0 auto; }
.longform-inner h2 { margin-top: 2em; margin-bottom: .6em; color: var(--primary); }
.longform-inner h3 { margin-top: 1.5em; margin-bottom: .5em; }
.longform-inner p { color: var(--text-body); line-height: 1.8; }
.longform-inner ul, .longform-inner ol {
  margin: 1em 0 1em 1.5em;
}
.longform-inner ul { list-style: disc; }
.longform-inner ol { list-style: decimal; }
.longform-inner li { margin-bottom: .5em; color: var(--text-body); }
.longform-inner strong { color: var(--text-dark); }
.longform-inner a { color: var(--primary); font-weight: 600; }
.longform-inner a:hover { color: var(--accent-dark); }
.info-box {
  background: rgba(26,16,96,.05);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 1.5em 0;
}
.info-box p { margin: 0; font-size: .92rem; }
.warning-box {
  background: rgba(230,57,70,.05);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 1.5em 0;
}
.warning-box p { margin: 0; font-size: .92rem; color: var(--secondary); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 14px 0;
  font-size: .82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: '/'; color: var(--border); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb li:last-child { color: var(--text-dark); font-weight: 600; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 48px 0 40px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: .4em; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; }

/* ---------- Slots / Sports Archive Grid ---------- */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.archive-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.archive-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.archive-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
}
.archive-card-img svg { width: 100%; height: 100%; }
.archive-card-body { padding: 16px; }
.archive-card-body h3 { font-size: 1rem; margin-bottom: .3em; }
.archive-card-body p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.archive-card-tag {
  display: inline-block;
  background: rgba(26,16,96,.08);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* ---------- Sports Listing ---------- */
.sports-list { display: flex; flex-direction: column; gap: 16px; }
.sports-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}
.sports-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.sports-item-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.sports-item-body { flex: 1; }
.sports-item-body h3 { font-size: 1rem; margin-bottom: .2em; }
.sports-item-body p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.sports-item-cta { flex-shrink: 0; }

/* ---------- About Page ---------- */
.about-timeline { position: relative; padding-left: 32px; }
.about-timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.timeline-item h3 { font-size: 1.05rem; margin-bottom: .3em; }
.timeline-item p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---------- Privacy / Policy Page ---------- */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 {
  font-size: 1.2rem;
  margin-top: 2em;
  margin-bottom: .5em;
  padding-bottom: .3em;
  border-bottom: 2px solid var(--border);
  color: var(--primary);
}
.policy-content p { font-size: .95rem; color: var(--text-body); }
.policy-content ul { margin: .8em 0 .8em 1.5em; list-style: disc; }
.policy-content ul li { margin-bottom: .4em; font-size: .95rem; color: var(--text-body); }

/* ---------- 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: .12;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.error-content { position: relative; z-index: 1; }
.error-content h1 { font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: .5em; }
.error-content p { color: var(--text-muted); margin-bottom: 1.5em; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: #fff; margin-bottom: 14px; display: block; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245,197,24,.1);
}
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.w-100 { width: 100%; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-row { gap: 32px; }
  .tab-content-row { gap: 24px; }
}

@media (max-width: 768px) {
  .topbar .container { flex-direction: column; gap: 4px; text-align: center; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn-login { display: none; }
  .hero-banner img { max-height: 280px; }
  .hero-content { padding: 24px 16px; }
  .hero-btns { flex-direction: column; }
  .content-row { grid-template-columns: 1fr; gap: 24px; }
  .content-row.reverse { direction: ltr; }
  .tab-content-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 40px 0; }
  .section-lg { padding: 56px 0; }
}

@media (max-width: 480px) {
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .header-cta .btn-register { padding: 8px 14px; font-size: .8rem; }
  .hero-content h1 { font-size: 1.3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
