/* ============================================================
   BAJI999 - Global Stylesheet
   Site: https://www.999bajibd.com
   Language: Bengali (bn-BD) | Market: Bangladesh
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --color-primary:       #9b0000;
  --color-primary-dark:  #6b0000;
  --color-primary-light: #c40000;
  --color-accent:        #f5a623;
  --color-accent-gold:   #ffd700;
  --color-accent-hover:  #e8320a;
  --color-bg-dark:       #0f0000;
  --color-bg-mid:        #1a0000;
  --color-bg-card:       #2a0505;
  --color-bg-card2:      #1f0303;
  --color-bg-section:    #150000;
  --color-text-primary:  #ffffff;
  --color-text-muted:    #ccb8b8;
  --color-text-gold:     #f5ce6b;
  --color-border:        rgba(245,166,35,0.25);
  --color-border-strong: rgba(245,166,35,0.5);
  --color-divider:       rgba(255,255,255,0.08);

  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --shadow-card:   0 4px 20px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 20px rgba(245,166,35,0.2);
  --shadow-btn:    0 4px 14px rgba(232,50,10,0.5);

  --transition: 0.25s ease;

  --container-max: 1280px;
  --header-height: 70px;
}

/* ---- 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-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-gold); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-gold);
}

p { margin-bottom: 1rem; }

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold   { color: var(--color-accent-gold); }
.text-accent { color: var(--color-accent); }
.text-muted  { color: var(--color-text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-register {
  background: linear-gradient(135deg, #e8320a, #9b0000);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-register:hover {
  background: linear-gradient(135deg, #ff4a1f, #c40000);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,50,10,0.6);
}

.btn-login {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-login:hover {
  background: var(--color-accent);
  color: #000;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #e8320a);
  color: #000;
  font-weight: 800;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent));
  color: #000;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #000;
}

.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

/* ---- Top Info Bar ---- */
.topbar {
  background: var(--color-primary-dark);
  border-bottom: 1px solid var(--color-border);
  padding: 6px 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 16px; align-items: center; }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar a { color: var(--color-text-muted); font-size: 0.78rem; }
.topbar a:hover { color: var(--color-accent); }
.topbar-badge {
  background: var(--color-accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img,
.site-logo svg {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.main-nav a {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.88rem;
  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(--color-accent);
  background: rgba(245,166,35,0.1);
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text-primary);
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: all var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-bg-mid);
  border-right: 1px solid var(--color-border);
  z-index: 2000;
  overflow-y: auto;
  padding: 20px 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 12px;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-links a {
  display: block;
  padding: 12px 20px;
  color: var(--color-text-primary);
  font-weight: 600;
  border-bottom: 1px solid var(--color-divider);
  transition: all var(--transition);
}
.mobile-nav-links a:hover { color: var(--color-accent); background: rgba(245,166,35,0.05); }
.mobile-nav-cta {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ---- Banner / Hero ---- */
.home-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-mid);
  border-bottom: 2px solid var(--color-border);
}
.home-banner img,
.home-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* ---- Sections ---- */
.section {
  padding: 60px 0;
}
.section-sm { padding: 40px 0; }
.section-lg { padding: 80px 0; }
.section-dark { background: var(--color-bg-dark); }
.section-mid  { background: var(--color-bg-mid); }
.section-card { background: var(--color-bg-section); }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 1.9rem;
  color: var(--color-text-gold);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-title-line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ---- Shortcut / Quick Access Grid ---- */
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.shortcut-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.shortcut-card:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-card2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.shortcut-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid var(--color-border);
}
.shortcut-card:hover .shortcut-icon {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-accent-hover), var(--color-primary));
}
.shortcut-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ---- Feature Cards ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.feature-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Game / Category Cards ---- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.game-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.game-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.game-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-bg-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6));
}
.game-card-body { padding: 16px; }
.game-card-body h3 {
  font-size: 1rem;
  color: var(--color-text-gold);
  margin-bottom: 6px;
}
.game-card-body p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}
.game-card-badge {
  display: inline-block;
  background: var(--color-accent-hover);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}

