/* ============================================================
   BAJI 999 - Global Stylesheet
   Domain: bajigame-999.com
   ============================================================ */

/* ---- CSS Variables / Design System ---- */
:root {
  --primary: #C8A84B;
  --primary-dark: #A07830;
  --primary-light: #F0D080;
  --accent: #E63946;
  --accent-hover: #C1121F;
  --bg-dark: #0A1628;
  --bg-mid: #0F2040;
  --bg-card: #132238;
  --bg-card2: #1A2E4A;
  --bg-section: #0D1B35;
  --text-primary: #F0E6CC;
  --text-secondary: #A8B8CC;
  --text-muted: #6A7F96;
  --border: rgba(200,168,75,0.25);
  --border-light: rgba(200,168,75,0.12);
  --shadow-gold: 0 4px 24px rgba(200,168,75,0.18);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.45);
  --shadow-btn: 0 4px 18px rgba(200,168,75,0.35);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --header-h: 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-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }
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: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--primary); }
.text-accent { color: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---- Section Titles ---- */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin-top: 10px;
}
.section-title.center::after { margin: 10px auto 0; }
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0A1628;
  box-shadow: var(--shadow-btn);
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #0A1628;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,168,75,0.5);
}
.btn-login {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-login:hover {
  background: var(--primary);
  color: #0A1628;
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0A1628;
  box-shadow: var(--shadow-btn);
  padding: 13px 32px;
  font-size: 1rem;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #0A1628;
  transform: translateY(-2px);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  padding: 13px 32px;
  font-size: 1rem;
}
.btn-accent:hover {
  background: linear-gradient(135deg, #ff6b6b, var(--accent));
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 28px;
}
.btn-outline:hover {
  background: var(--primary);
  color: #0A1628;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,22,40,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  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;
  height: var(--header-h);
  gap: 16px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  pointer-events: none;
  user-select: none;
}
.site-logo svg {
  width: auto;
  height: 44px;
  max-height: 44px;
  display: block;
}
@media (max-width: 768px) {
  .site-logo svg { height: 36px; max-height: 36px; }
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: rgba(200,168,75,0.1);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-cta .btn {
  padding: 9px 20px;
  font-size: 0.88rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  padding: 6px;
  border-radius: var(--radius-sm);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(10,22,40,0.99);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
  background: rgba(200,168,75,0.08);
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero-section {
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero-banner-wrap {
  width: 100%;
  position: relative;
  background: var(--bg-mid);
  overflow: hidden;
}
.hero-banner-wrap img,
.hero-banner-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}
.hero-content {
  padding: 64px 0 56px;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--primary);
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(200,168,75,0.3);
}
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  padding-top: 48px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 640px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-muted); opacity: 0.5; }
.breadcrumb .current { color: var(--primary); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 28px; height: 28px; color: var(--primary); }
.card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Grid layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURE CATEGORY CARDS
   ============================================================ */
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.cat-card:hover { border-color: var(--border); box-shadow: var(--shadow-gold); transform: translateY(-5px); }
.cat-card:hover::before { opacity: 1; }
.cat-card .cat-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: rgba(200,168,75,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cat-card .cat-icon svg { width: 36px; height: 36px; }
.cat-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.cat-card p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 20px; }
.cat-card a.btn { width: 100%; justify-content: center; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-section));
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-secondary); font-size: 0.9rem; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  gap: 12px;
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(200,168,75,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); }
.faq-icon svg { width: 14px; height: 14px; color: var(--primary); }
.faq-item.open .faq-icon svg { color: #0A1628; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.75;
}
.faq-answer a { color: var(--primary); }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  opacity: 0.3;
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0A1628;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(200,168,75,0.3);
}
.step-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.step-item p { color: var(--text-secondary); font-size: 0.9rem; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROMO CARDS
   ============================================================ */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.promo-card:hover { border-color: var(--border); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.promo-card-header {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card2));
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-card-header h3 { font-size: 1.2rem; color: var(--primary); }
.promo-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  margin: 8px 0;
}
.promo-card-body { padding: 20px 24px; }
.promo-card-body p { color: var(--text-secondary); font-size: 0.93rem; margin-bottom: 16px; }

/* ============================================================
   TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare-table th {
  background: var(--bg-mid);
  color: var(--primary);
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  font-weight: 700;
}
.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.compare-table tr:hover td { background: rgba(200,168,75,0.04); }
.compare-table .check { color: #4CAF50; font-weight: 700; }
.compare-table .cross { color: var(--accent); }

/* ============================================================
   VIDEO MODULE
   ============================================================ */
.video-section { background: var(--bg-section); }
.video-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  text-align: center;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--bg-mid) 0%, #1a0a2e 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  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(200,168,75,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--primary); margin-bottom: 14px; }
.cta-section p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.trust-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(200,168,75,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 26px; height: 26px; color: var(--primary); }
.trust-item h4 { font-size: 1rem; color: var(--primary); margin-bottom: 6px; }
.trust-item p { color: var(--text-secondary); font-size: 0.9rem; }

