/* ============================================================
   BAJI365 - Global Stylesheet
   Site: www.bajibd-365.com
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --color-bg-primary: #0d0d1a;
  --color-bg-secondary: #12122a;
  --color-bg-card: #1a1a35;
  --color-bg-card-hover: #22224a;
  --color-bg-section-alt: #0f0f22;
  --color-accent-gold: #f5c518;
  --color-accent-gold-dark: #e8a000;
  --color-accent-purple: #7b2ff7;
  --color-accent-purple-light: #9d5ff9;
  --color-accent-orange: #ff6b35;
  --color-text-primary: #f0f0f8;
  --color-text-secondary: #a0a0c0;
  --color-text-muted: #6a6a8a;
  --color-border: rgba(245, 197, 24, 0.2);
  --color-border-subtle: rgba(255,255,255,0.08);
  --gradient-gold: linear-gradient(135deg, #f5c518 0%, #ff8c00 100%);
  --gradient-purple: linear-gradient(135deg, #7b2ff7 0%, #4a00e0 100%);
  --gradient-dark: linear-gradient(180deg, #12122a 0%, #0d0d1a 100%);
  --gradient-card: linear-gradient(145deg, #1e1e3a 0%, #141430 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(245,197,24,0.25);
  --shadow-purple: 0 0 20px rgba(123,47,247,0.3);
  --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-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--color-accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-gold-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-weight: 700; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13,13,26,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
.logo-icon {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 22px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent-gold);
  background: rgba(245,197,24,0.08);
}

/* Header CTA Buttons */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.btn-register {
  background: var(--gradient-gold);
  color: #1a1a2e;
  box-shadow: 0 4px 14px rgba(245,197,24,0.35);
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.5);
  color: #1a1a2e;
}
.btn-login {
  background: transparent;
  color: var(--color-accent-gold);
  border: 2px solid var(--color-accent-gold);
}
.btn-login:hover {
  background: rgba(245,197,24,0.1);
  transform: translateY(-2px);
  color: var(--color-accent-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  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); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(13,13,26,0.98);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--color-text-secondary);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-accent-gold);
  background: rgba(245,197,24,0.08);
}

/* Page offset for fixed header */
.page-content { padding-top: var(--header-height); }

/* ============================================================
   BANNER
   ============================================================ */
.home-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #0d0d1a;
}
.home-banner img,
.home-banner svg {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,247,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--color-accent-gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gradient-gold);
  color: #1a1a2e;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.5);
  color: #1a1a2e;
}
.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  border: 2px solid var(--color-border-subtle);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  transform: translateY(-3px);
}
.btn-purple {
  background: var(--gradient-purple);
  color: #fff;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  box-shadow: var(--shadow-purple);
  transition: all var(--transition);
}
.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(123,47,247,0.5);
  color: #fff;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--color-bg-section-alt); }
.section-dark { background: var(--color-bg-secondary); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-title .gold { color: var(--color-accent-gold); }
.section-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gradient-purple);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-card);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(245,197,24,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: var(--color-text-primary);
}
.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
  color: var(--color-text-primary);
}
.category-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.category-icon svg { width: 48px; height: 48px; margin: 0 auto; }
.category-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.category-desc { font-size: 13px; color: var(--color-text-secondary); }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.step-item { text-align: center; position: relative; }
.step-number {
  width: 64px; height: 64px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #1a1a2e;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--color-text-secondary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--color-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  background: var(--gradient-card);
  transition: background var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--color-bg-card-hover); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  background: rgba(245,197,24,0.1);
  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(--color-accent-gold);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  background: var(--gradient-card);
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d0d1a 50%, #0a1628 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(123,47,247,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; margin-bottom: 16px; }
.cta-desc { font-size: 17px; color: var(--color-text-secondary); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { padding: 80px 0; background: var(--color-bg-section-alt); }
.video-wrapper {
  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(--color-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;
  font-size: 15px;
  color: var(--color-text-secondary);
}

/* ============================================================
   LONG CONTENT / ARTICLE
   ============================================================ */
.content-article { max-width: 860px; margin: 0 auto; }
.content-article h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 48px 0 16px;
  color: var(--color-text-primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}
.content-article h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--color-accent-gold);
}
.content-article p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.content-article ul, .content-article ol {
  margin: 16px 0 20px 20px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.8;
}
.content-article ul { list-style: disc; }
.content-article ol { list-style: decimal; }
.content-article li { margin-bottom: 8px; }
.content-article strong { color: var(--color-text-primary); font-weight: 700; }
.content-article a { color: var(--color-accent-gold); }
.content-article a:hover { text-decoration: underline; }

