/* ============================================================
   LottoIO - style.css
   Global Design System for lottoio.it.com
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --primary:       #e63946;
  --primary-dark:  #c1121f;
  --primary-light: #ff6b6b;
  --secondary:     #f4a261;
  --accent:        #2a9d8f;
  --accent2:       #e9c46a;

  --bg-dark:       #0d1b2a;
  --bg-mid:        #1b2838;
  --bg-card:       #1e2d3d;
  --bg-card2:      #243447;
  --bg-light:      #f8f9fa;
  --bg-section:    #f1f3f5;

  --text-white:    #ffffff;
  --text-light:    #e9ecef;
  --text-muted:    #adb5bd;
  --text-dark:     #212529;
  --text-body:     #343a40;

  --border-color:  rgba(255,255,255,0.08);
  --border-light:  #dee2e6;

  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-pill:   999px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.28);
  --shadow-card:   0 2px 12px rgba(0,0,0,0.15);
  --shadow-glow:   0 0 24px rgba(230,57,70,0.35);

  --font-stack:    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-bn:       "Noto Sans Bengali", system-ui, -apple-system, Arial, sans-serif;

  --transition:    0.25s ease;
  --container-max: 1200px;
  --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-stack);
  color: var(--text-body);
  background: var(--bg-light);
  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(--primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-stack);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}
h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--primary) !important; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(230,57,70,0.5);
}
.btn-login {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-login:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: #fff;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }
.btn-sm { padding: 7px 16px; font-size: 0.85rem; }

/* ---- Top Info Bar ---- */
.topbar {
  background: var(--bg-dark);
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--secondary); }
.topbar-badge {
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---- Header ---- */
.site-header {
  background: var(--bg-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border-color);
}
.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 {
  max-width: 180px;
  max-height: 44px;
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .header-logo img,
  .header-logo svg {
    max-width: 140px;
    max-height: 36px;
  }
}

/* ---- Main Navigation ---- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary);
  background: rgba(244,162,97,0.1);
}
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ---- Mobile Menu ---- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  padding: 6px;
  line-height: 1;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
}
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--bg-mid);
  z-index: 1200;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}
.mobile-nav-panel.open { right: 0; }
.mobile-nav-overlay.open { display: block; }
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.4rem;
  float: right;
  cursor: pointer;
  margin-bottom: 20px;
}
.mobile-nav-links { margin-top: 40px; }
.mobile-nav-links a {
  display: block;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-links a:hover { color: var(--secondary); }
.mobile-cta-row { display: flex; gap: 10px; margin-top: 20px; }
.mobile-cta-row .btn { flex: 1; justify-content: center; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-cta { gap: 8px; }
  .header-cta .btn-register,
  .header-cta .btn-login {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

/* ---- Hero / Banner ---- */
.hero-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--bg-dark);
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-banner img,
  .hero-banner svg { max-height: 260px; }
}

/* ---- Section Titles ---- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-header .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-pill);
  margin: 12px auto 0;
}

/* ---- Shortcut Cards (Quick Entry) ---- */
.shortcut-section {
  background: var(--bg-dark);
  padding: 28px 0;
  border-bottom: 1px solid var(--border-color);
}
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}
.shortcut-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.shortcut-card:hover {
  background: var(--bg-card2);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.shortcut-card .sc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.3rem;
}
.shortcut-card .sc-label {
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- Feature Cards ---- */
.features-section {
  padding: 64px 0;
  background: var(--bg-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.feature-card .fc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(230,57,70,0.12), rgba(244,162,97,0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text-dark); }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- Content Distribution Section ---- */
.content-dist-section {
  padding: 64px 0;
  background: var(--bg-section);
}
.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 768px) { .dist-grid { grid-template-columns: 1fr; } }
.dist-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.dist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dist-card-header {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.dist-card-header .dc-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.dist-card-header h3 { color: var(--text-white); font-size: 1.1rem; margin: 0; }
.dist-card-header p { color: var(--text-muted); font-size: 0.85rem; margin: 4px 0 0; }
.dist-card-body { padding: 20px 24px; flex: 1; }
.dist-card-body ul { list-style: none; }
.dist-card-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dist-card-body ul li:last-child { border-bottom: none; }
.dist-card-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.dist-card-footer { padding: 16px 24px; border-top: 1px solid var(--border-light); }

/* ---- News / Article Cards ---- */
.news-section {
  padding: 64px 0;
  background: var(--bg-light);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border-light);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.news-card-img .nc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.news-card-body { padding: 18px; }
.news-card-body .nc-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.news-card-body h4 {
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-card-body p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.news-card-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
}
.news-card-footer a { font-size: 0.85rem; font-weight: 600; color: var(--primary); }

/* ---- Long-form Content Section ---- */
.longform-section {
  padding: 64px 0;
  background: var(--bg-section);
}
.longform-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .longform-inner { grid-template-columns: 1fr; } }
.longform-content h2 { color: var(--text-dark); margin-bottom: 16px; }
.longform-content h3 { color: var(--primary); margin: 28px 0 12px; font-size: 1.15rem; }
.longform-content p { color: var(--text-body); font-size: 0.97rem; line-height: 1.8; }
.longform-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}
.longform-content ul li { color: var(--text-body); font-size: 0.95rem; margin-bottom: 6px; }
.longform-content blockquote {
  border-left: 4px solid var(--primary);
  background: rgba(230,57,70,0.05);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-body);
}
.longform-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.sidebar-links a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-body);
}
.sidebar-links a:hover { color: var(--primary); padding-left: 6px; }
.sidebar-links a:last-child { border-bottom: none; }

