/* ============================================================
   GameBay VIP - Global Stylesheet
   Site: https://www.gamebay.vip
   Language: bn-BD (Bengali - Bangladesh)
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --color-primary:      #f5a623;
  --color-primary-dark: #d4891a;
  --color-accent:       #e63946;
  --color-bg-dark:      #0d0d1a;
  --color-bg-mid:       #12122a;
  --color-bg-card:      #1a1a35;
  --color-bg-card2:     #1e1e40;
  --color-surface:      #22224a;
  --color-text:         #e8e8f0;
  --color-text-muted:   #9898b8;
  --color-text-light:   #ffffff;
  --color-border:       rgba(245,166,35,0.18);
  --color-topbar-bg:    #0a0a18;
  --color-header-bg:    #0d0d1a;
  --color-nav-bg:       #111128;
  --color-footer-bg:    #0a0a18;
  --color-footer-mid:   #0d0d22;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 18px rgba(245,166,35,0.22);

  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;

  --container-max: 1200px;
  --header-h: 70px;
  --topbar-h: 36px;
  --nav-h: 52px;
}

/* ---- 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);
  background: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-stack);
  color: var(--color-text-light);
  line-height: 1.3;
  font-weight: 700;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--color-topbar-bg);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(245,166,35,0.12);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-left {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: .5px;
}
.topbar-right {
  font-size: 12px;
  color: var(--color-text-muted);
}
.topbar-right span { margin-left: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--color-header-bg);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img,
.site-logo svg {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .logo-brand {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 1px;
}
.logo-text .logo-sub {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(245,166,35,0.12);
  color: var(--color-primary);
}

/* Header CTA Buttons */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, #f5a623 0%, #e8860a 100%);
  color: #0d0d1a;
  box-shadow: 0 2px 12px rgba(245,166,35,0.35);
}
.btn-register:hover {
  background: linear-gradient(135deg, #ffc04a 0%, #f5a623 100%);
  color: #0d0d1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(245,166,35,0.5);
}
.btn-login {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-login:hover {
  background: var(--color-primary);
  color: #0d0d1a;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,24,0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--color-text-light);
  font-size: 20px;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: var(--radius-md);
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: rgba(245,166,35,0.15); color: var(--color-primary); }
.mobile-menu .mobile-ctas {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 28px;
  cursor: pointer;
}

/* ============================================================
   CATEGORY NAV BAR (below header)
   ============================================================ */
.cat-nav {
  background: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav .container {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--nav-h);
}
.cat-nav a {
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.cat-nav a:hover,
.cat-nav a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ============================================================
   HERO BANNER SLIDER
   ============================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-mid);
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.banner-slider {
  position: relative;
}
.banner-slide { display: none; }
.banner-slide.active { display: block; }
.banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background .2s;
}
.banner-dot.active { background: var(--color-primary); }

/* ============================================================
   SHORTCUT ICON GRID (Quick Entry)
   ============================================================ */
.shortcut-grid {
  padding: 28px 0 20px;
  background: var(--color-bg-mid);
}
.shortcut-grid .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.shortcut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
}
.shortcut-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-primary);
}
.shortcut-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.shortcut-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 48px 0; }
.section-alt { background: var(--color-bg-mid); }
.section-dark { background: var(--color-bg-dark); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-light);
  position: relative;
  padding-left: 14px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}
.section-link {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================================
   FEATURE CARDS (3-col)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.feature-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   GAME CATEGORY CARDS (2-col or 3-col)
   ============================================================ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-primary);
}
.game-card-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.game-card-body {
  padding: 16px;
}
.game-card-body h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--color-text-light);
}
.game-card-body p {
  font-size: 13px;
  color: var(--color-text-muted);
}
.game-card-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #0d0d1a;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  margin-bottom: 8px;
}

/* ============================================================
   CONTENT FEED / ARTICLE LIST
   ============================================================ */