/* Bullet list styled */
.bullet-list { margin: 20px 0; }
.bullet-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: 15px;
  color: var(--color-text-secondary);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--color-accent-gold);
  border-radius: 50%;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-subtle);
  background: var(--color-bg-secondary);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent-gold); }
.breadcrumb .sep { color: var(--color-text-muted); opacity: 0.5; }
.breadcrumb .current { color: var(--color-accent-gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #12122a 0%, #0d0d1a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.3;
}
.page-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 14px;
}
.page-hero-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   PROMO CARDS
   ============================================================ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.promo-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.promo-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}
.promo-card-header {
  background: var(--gradient-purple);
  padding: 28px 24px;
  text-align: center;
}
.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.promo-amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-accent-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.promo-subtitle { font-size: 14px; color: rgba(255,255,255,0.8); }
.promo-card-body { padding: 24px; }
.promo-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.promo-desc { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 20px; line-height: 1.6; }
.promo-terms { font-size: 12px; color: var(--color-text-muted); margin-top: 12px; }

/* ============================================================
   SLOTS GRID
   ============================================================ */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.slot-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}
.slot-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e1e3a, #2a1a4a);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.slot-info { padding: 12px; }
.slot-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.slot-provider { font-size: 12px; color: var(--color-text-muted); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th {
  background: var(--gradient-purple);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
}
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border-subtle);
  color: var(--color-text-secondary);
}
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table tr:hover td { background: rgba(245,197,24,0.04); }
.check-yes { color: #4caf50; font-weight: 700; }
.check-no { color: #f44336; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}
.form-control {
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--color-text-primary);
  font-family: var(--font-stack);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--color-accent-gold); }
.form-control::placeholder { color: var(--color-text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { font-size: 12px; color: #f44336; margin-top: 4px; display: none; }
.form-success {
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  color: #4caf50;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  display: none;
  margin-top: 16px;
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box {
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.2);
  border-left: 4px solid var(--color-accent-gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--color-accent-gold); }
.info-box p { font-size: 14px; color: var(--color-text-secondary); margin: 0; }

.warning-box {
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.2);
  border-left: 4px solid var(--color-accent-orange);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--color-accent-orange); }
.warning-box p { font-size: 14px; color: var(--color-text-secondary); margin: 0; }

/* ============================================================
   SUPPORT CHANNELS
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.support-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.support-card:hover {
  border-color: var(--color-accent-gold);
  transform: translateY(-4px);
}
.support-icon {
  width: 56px; height: 56px;
  background: rgba(123,47,247,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.support-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.support-desc { font-size: 14px; color: var(--color-text-secondary); }

/* ============================================================
   POLICY CONTENT
   ============================================================ */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--color-text-primary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-subtle);
}
.policy-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--color-accent-gold);
}
.policy-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}
.policy-content ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.8;
}
.policy-content li { margin-bottom: 6px; }

/* ============================================================
   RELATED LINKS
   ============================================================ */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.related-link {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: all var(--transition);
}
.related-link:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  background: rgba(245,197,24,0.06);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  border: none;
  box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080814;
  border-top: 1px solid var(--color-border-subtle);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border-subtle);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.footer-logo-text {
  font-size: 20px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-accent-gold); }

/* Footer Contact */
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.footer-contact-item strong {
  color: var(--color-text-secondary);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 13px;
  color: var(--color-text-muted);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 13px;
  color: var(--color-text-muted);
}
.footer-legal-links a:hover { color: var(--color-accent-gold); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: 120px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-title { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.error-desc { font-size: 16px; color: var(--color-text-secondary); margin-bottom: 36px; }
.error-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-border-subtle);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: none;
  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-text-primary); }
.tab-btn.active {
  color: var(--color-accent-gold);
  border-bottom-color: var(--color-accent-gold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn { padding: 8px 16px; font-size: 13px; }
  .logo-text { font-size: 18px; }
  .logo-icon { width: 32px; height: 32px; max-width: 32px; max-height: 32px; }
  .hero-section { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 28px; }
  .home-banner img, .home-banner svg { max-height: 280px; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .header-cta { gap: 6px; }
  .header-cta .btn { padding: 7px 12px; font-size: 12px; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--color-accent-gold); }
.text-purple { color: var(--color-accent-purple); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.w-100 { width: 100%; }