/* ---- FAQ Section ---- */
.faq-section {
  padding: 64px 0;
  background: var(--bg-light);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(230,57,70,0.04); }
.faq-question.active { color: var(--primary); }
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
}
.faq-answer.open { display: block; }
.faq-answer a { color: var(--primary); font-weight: 600; }

/* ---- YouTube Video Section ---- */
.video-section {
  padding: 64px 0;
  background: var(--bg-dark);
}
.video-section .section-header h2 { color: var(--text-white); }
.video-section .section-header p { color: var(--text-muted); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--text-white); margin-bottom: 14px; }
.cta-section p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Breadcrumb ---- */
.breadcrumb-bar {
  background: var(--bg-section);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border-light); }
.breadcrumb .current { color: var(--primary); font-weight: 600; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.page-hero h1 { color: var(--text-white); margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ---- Slots / Collection Grid ---- */
.slots-section { padding: 64px 0; background: var(--bg-light); }
.slots-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border-light);
  background: #fff;
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.slot-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
}
.slot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.slot-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.slot-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.slot-card-body { padding: 14px; }
.slot-card-body h4 { font-size: 0.92rem; color: var(--text-dark); margin-bottom: 4px; }
.slot-card-body .sc-provider { font-size: 0.78rem; color: var(--text-muted); }
.slot-card-body .sc-rtp {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 6px;
}

/* ---- Sports Section ---- */
.sports-section { padding: 64px 0; background: var(--bg-light); }
.sports-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.event-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.event-sport-tag {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.event-time { font-size: 0.8rem; color: var(--text-muted); }
.event-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.event-team { text-align: center; flex: 1; }
.event-team .team-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.event-vs { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.event-odds {
  display: flex;
  gap: 8px;
}
.odd-btn {
  flex: 1;
  padding: 8px;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition);
}
.odd-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.odd-btn .odd-label { font-size: 0.7rem; font-weight: 400; color: var(--text-muted); display: block; }

/* ---- About Page ---- */
.about-section { padding: 64px 0; background: var(--bg-light); }
.about-story {
  max-width: 860px;
  margin: 0 auto;
}
.about-story h2 { color: var(--text-dark); margin-bottom: 16px; }
.about-story h3 { color: var(--primary); margin: 28px 0 12px; }
.about-story p { color: var(--text-body); line-height: 1.85; font-size: 0.97rem; }
.about-story ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.about-story ul li { color: var(--text-body); margin-bottom: 8px; font-size: 0.95rem; }
.about-timeline {
  position: relative;
  padding-left: 30px;
  margin: 32px 0;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item .tl-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-item h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- Privacy Policy ---- */
.policy-section { padding: 64px 0; background: var(--bg-light); }
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.policy-content h2 { color: var(--primary); margin: 28px 0 12px; font-size: 1.2rem; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--text-body); font-size: 0.95rem; line-height: 1.8; }
.policy-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.policy-content ul li { color: var(--text-body); font-size: 0.93rem; margin-bottom: 6px; }

/* ---- FAQ Page ---- */
.faq-page-section { padding: 64px 0; background: var(--bg-light); }
.faq-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.faq-cat-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border-light);
  background: #fff;
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.faq-related {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 48px;
}
.faq-related h3 { color: var(--text-dark); margin-bottom: 16px; }
.faq-related-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.faq-related-links a {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-related-links a:hover { border-color: var(--primary); color: var(--primary); }

/* ---- 404 Page ---- */
.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-light);
}
.error-inner { max-width: 500px; }
.error-code {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-inner h2 { color: var(--text-dark); margin-bottom: 12px; }
.error-inner p { color: var(--text-muted); margin-bottom: 28px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding-top: 56px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .footer-logo {
  max-width: 160px;
  max-height: 44px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); }
.footer-col h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--secondary); }
.footer-contact-info { font-size: 0.88rem; }
.footer-contact-info p { margin-bottom: 8px; color: var(--text-muted); }
.footer-contact-info strong { color: var(--text-light); }
.footer-contact-info a { color: var(--text-muted); }
.footer-contact-info a:hover { color: var(--secondary); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--secondary); }
.footer-copyright { color: var(--text-muted); }

/* ---- Utility ---- */
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 40px 0; }
.bg-dark-section { background: var(--bg-dark); }
.bg-mid-section { background: var(--bg-mid); }
.bg-light-section { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.w-100 { width: 100%; }
.rounded { border-radius: var(--radius-md); }
.shadow { box-shadow: var(--shadow-md); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-events-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .policy-content { padding: 24px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: 1fr; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(230,57,70,0.3); }
  50%       { box-shadow: 0 0 28px rgba(230,57,70,0.6); }
}
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