.content-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feed-item {
  display: flex;
  gap: 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: border-color .2s;
}
.feed-item:hover { border-color: var(--color-primary); }
.feed-thumb {
  width: 100px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
}
.feed-thumb img { width: 100%; height: 100%; object-fit: cover; }
.feed-body { flex: 1; }
.feed-body h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--color-text-light);
}
.feed-body p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.feed-meta {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ============================================================
   LONG-FORM CONTENT AREA
   ============================================================ */
.longform {
  max-width: 860px;
  margin: 0 auto;
}
.longform h1 { font-size: 28px; margin-bottom: 20px; }
.longform h2 { font-size: 22px; margin: 32px 0 14px; color: var(--color-primary); }
.longform h3 { font-size: 18px; margin: 24px 0 10px; }
.longform p { font-size: 15px; color: var(--color-text); margin-bottom: 16px; line-height: 1.8; }
.longform ul, .longform ol {
  margin: 12px 0 20px 20px;
  color: var(--color-text);
}
.longform li { margin-bottom: 8px; font-size: 15px; line-height: 1.7; }
.longform ul li { list-style: disc; }
.longform ol li { list-style: decimal; }
.longform blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 12px 20px;
  background: var(--color-bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--color-text-muted);
}
.longform strong { color: var(--color-primary); }
.longform a { color: var(--color-primary); text-decoration: underline; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-light);
  transition: background .2s;
}
.faq-question:hover { background: rgba(245,166,35,0.06); }
.faq-question .faq-icon {
  font-size: 20px;
  color: var(--color-primary);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section { padding: 48px 0; background: var(--color-bg-mid); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a35 0%, #0d0d1a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--color-text-light);
}
.cta-section p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, #f5a623 0%, #e8860a 100%);
  color: #0d0d1a;
  padding: 14px 36px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245,166,35,0.55);
  color: #0d0d1a;
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 32px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #0d0d1a;
  transform: translateY(-2px);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-mid);
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 48px 0 36px;
  background: linear-gradient(135deg, #12122a 0%, #0d0d1a 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.page-hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--color-text-light);
}
.page-hero p {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   SLOTS PAGE - GAME LISTING GRID
   ============================================================ */
.slots-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: #0d0d1a;
  border-color: var(--color-primary);
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.slot-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.slot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-primary);
}
.slot-thumb {
  width: 100%;
  height: 120px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.slot-info {
  padding: 12px;
}
.slot-info h4 {
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--color-text-light);
}
.slot-info .slot-provider {
  font-size: 11px;
  color: var(--color-text-muted);
}
.slot-info .slot-rtp {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================================
   SPORTS PAGE
   ============================================================ */
.sports-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 50%, #0d0d1a 100%);
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}
.sports-hero h1 { font-size: 30px; margin-bottom: 12px; }
.sports-hero p { font-size: 15px; color: var(--color-text-muted); max-width: 600px; }

.match-list { display: flex; flex-direction: column; gap: 12px; }
.match-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .2s;
}
.match-card:hover { border-color: var(--color-primary); }
.match-sport-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.match-info { flex: 1; }
.match-teams {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.match-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}
.match-status {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  flex-shrink: 0;
}
.match-status.live {
  background: rgba(230,57,70,0.2);
  color: #e63946;
  border: 1px solid rgba(230,57,70,0.4);
}
.match-status.upcoming {
  background: rgba(245,166,35,0.15);
  color: var(--color-primary);
  border: 1px solid rgba(245,166,35,0.3);
}

.sports-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sport-cat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
}
.sport-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-primary);
}
.sport-cat-icon { font-size: 40px; margin-bottom: 12px; }
.sport-cat-card h3 { font-size: 14px; color: var(--color-text-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-timeline {
  position: relative;
  padding-left: 32px;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(245,166,35,0.5);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.timeline-item h3 { font-size: 17px; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; }

/* ============================================================
   PRIVACY / POLICY PAGE
   ============================================================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--color-primary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.policy-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}
.policy-content ul {
  margin: 10px 0 16px 20px;
}
.policy-content li {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  list-style: disc;
  line-height: 1.7;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: 100px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(245,166,35,0.3);
}
.error-page h2 { font-size: 24px; margin-bottom: 12px; }
.error-page p { font-size: 15px; color: var(--color-text-muted); margin-bottom: 28px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-border);
}
.footer-main {
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand .footer-logo img,
.footer-brand .footer-logo svg {
  height: 40px;
  width: auto;
}
.footer-brand p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--color-primary); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.contact-item .contact-icon {
  color: var(--color-primary);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item a { color: var(--color-text-muted); }
.contact-item a:hover { color: var(--color-primary); }

.footer-bottom {
  background: var(--color-footer-mid);
  border-top: 1px solid var(--color-border);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--color-text-muted);
}
.footer-bottom-links a:hover { color: var(--color-primary); }
.footer-copyright {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--color-primary);
  color: #0d0d1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 999;
  border: none;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 32px 0;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}
.badge-live { background: rgba(230,57,70,0.2); color: #e63946; border: 1px solid rgba(230,57,70,0.4); }
.badge-hot { background: rgba(245,166,35,0.2); color: var(--color-primary); border: 1px solid rgba(245,166,35,0.3); }
.badge-new { background: rgba(0,200,100,0.2); color: #00c864; border: 1px solid rgba(0,200,100,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .sports-categories { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .shortcut-grid .container { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .topbar { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-categories { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .shortcut-grid .container { grid-template-columns: repeat(3, 1fr); }
  .section-title { font-size: 18px; }
  .longform h1 { font-size: 22px; }
  .longform h2 { font-size: 18px; }
  .page-hero h1 { font-size: 24px; }
  .cta-section h2 { font-size: 22px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .cat-nav { display: none; }
  .error-code { font-size: 70px; }
}

@media (max-width: 480px) {
  .game-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-categories { grid-template-columns: repeat(2, 1fr); }
  .shortcut-grid .container { grid-template-columns: repeat(2, 1fr); }
  .header-ctas .btn-login { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
