/* ============================================================
   BAJI 888 - Global Stylesheet
   Site: https://www.baji888app.com
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --color-primary: #0d1b3e;
  --color-primary-dark: #070e20;
  --color-secondary: #1a2a5e;
  --color-accent: #f5c518;
  --color-accent-light: #ffe066;
  --color-accent-dark: #c9960a;
  --color-danger: #e63946;
  --color-danger-dark: #c1121f;
  --color-success: #2dc653;
  --color-text: #e8eaf0;
  --color-text-muted: #9aa3b8;
  --color-text-dark: #1a1a2e;
  --color-bg-dark: #070e20;
  --color-bg-card: rgba(255,255,255,0.05);
  --color-bg-card-hover: rgba(255,255,255,0.09);
  --color-border: rgba(245,197,24,0.2);
  --color-border-strong: rgba(245,197,24,0.5);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 20px rgba(245,197,24,0.25);
  --shadow-btn: 0 4px 16px rgba(230,57,70,0.4);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --transition: 0.25s ease;
  --header-height: 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);
  background: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-light); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-weight: 700; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gold { 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); }

/* ---- Section Titles ---- */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-accent);
  margin-bottom: 12px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin-top: 10px;
}
.text-center .section-title::after { margin: 10px auto 0; }
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,14,32,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-height: 48px;
}
.site-logo svg {
  height: 44px;
  width: auto;
  max-width: 160px;
  display: block;
}
@media (max-width: 768px) {
  .site-logo svg { height: 36px; max-width: 130px; }
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(245,197,24,0.12);
  color: var(--color-accent);
}

/* Header CTA Buttons */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-register:hover {
  background: linear-gradient(135deg, #ff4d5a, var(--color-danger));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.55);
}
.btn-login {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-login:hover {
  background: var(--color-accent);
  color: var(--color-text-dark);
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-text-dark);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,197,24,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BANNER
   ============================================================ */
.home-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #0a0a1a;
  max-height: 480px;
}
.home-banner img,
.home-banner object,
.home-banner .banner-svg-wrap {
  width: 100%;
  height: auto;
  display: block;
}
.home-banner .banner-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .home-banner { max-height: 220px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(160deg, #0d1b3e 0%, #070e20 60%, #1a0a2e 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid var(--color-border-strong);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-title .highlight {
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 4px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(245,197,24,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--color-accent);
}
.card-icon svg { width: 28px; height: 28px; }
.card-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.card-text { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.6; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURE CATEGORIES
   ============================================================ */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  background: linear-gradient(135deg, rgba(13,27,62,0.9), rgba(26,10,46,0.9));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.2);
}
.category-card .cat-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: rgba(245,197,24,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: background var(--transition);
}
.category-card:hover .cat-icon { background: rgba(245,197,24,0.2); }
.category-card .cat-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.category-card .cat-desc { font-size: 0.82rem; color: var(--color-text-muted); }
@media (max-width: 1024px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(90deg, #0d1b3e, #1a0a2e, #0d1b3e);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 50px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item {}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--color-text-muted); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps-section { background: rgba(13,27,62,0.4); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-border-strong), transparent);
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-text-dark);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(245,197,24,0.3);
  position: relative;
  z-index: 1;
}
.step-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 0.88rem; color: var(--color-text-muted); }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

/* ============================================================
   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;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--color-border-strong); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--color-bg-card);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover { background: var(--color-bg-card-hover); }
.faq-item.open .faq-question { background: rgba(245,197,24,0.08); color: var(--color-accent); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  background: rgba(245,197,24,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 700;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--color-accent); color: var(--color-text-dark); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: rgba(245,197,24,0.04);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer a { color: var(--color-accent); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1b3e 50%, #070e20 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.cta-desc { color: var(--color-text-muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section { background: rgba(7,14,32,0.8); }
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.video-title-block { text-align: center; margin-bottom: 32px; }
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ============================================================
   LONG CONTENT / ARTICLE SECTIONS
   ============================================================ */
.content-section { background: rgba(13,27,62,0.3); }
.content-block { max-width: 900px; }
.content-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--color-accent);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-size: 1.15rem;
  color: #fff;
  margin: 28px 0 12px;
}
.content-block p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.content-block ul, .content-block ol {
  margin: 12px 0 20px 20px;
  color: var(--color-text-muted);
  font-size: 0.97rem;
}
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { margin-bottom: 8px; line-height: 1.7; }
.content-block strong { color: var(--color-text); }
.content-block a { color: var(--color-accent); }