@media (max-width: 768px) { .trust-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LONG CONTENT / ARTICLE
   ============================================================ */
.content-article h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.content-article h3 {
  font-size: 1.2rem;
  color: var(--primary-light);
  margin: 28px 0 10px;
}
.content-article p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.content-article ul, .content-article ol {
  margin: 12px 0 20px 20px;
  color: var(--text-secondary);
}
.content-article ul { list-style: disc; }
.content-article ol { list-style: decimal; }
.content-article li { margin-bottom: 8px; font-size: 0.97rem; line-height: 1.7; }
.content-article strong { color: var(--text-primary); }
.content-article a { color: var(--primary); }

/* Bullet list styled */
.bullet-list {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.bullet-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: '▸';
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.97rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: var(--accent); font-size: 0.82rem; margin-top: 5px; display: none; }
.form-success {
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #81C784;
  font-size: 0.95rem;
  display: none;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #060E1C;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-info { margin-top: 4px; }
.footer-contact-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact-info a { color: var(--text-muted); }
.footer-contact-info a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-disclaimer {
  background: rgba(200,168,75,0.04);
  border-top: 1px solid var(--border-light);
  padding: 16px 0;
  text-align: center;
}
.footer-disclaimer p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .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(--primary), var(--primary-dark));
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(200,168,75,0.4);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); }
#back-to-top svg { width: 20px; height: 20px; color: #0A1628; }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: linear-gradient(135deg, rgba(200,168,75,0.08), rgba(200,168,75,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 28px 0;
}
.highlight-box h3 { color: var(--primary); margin-bottom: 12px; }
.highlight-box p { color: var(--text-secondary); font-size: 0.97rem; }

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   SLOTS GRID
   ============================================================ */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}
.slot-card:hover { border-color: var(--border); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.slot-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card2));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.slot-thumb svg { width: 56px; height: 56px; opacity: 0.7; }
.slot-info { padding: 14px 16px; }
.slot-info h4 { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 4px; }
.slot-info span { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 900px) { .slots-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .slots-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   CRICKET SECTION
   ============================================================ */
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all var(--transition);
  flex-wrap: wrap;
}
.match-card:hover { border-color: var(--border); box-shadow: var(--shadow-gold); }
.match-teams { display: flex; align-items: center; gap: 12px; }
.team-name { font-weight: 700; color: var(--text-primary); font-size: 1rem; }
.vs-badge {
  background: rgba(200,168,75,0.15);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.match-meta { color: var(--text-muted); font-size: 0.85rem; }
.match-odds { display: flex; gap: 8px; }
.odd-btn {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.odd-btn:hover { background: var(--primary); color: #0A1628; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.policy-content h3 {
  font-size: 1.1rem;
  color: var(--primary-light);
  margin: 24px 0 8px;
}
.policy-content p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content ul {
  margin: 10px 0 18px 20px;
  list-style: disc;
  color: var(--text-secondary);
}
.policy-content ul li { margin-bottom: 8px; font-size: 0.97rem; line-height: 1.7; }
.policy-content a { color: var(--primary); }
.policy-date {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 32px;
  display: inline-block;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-dark);
}
.error-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 16px;
}
.error-page h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--primary); margin-bottom: 14px; }
.error-page p { color: var(--text-secondary); font-size: 1.05rem; max-width: 480px; margin: 0 auto 32px; }
.error-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--bg-mid); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 48px 0; }
  .hero-content { padding: 40px 0 36px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .contact-form { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .section-pad { padding: 36px 0; }
  .btn-primary, .btn-accent { width: 100%; justify-content: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,75,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(200,168,75,0); }
}
.pulse { animation: pulse-gold 2s infinite; }

/* ============================================================
   RELATED LINKS SECTION
   ============================================================ */
.related-links {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.related-links h4 { color: var(--primary); margin-bottom: 14px; font-size: 1rem; }
.related-links ul { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links ul li a {
  display: inline-block;
  background: var(--bg-mid);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 6px 16px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.related-links ul li a:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   CONTACT INFO BLOCK
   ============================================================ */
.contact-info-block {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.contact-info-block h3 { color: var(--primary); margin-bottom: 18px; font-size: 1.1rem; }
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .ci-icon {
  width: 36px; height: 36px;
  background: rgba(200,168,75,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-row .ci-icon svg { width: 18px; height: 18px; color: var(--primary); }
.contact-info-row .ci-text span { display: block; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 2px; }
.contact-info-row .ci-text a,
.contact-info-row .ci-text p { color: var(--text-secondary); font-size: 0.95rem; }
.contact-info-row .ci-text a:hover { color: var(--primary); }