/* ---- Content Feed / Post Cards ---- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.post-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.post-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}
.post-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-primary), var(--color-bg-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.post-card-body { padding: 18px; }
.post-card-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.post-card-body h3 {
  font-size: 1rem;
  color: var(--color-text-gold);
  margin-bottom: 8px;
}
.post-card-body h3 a { color: inherit; }
.post-card-body h3 a:hover { color: var(--color-accent); }
.post-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}
.post-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* ---- Promo Banner Strip ---- */
.promo-strip {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.promo-strip-text h3 {
  font-size: 1.4rem;
  color: var(--color-accent-gold);
  margin-bottom: 6px;
}
.promo-strip-text p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-item {
  background: var(--color-bg-card);
  padding: 24px 20px;
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ---- Long-form Content Area ---- */
.content-body {
  max-width: 860px;
  margin: 0 auto;
}
.content-body h2 {
  font-size: 1.5rem;
  color: var(--color-text-gold);
  margin: 2rem 0 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.content-body h3 {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin: 1.5rem 0 0.75rem;
}
.content-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.content-body ul, .content-body ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-body ol { list-style: decimal; }
.content-body li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.content-body strong { color: var(--color-text-primary); }
.content-body a { color: var(--color-accent); }
.content-body a:hover { color: var(--color-accent-gold); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: 0;
}
.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(--color-text-muted); opacity: 0.5; }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb [aria-current="page"] { color: var(--color-accent); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-bg-mid) 100%);
  border-bottom: 2px solid var(--color-border);
  padding: 48px 0 40px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2rem;
  color: var(--color-text-gold);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-bg-card);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  font-family: var(--font-stack);
}
.faq-question:hover { color: var(--color-accent); }
.faq-question.active { color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px solid var(--color-divider);
}
.faq-answer.open { display: block; }
.faq-answer a { color: var(--color-accent); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-bg-mid));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  color: var(--color-text-gold);
  margin-bottom: 14px;
}
.cta-section p {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- YouTube Video Module ---- */
.video-section { padding: 60px 0; background: var(--color-bg-section); }
.video-section .section-header { margin-bottom: 30px; }
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.video-wrapper::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* ---- Contact Form ---- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--color-text-primary);
  font-size: 0.9rem;
  font-family: var(--font-stack);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ---- Contact Info Block ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.contact-info-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.contact-info-item h4 {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- Policy / Terms Pages ---- */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 0;
}
.policy-content h2 {
  font-size: 1.4rem;
  color: var(--color-text-gold);
  margin: 2.5rem 0 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.policy-content h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin: 1.5rem 0 0.75rem;
}
.policy-content p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
}
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-content li {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

/* ---- Listing / Archive Page ---- */
.listing-header {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-bg-mid));
  padding: 40px 0;
  border-bottom: 2px solid var(--color-border);
}
.listing-header h1 {
  font-size: 1.8rem;
  color: var(--color-text-gold);
  margin-bottom: 10px;
}
.listing-header p {
  color: var(--color-text-muted);
  max-width: 600px;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.listing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.listing-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.listing-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-primary), var(--color-bg-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.listing-card-body { padding: 18px; }
.listing-card-body h3 {
  font-size: 1rem;
  color: var(--color-text-gold);
  margin-bottom: 8px;
}
.listing-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.listing-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ---- Steps / Process ---- */
.steps-list { counter-reset: step; }
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h4 {
  font-size: 1rem;
  color: var(--color-text-gold);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Related Links / Internal Nav ---- */
.related-links {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 40px;
}
.related-links h4 {
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.related-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-links li a {
  display: inline-block;
  background: var(--color-bg-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.related-links li a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ---- Trust Badges ---- */
.trust-bar {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.trust-item-icon { font-size: 1.2rem; color: var(--color-accent); }

/* ---- Footer ---- */
.site-footer {
  background: var(--color-primary-dark);
  border-top: 2px solid var(--color-border);
  padding-top: 50px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-divider);
}
.footer-brand {}
.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 0.9rem;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.footer-contact-item strong {
  color: var(--color-text-gold);
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}
.footer-bottom-links a:hover { color: var(--color-accent); }

/* ---- 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: 8rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(155,0,0,0.5);
}
.error-page h2 {
  font-size: 1.6rem;
  color: var(--color-text-gold);
  margin-bottom: 12px;
}
.error-page p {
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
}
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Highlight Box ---- */
.highlight-box {
  background: linear-gradient(135deg, rgba(155,0,0,0.3), rgba(26,0,0,0.5));
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}
.highlight-box h4 {
  color: var(--color-accent);
  margin-bottom: 10px;
}
.highlight-box p, .highlight-box li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ---- Promotion Cards ---- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.promo-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.promo-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.promo-card-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.promo-card-header .promo-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-accent-gold);
  line-height: 1;
}
.promo-card-header .promo-type {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.promo-card-body { padding: 20px; }
.promo-card-body h3 {
  font-size: 1rem;
  color: var(--color-text-gold);
  margin-bottom: 8px;
}
.promo-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.promo-tag {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

/* ---- Sports / Events ---- */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.sport-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.sport-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.sport-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.sport-card h3 {
  font-size: 1rem;
  color: var(--color-text-gold);
  margin-bottom: 6px;
}
.sport-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Slots Grid ---- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.slot-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
}
.slot-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.slot-card-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-bg-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.slot-card-name {
  padding: 10px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav-drawer { display: block; }

  .site-logo img, .site-logo svg {
    height: 36px;
    max-height: 36px;
    max-width: 140px;
  }

  .header-cta .btn-login { display: none; }

  .section { padding: 40px 0; }
  .section-lg { padding: 50px 0; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero h1 { font-size: 1.5rem; }
  .cta-section h2 { font-size: 1.5rem; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .promo-strip {
    flex-direction: column;
    text-align: center;
  }

  .topbar { display: none; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .error-code { font-size: 5rem; }
  .section-header h2 { font-size: 1.5rem; }
}