/* Bullet list styled */
.bullet-list { list-style: none; margin: 0 0 20px; }
.bullet-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.97rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bullet-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-section {
  background: rgba(13,27,62,0.5);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--color-accent); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a0a2e 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-dark));
}
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero-desc { color: var(--color-text-muted); font-size: 1.05rem; max-width: 600px; }

/* ============================================================
   PROMOTION CARDS
   ============================================================ */
.promo-card {
  background: linear-gradient(135deg, rgba(13,27,62,0.95), rgba(26,10,46,0.95));
  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(-4px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.15);
}
.promo-card-header {
  background: linear-gradient(135deg, var(--color-danger), var(--color-danger-dark));
  padding: 20px 24px;
  position: relative;
}
.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.promo-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.promo-card-body { padding: 20px 24px; }
.promo-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.promo-desc { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 16px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th {
  background: rgba(245,197,24,0.1);
  color: var(--color-accent);
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--color-border-strong);
  font-weight: 700;
}
.compare-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.compare-table tr:hover td { background: rgba(255,255,255,0.03); }
.compare-table .check { color: var(--color-success); font-weight: 700; }
.compare-table .cross { color: var(--color-danger); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-family: var(--font-stack);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { color: var(--color-danger); font-size: 0.82rem; margin-top: 5px; display: none; }
.form-success {
  background: rgba(45,198,83,0.1);
  border: 1px solid rgba(45,198,83,0.3);
  color: var(--color-success);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  display: none;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-bar {
  background: rgba(13,27,62,0.6);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg { color: var(--color-accent); flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #040a18;
  border-top: 1px solid var(--color-border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  max-height: 44px;
}
.footer-logo svg { height: 40px; width: auto; max-width: 150px; }
.footer-tagline { color: var(--color-text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-accent); }

/* Footer contact info */
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-contact-value {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.footer-contact-value a { color: var(--color-text-muted); }
.footer-contact-value a:hover { color: var(--color-accent); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: var(--color-accent); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-text-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(245,197,24,0.55); }

/* ============================================================
   RESPONSIVE HEADER
   ============================================================ */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(7,14,32,0.98);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .site-header { position: relative; }
}
@media (max-width: 600px) {
  .header-cta .btn { padding: 8px 14px; font-size: 0.82rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   MISC SECTIONS
   ============================================================ */
.alt-bg { background: rgba(13,27,62,0.4); }
.dark-bg { background: rgba(7,14,32,0.8); }

/* Info box */
.info-box {
  background: rgba(245,197,24,0.06);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
.info-box strong { color: var(--color-accent); }

/* Warning box */
.warning-box {
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.25);
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* Related links */
.related-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.08);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.related-link:hover {
  background: rgba(245,197,24,0.15);
  border-color: var(--color-border-strong);
  color: var(--color-accent-light);
  transform: translateY(-2px);
}

/* Tabs */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  font-family: var(--font-stack);
}
.tab-btn:hover { color: var(--color-accent); }
.tab-btn.active { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* 404 page */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 16px;
}
.error-title { font-size: 1.8rem; color: #fff; margin-bottom: 12px; }
.error-desc { color: var(--color-text-muted); margin-bottom: 32px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Policy pages */
.policy-content { max-width: 860px; }
.policy-content h2 {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content ul {
  list-style: disc;
  margin: 10px 0 16px 24px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.policy-content li { margin-bottom: 6px; line-height: 1.7; }
.policy-content strong { color: var(--color-text); }

/* Slots grid */
.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: all var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.15);
}
.slot-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, rgba(13,27,62,0.8), rgba(26,10,46,0.8));
}
.slot-info { padding: 12px 14px; }
.slot-name { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.slot-rtp { font-size: 0.78rem; color: var(--color-accent); }
@media (max-width: 1024px) { .slots-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .slots-grid { grid-template-columns: repeat(2, 1fr); } }

/* Cricket match cards */
.match-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}
.match-card:hover { border-color: var(--color-border-strong); background: var(--color-bg-card-hover); }
.match-league { font-size: 0.78rem; color: var(--color-accent); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.match-team { font-size: 0.95rem; font-weight: 700; color: #fff; }
.match-vs { font-size: 0.78rem; color: var(--color-text-muted); font-weight: 600; }
.match-odds {
  display: flex;
  gap: 8px;
}
.odd-btn {
  flex: 1;
  background: rgba(245,197,24,0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-text);
  font-size: 0.82rem;
}
.odd-btn:hover { background: rgba(245,197,24,0.18); border-color: var(--color-accent); color: var(--color-accent); }
.odd-label { font-size: 0.72rem; color: var(--color-text-muted); display: block; }
.odd-value { font-weight: 700; font-size: 0.95rem; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(245,197,24,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,197,24,0.5); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }
