/* ============================================================
   BAJIAPP-888.COM — Global Stylesheet
   Design System: Deep Teal & Amber Casino Theme
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --primary: #f5a623;
  --primary-light: #ffd166;
  --primary-dark: #c47d0e;
  --accent: #00c9a7;
  --accent-dark: #009e84;
  --accent2: #e63946;
  --bg-dark: #060b12;
  --bg-card: #0c1520;
  --bg-section: #0f1c2a;
  --bg-alt: #091018;
  --border: rgba(245,166,35,0.18);
  --border-strong: rgba(245,166,35,0.45);
  --border-teal: rgba(0,201,167,0.2);
  --text-primary: #eef2f7;
  --text-secondary: #8fa8c0;
  --text-muted: #4d6478;
  --shadow-amber: 0 0 24px rgba(245,166,35,0.14);
  --shadow-teal: 0 0 20px rgba(0,201,167,0.12);
  --shadow-card: 0 6px 28px rgba(0,0,0,0.55);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s ease;
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --header-h: 68px;
}

/* ── 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(--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, svg { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.6rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); }
p { margin-bottom: 1rem; }
section { padding: 64px 0; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ── Utility ── */
.text-amber { color: var(--primary); }
.text-teal { color: var(--accent); }
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,201,167,0.08);
  border: 1px solid var(--border-teal);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 12px; }
.section-desc { color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; }
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  margin: 14px auto 32px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  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(--primary), var(--primary-light));
  color: #060b12;
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #060b12;
  box-shadow: 0 4px 18px rgba(245,166,35,0.45);
  transform: translateY(-1px);
}
.btn-login {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-login:hover {
  background: rgba(0,201,167,0.1);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #060b12;
  padding: 13px 32px;
  font-size: 1rem;
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(245,166,35,0.5);
  transform: translateY(-2px);
  color: #060b12;
}
.btn-teal {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #060b12;
  padding: 13px 32px;
  font-size: 1rem;
}
.btn-teal:hover {
  box-shadow: 0 6px 24px rgba(0,201,167,0.4);
  transform: translateY(-2px);
  color: #060b12;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 11px 28px;
}
.btn-outline:hover {
  background: rgba(245,166,35,0.08);
  color: var(--primary-light);
}
.btn-outline-teal {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 11px 28px;
}
.btn-outline-teal:hover {
  background: rgba(0,201,167,0.08);
  color: #fff;
}
.btn-danger {
  background: linear-gradient(135deg, var(--accent2), #ff6b6b);
  color: #fff;
  padding: 13px 32px;
  font-size: 1rem;
}
.btn-danger:hover {
  box-shadow: 0 6px 20px rgba(230,57,70,0.4);
  transform: translateY(-2px);
  color: #fff;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6,11,18,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.7);
  border-bottom-color: var(--border-strong);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-svg-wrap {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-svg-wrap svg {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .logo-main {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.03em;
}
.logo-text .logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: rgba(245,166,35,0.07);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* 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(--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-h);
  left: 0; right: 0;
  background: rgba(6,11,18,0.99);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
  background: rgba(245,166,35,0.07);
}

/* ── Page offset for fixed header ── */
.page-body { padding-top: var(--header-h); }

/* ── Hero Banner ── */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-dark);
  line-height: 0;
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

/* ── Inner Page Hero ── */
.inner-hero {
  background: linear-gradient(135deg, #060b12 0%, #0c1a28 50%, #091018 100%);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,201,167,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.inner-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.inner-hero .breadcrumb { margin-bottom: 16px; }
.inner-hero h1 { color: var(--primary-light); }
.inner-hero p { color: var(--text-secondary); max-width: 640px; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--accent); }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-amber);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(0,201,167,0.08);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; color: var(--text-primary); }
.card p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }

/* 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; }

/* ── Stats Bar ── */
.stats-bar {
  background: linear-gradient(135deg, #0c1520, #0f1c2a);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

/* ── Category Cards ── */
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  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(--accent), var(--primary));
  opacity: 0;
  transition: opacity var(--transition);
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-amber);
  transform: translateY(-4px);
}
.cat-card .cat-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: rgba(0,201,167,0.07);
  border: 1px solid var(--border-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.cat-card .cat-icon svg { width: 30px; height: 30px; }
.cat-card h3 { margin-bottom: 10px; }
.cat-card p { color: var(--text-secondary); font-size: 0.87rem; margin-bottom: 20px; }
.cat-card a.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}
.cat-card a.cat-link:hover { color: var(--primary-light); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
  gap: 12px;
}
.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #0c1520 0%, #0f2030 50%, #0c1520 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,201,167,0.06) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%; right: 10%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.04) 0%, transparent 70%);
}
.cta-section h2 { color: var(--primary-light); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-section p { color: var(--text-secondary); margin-bottom: 32px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── YouTube Video ── */
.video-section { background: var(--bg-alt); }
.video-wrap {
  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-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}
.step-item:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-3px);
}
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #060b12;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-item h3 { margin-bottom: 8px; font-size: 1rem; }
.step-item p { color: var(--text-secondary); font-size: 0.88rem; margin: 0; }

/* ── Promo Cards ── */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.promo-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-amber);
  transform: translateY(-3px);
}
.promo-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #060b12;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  display: inline-block;
  border-radius: 0 0 var(--radius) 0;
}
.promo-badge-teal {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #060b12;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  display: inline-block;
  border-radius: 0 0 var(--radius) 0;
}
.promo-body { padding: 22px; }
.promo-body h3 { margin-bottom: 8px; }
.promo-body p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 16px; }
.promo-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ── Table ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th {
  background: rgba(0,201,167,0.08);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 13px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(245,166,35,0.06);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(0,201,167,0.03); }
.check-yes { color: #4ade80; font-weight: 700; }
.check-no { color: var(--accent2); }

/* ── Contact Form ── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-family: var(--font-stack);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(0,201,167,0.04);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: var(--accent2); font-size: 0.8rem; margin-top: 4px; display: none; }
.form-success {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--radius);
  padding: 16px;
  color: #4ade80;
  text-align: center;
  display: none;
}

/* ── Info Blocks (Policy/Terms) ── */
.policy-content h2 {
  color: var(--accent);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-content h3 { color: var(--text-primary); margin: 24px 0 10px; }
.policy-content p { color: var(--text-secondary); }
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.policy-content ul li { margin-bottom: 6px; }

/* ── Bullet list ── */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.bullet-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Two-col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Trust badges ── */
.trust-bar {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 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(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-item svg { color: var(--accent); width: 22px; height: 22px; }

/* ── Back to top ── */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #060b12;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,201,167,0.4);
  transition: all var(--transition);
}
#back-to-top:hover { transform: translateY(-3px); }
#back-to-top.visible { display: flex; }

/* ── Footer ── */
.site-footer {
  background: #04080e;
  border-top: 1px solid var(--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(--border);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-svg-wrap { width: 38px; height: 38px; }
.footer-brand .logo-svg-wrap svg { width: 38px; height: 38px; max-width: 38px; max-height: 38px; }
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.footer-col h4 {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-item .label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-contact-item .value {
  font-size: 0.87rem;
  color: var(--text-secondary);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ── 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: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.25;
  margin-bottom: 16px;
}
.error-page h1 { margin-bottom: 14px; }
.error-page p { color: var(--text-secondary); margin-bottom: 32px; }
.error-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Long content sections ── */
.content-section {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
.content-section h2 {
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.content-section h3 { color: var(--text-primary); margin: 20px 0 10px; }
.content-section p { color: var(--text-secondary); }
.content-section ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.content-section ul li { margin-bottom: 6px; }

/* ── Highlight box ── */
.highlight-box {
  background: rgba(0,201,167,0.05);
  border: 1px solid var(--border-teal);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.highlight-box-amber {
  background: rgba(245,166,35,0.05);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ── Tabs ── */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Slot game cards ── */
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.slot-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-amber);
  transform: translateY(-4px);
}
.slot-card-img {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #0c1520, #1a2a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slot-card-img svg { width: 60px; height: 60px; color: var(--primary); opacity: 0.6; }
.slot-card-body { padding: 16px; }
.slot-card-body h3 { font-size: 0.95rem; margin-bottom: 6px; }
.slot-card-body p { font-size: 0.82rem; color: var(--text-secondary); margin: 0 0 12px; }
.slot-rtp {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,201,167,0.08);
  border: 1px solid var(--border-teal);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ── Info card ── */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-teal); }
.info-card-icon {
  width: 44px; height: 44px;
  background: rgba(0,201,167,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.info-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

/* ── Contact info block ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.contact-info-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.contact-info-item:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-teal);
}
.contact-info-item .ci-icon {
  width: 52px; height: 52px;
  background: rgba(0,201,167,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--accent);
}
.contact-info-item .ci-icon svg { width: 24px; height: 24px; }
.contact-info-item h3 { font-size: 0.9rem; color: var(--accent); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  section { padding: 48px 0; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .two-col.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 20px; }
  .contact-form { padding: 24px; }
  .content-section { padding: 24px; }
  .logo-text .logo-main { font-size: 0.92rem; }
  .logo-text .logo-sub { font-size: 0.54rem; }
  .logo-svg-wrap { width: 36px; height: 36px; }
  .logo-svg-wrap svg { width: 36px; height: 36px; max-width: 36px; max-height: 36px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .header-cta .btn { padding: 8px 13px; font-size: 0.78rem; }
}
