/* ============================================================
   SlipConverter — Main CSS
   Dark & Yellow Theme | Mobile-First | Fully Responsive
   ============================================================ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

/* ─────────────────────────────────────────────
   01. CSS VARIABLES
───────────────────────────────────────────── */
:root {
  --primary:          #FFD700;
  --primary-dark:     #E6C200;
  --primary-glow:     rgba(255, 215, 0, 0.22);
  --primary-subtle:   rgba(255, 215, 0, 0.07);
  --primary-border:   rgba(255, 215, 0, 0.18);

  --bg-base:          #0b0b0b;
  --bg-card:          #141414;
  --bg-card-alt:      #1a1a1a;
  --bg-section:       #0f0f0f;
  --bg-section-alt:   #0b0b0b;
  --bg-input:         #181818;

  --text-primary:     #f2f2f2;
  --text-secondary:   #9a9a9a;
  --text-muted:       #555555;

  --border:           rgba(255, 215, 0, 0.14);
  --border-subtle:    rgba(255, 255, 255, 0.05);
  --border-card:      rgba(255, 255, 255, 0.08);

  --navbar-bg:        #080808;
  --footer-bg:        #070707;

  --shadow:           0 4px 28px rgba(0, 0, 0, 0.7);
  --shadow-card:      0 2px 16px rgba(0, 0, 0, 0.5);
  --shadow-yellow:    0 0 24px rgba(255, 215, 0, 0.12);

  --radius:           10px;
  --radius-sm:        6px;
  --radius-lg:        16px;

  /* Legacy compat — keep these so old PHP inline styles still work */
  --primary-green:    #FFD700;
  --dark-bg:          #0b0b0b;
  --pure-white:       #f2f2f2;
  --light-gray:       #1a1a1a;
  --medium-gray:      #9a9a9a;
  --primary-dark-orig:#E6C200;
  --secondary-blue:   #FFD700;
  --light-bg:         #0f0f0f;
  --card-shadow:      0 4px 28px rgba(0, 0, 0, 0.6);
  --success-gradient: linear-gradient(135deg, #FFD700, #E6C200);
  --card-bg:          #141414;
  --border-color:     rgba(255, 215, 0, 0.14);
}

/* ─────────────────────────────────────────────
   02. RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-base);
  overflow-x: hidden;
}

p  { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; vertical-align: middle; display: block; }
a  { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spartan', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

/* Focus / active resets */
a:focus, input:focus, textarea:focus, button:focus,
.btn:focus, .btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--primary) !important;
}

select {
  appearance: menulist;
  background-color: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 14px;
  padding: 0.4rem 0.75rem;
}

/* ─────────────────────────────────────────────
   03. SPACING UTILITIES  (5 – 225 px grid)
───────────────────────────────────────────── */
.mt-5  { margin-top:     5px; }  .mb-5  { margin-bottom:  5px; }
.mt-10 { margin-top:    10px; }  .mb-10 { margin-bottom: 10px; }
.mt-15 { margin-top:    15px; }  .mb-15 { margin-bottom: 15px; }
.mt-20 { margin-top:    20px; }  .mb-20 { margin-bottom: 20px; }
.mt-25 { margin-top:    25px; }  .mb-25 { margin-bottom: 25px; }
.mt-30 { margin-top:    30px; }  .mb-30 { margin-bottom: 30px; }
.mt-35 { margin-top:    35px; }  .mb-35 { margin-bottom: 35px; }
.mt-40 { margin-top:    40px; }  .mb-40 { margin-bottom: 40px; }
.mt-45 { margin-top:    45px; }  .mb-45 { margin-bottom: 45px; }
.mt-50 { margin-top:    50px; }  .mb-50 { margin-bottom: 50px; }
.mt-60 { margin-top:    60px; }  .mb-60 { margin-bottom: 60px; }
.mt-70 { margin-top:    70px; }  .mb-70 { margin-bottom: 70px; }
.mt-80 { margin-top:    80px; }  .mb-80 { margin-bottom: 80px; }
.mt-100{ margin-top:   100px; }  .mb-100{ margin-bottom:100px; }
.mt-120{ margin-top:   120px; }  .mb-120{ margin-bottom:120px; }

.pt-5  { padding-top:     5px; }  .pb-5  { padding-bottom:  5px; }
.pt-10 { padding-top:    10px; }  .pb-10 { padding-bottom: 10px; }
.pt-15 { padding-top:    15px; }  .pb-15 { padding-bottom: 15px; }
.pt-20 { padding-top:    20px; }  .pb-20 { padding-bottom: 20px; }
.pt-25 { padding-top:    25px; }  .pb-25 { padding-bottom: 25px; }
.pt-30 { padding-top:    30px; }  .pb-30 { padding-bottom: 30px; }
.pt-40 { padding-top:    40px; }  .pb-40 { padding-bottom: 40px; }
.pt-50 { padding-top:    50px; }  .pb-50 { padding-bottom: 50px; }
.pt-60 { padding-top:    60px; }  .pb-60 { padding-bottom: 60px; }
.pt-80 { padding-top:    80px; }  .pb-80 { padding-bottom: 80px; }
.pt-100{ padding-top:   100px; }  .pb-100{ padding-bottom:100px; }

/* ─────────────────────────────────────────────
   04. SECTIONS
───────────────────────────────────────────── */
.section { padding: 60px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }

.bg-alt  { background: var(--bg-section); }
.bg-dark { background: var(--bg-base); }

/* Section title */
.section-title { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-title h3 {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 12px;
}
.section-title h2 { color: var(--text-primary); margin-bottom: 12px; }
.section-title p  { color: var(--text-secondary); font-size: 15px; }

/* ─────────────────────────────────────────────
   05. SCROLL TO TOP
───────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: var(--shadow-yellow);
}
.scroll-top.active { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ─────────────────────────────────────────────
   06. PRELOADER
───────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg-base);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.preloader .loader {
  width: 48px; height: 48px;
  border: 3px solid var(--border-card);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────
   07. HEADER / NAVBAR
───────────────────────────────────────────── */
.header,
.header.navbar-area {
  background: var(--navbar-bg) !important;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
}
/* sticky class kept for compatibility but header stays same dark style always */
.header.sticky,
.navbar-area.sticky {
  background: var(--navbar-bg) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5) !important;
}

.header .container { max-width: 100%; padding: 0 16px; }
@media (min-width: 1200px) { .header .container { padding: 0 32px; } }

.nav-inner { display: flex; align-items: center; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
}

.navbar-brand img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
@media (min-width: 768px) { .navbar-brand img { height: 40px; } }

/* Nav links */
.navbar-nav { display: flex; align-items: center; gap: 2px; }
.navbar-nav .nav-item a {
  display: block;
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-secondary) !important;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active,
.navbar-nav .nav-item:hover > a {
  color: var(--primary) !important;
  background: var(--primary-subtle);
}

/* Dropdown arrow */
.navbar-nav .nav-item a.dd-menu::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
}

/* Sub-menu */
.navbar-nav .nav-item .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
}
.navbar-nav .nav-item { position: relative; }
.navbar-nav .nav-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar-nav .nav-item .sub-menu .nav-item a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text-secondary) !important;
  border-radius: 0;
}
.navbar-nav .nav-item .sub-menu .nav-item a:hover {
  color: var(--primary) !important;
  background: var(--primary-subtle);
}

/* Mobile hamburger */
.mobile-menu-btn {
  background: none;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
@media (min-width: 992px) { .mobile-menu-btn { display: none; } }

.toggler-icon {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-btn.active .toggler-icon:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active .toggler-icon:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .toggler-icon:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in menu */
.collapse.navbar-collapse {
  display: block !important;
  position: fixed;
  top: 0; right: -100%;
  width: min(80vw, 320px);
  height: 100vh;
  background: #0a0a0a !important;
  background-color: #0a0a0a !important;
  border-left: 1px solid var(--border);
  overflow-y: auto;
  transition: right 0.35s ease;
  z-index: 1050;
  padding: 20px 0 40px;
}
.collapse.navbar-collapse.show { right: 0; }
/* Ensure every child in the mobile drawer stays dark */
.collapse.navbar-collapse,
.collapse.navbar-collapse *:not(img):not(i):not(.card-dot) {
  background-color: transparent;
}
.collapse.navbar-collapse { background-color: #0a0a0a !important; }

.mobile-menu-logo { padding: 0 20px 20px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 8px; }
.mobile-menu-logo img { height: 34px; width: auto; }
.mobile-menu-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.mobile-menu-close:hover { color: var(--primary); }

/* Mobile nav links */
@media (max-width: 991px) {
  .navbar-nav { flex-direction: column; gap: 0; padding: 8px 0; }
  .navbar-nav .nav-item { width: 100%; }
  .navbar-nav .nav-item a {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .navbar-nav .nav-item .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border-subtle);
    background: #0f0f0f;
    padding: 0;
  }
  .navbar-nav .nav-item .sub-menu.collapse:not(.show) { display: none; }
  .navbar-nav .nav-item .sub-menu li a { padding-left: 36px; }
}

/* Mobile CTA area */
.mobile-menu-cta {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.user-avatar-small {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* Desktop CTA */
.button.home-btn { margin-left: 16px; flex-shrink: 0; }
@media (max-width: 991px) { .button.home-btn { display: none !important; } }

/* ─────────────────────────────────────────────
   08. BUTTONS
───────────────────────────────────────────── */
.btn, .btn-alt, .btn-login, .btn-outline, .btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1.4;
}
.btn {
  background: var(--primary);
  color: #000 !important;
  border-color: var(--primary);
}
.btn:hover {
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
}
.btn-alt {
  background: transparent !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}
.btn-alt:hover {
  background: var(--primary) !important;
  color: #000 !important;
  border-color: var(--primary) !important;
}
.btn-login {
  background: var(--primary);
  color: #000 !important;
  border-color: var(--primary);
}
.btn-login:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #000 !important;
}
.btn-outline {
  background: transparent;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border-card);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: var(--primary-subtle);
}
.btn-signup {
  background: var(--primary);
  color: #000 !important;
  border-color: var(--primary);
  padding: 12px 30px;
  font-size: 14px;
}
.btn-signup:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Sticky header CTA fix — only for filled .btn, not .btn-alt */
.header.sticky .button .btn:not(.btn-alt),
.header.sticky .button .btn:not(.btn-alt):hover {
  background: var(--primary) !important;
  color: #000 !important;
  border-color: var(--primary) !important;
}

/* ─────────────────────────────────────────────
   09. USER PROFILE DROPDOWN (desktop)
───────────────────────────────────────────── */
.user-profile-dropdown { position: relative; }
.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 7px 14px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text-primary);
}
.user-profile-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-yellow);
}
.user-profile-btn .user-name {
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-profile-btn .lni-chevron-down {
  font-size: 11px;
  color: var(--text-muted);
}
.user-profile-dropdown .dropdown-menu {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  min-width: 220px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-secondary) !important;
  transition: background 0.2s, color 0.2s;
}
.dropdown-item i { font-size: 15px; color: var(--text-muted); }
.dropdown-item:hover {
  background: var(--primary-subtle);
  color: var(--primary) !important;
}
.dropdown-item:hover i { color: var(--primary); }
.dropdown-item.text-danger { color: #ff5555 !important; }
.dropdown-item.text-danger:hover { background: rgba(255,85,85,0.08); }
.dropdown-divider { border-color: var(--border-subtle); margin: 4px 0; }

/* Avatars */
.user-avatar, .user-avatar-large {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 15px;
}
.user-avatar-large { width: 64px; height: 64px; font-size: 24px; }
.avatar-img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
  width: 100%; height: 100%;
  background: var(--primary);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Spartan', sans-serif;
  font-weight: 800;
}
.user-name {
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-block;
}

/* ─────────────────────────────────────────────
   10. PROMO BANNER (top of page, dismissible)
───────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, #1c1400 0%, #0b0b0b 100%);
  border-bottom: 1px solid var(--primary-border);
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0, transparent 40px,
    rgba(255,215,0,0.025) 40px, rgba(255,215,0,0.025) 80px
  );
  pointer-events: none;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-badge {
  background: var(--primary);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}
.promo-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-secondary);
  min-width: 0;
}
.promo-text strong { color: var(--primary); }
.promo-btn {
  background: var(--primary);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid var(--primary);
  transition: all 0.25s;
}
.promo-btn:hover { background: transparent; color: var(--primary); }
.promo-dismiss {
  background: none; border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.promo-dismiss:hover { color: var(--text-primary); }

/* ─────────────────────────────────────────────
   11. PAGE LAYOUT — body offset for fixed header
───────────────────────────────────────────── */
body { padding-top: 60px; }
@media (min-width: 992px) { body { padding-top: 65px; } }

/* ─────────────────────────────────────────────
   12. SITE WRAPPER — col-1 | col-10 | col-1
───────────────────────────────────────────── */
.site-wrapper {
  background: var(--bg-base);
  width: 100%;
}
.site-main { min-width: 0; overflow-x: hidden; }

/* Skyscraper columns */
.skyscraper-col {
  padding: 0;
  background: var(--bg-base);
}
.skyscraper-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 4px 0;
  width: 100%;
}
.skyscraper-link {
  display: block;
  line-height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 108px;
}
.skyscraper-link:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-yellow);
}
.skyscraper-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

/* Horizontal banners */
.horiz-banner-wrap {
  width: 100%;
  text-align: center;
  background: var(--bg-base);
}
.horiz-banner-wrap.top-banner {
  padding: 10px 0 6px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 8px;
}
.horiz-banner-wrap.bottom-banner {
  padding: 6px 0 12px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 8px;
}
.horiz-banner-img {
  max-width: 100%;
  width: 970px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: inline-block;
}
.sky-ad-label {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  text-align: center;
}

/* ─────────────────────────────────────────────
   13. HERO — index.php (full-width, two-column)
───────────────────────────────────────────── */
.hero-area {
  background: #080808;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  min-height: auto;
}
@media (min-width: 768px)  { .hero-area { padding: 80px 0; } }
@media (min-width: 992px)  { .hero-area { padding: 100px 0 80px; } }

/* decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 0;
}
.hero-blob-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,215,0,0.18) 0%, transparent 70%);
  top: -100px; right: -60px;
}
.hero-blob-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 70%);
  bottom: -60px; left: -30px;
}
@media (min-width: 992px) {
  .hero-blob-1 { width: 520px; height: 520px; }
  .hero-blob-2 { width: 340px; height: 340px; }
}

/* Two-column layout */
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 992px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 0 32px;
  }
  .hero-copy  { flex: 1; }
  .hero-visual { flex: 0 0 420px; }
}
@media (min-width: 1200px) {
  .hero-inner { max-width: 1300px; padding: 0 48px; }
  .hero-visual { flex: 0 0 480px; }
}

/* Copy */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-highlight {
  color: var(--primary);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-copy > p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-cta-primary {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
  padding: 13px 28px;
  font-size: 14px;
}
.hero-cta-primary:hover {
  background: transparent;
  color: var(--primary) !important;
}
.hero-cta-ghost {
  background: transparent;
  color: var(--text-secondary) !important;
  border: 2px solid var(--border-card);
  padding: 13px 28px;
  font-size: 14px;
  font-family: 'Spartan', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.hero-cta-ghost:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: var(--primary-subtle);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-stat { text-align: left; }
.stat-num {
  display: block;
  font-family: 'Spartan', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-card);
  flex-shrink: 0;
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  padding: 4px 12px;
}
.trust-badge i { color: var(--primary); font-size: 12px; }

/* Hero visual card */
.hero-visual { display: flex; justify-content: center; }

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow), var(--shadow-yellow);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0f0f0f;
  border-bottom: 1px solid var(--border-subtle);
}
.card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.card-dot.red    { background: #ff5f57; }
.card-dot.yellow { background: var(--primary); }
.card-dot.green  { background: #2ac052; }
.card-title {
  font-family: 'Spartan', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-left: 4px;
}

.hero-card-body { padding: 20px; }

.demo-bookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.demo-bookie {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.demo-bookie-logo {
  width: 40px; height: 40px;
  object-fit: contain;
  background: #1e1e1e;
  border-radius: var(--radius-sm);
  padding: 4px;
  display: block;
  margin: 0 auto;
}
.demo-bookie-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.demo-convert-icon {
  font-size: 18px;
  color: var(--primary);
  padding: 0 8px;
}

.demo-code-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.demo-code-block {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.demo-code-block.to { border-color: rgba(255,215,0,0.3); }
.demo-code-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.demo-code-val {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}
.demo-code-val.success { color: var(--primary); }
.demo-arrow-pulse {
  font-size: 20px;
  color: var(--primary);
  animation: arrowPulse 1.5s ease infinite;
  flex-shrink: 0;
}
@keyframes arrowPulse {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.5; transform: translateX(3px); }
}

.demo-status {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border-subtle);
  background: #0f0f0f;
}
.footer-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-right: 8px;
}
.mini-bookie-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.mini-bookie-strip img {
  width: 28px; height: 28px;
  object-fit: contain;
  background: #1e1e1e;
  border-radius: 4px;
  padding: 2px;
  display: inline-block;
}
.mini-more {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   14. HERO — auth/inner pages (compact)
───────────────────────────────────────────── */
.hero-area.hero-compact {
  padding: 40px 0 30px;
  min-height: auto;
}
@media (min-width: 768px) { .hero-area.hero-compact { padding: 50px 0 36px; } }
@media (min-width: 992px) { .hero-area.hero-compact { padding: 56px 0 40px; } }

.hero-content {
  padding: 0 4px;
}

/* Bootstrap grid inside hero (auth pages use .container>.row>.col-*) */
.hero-area .container { position: relative; z-index: 1; }
.hero-area .row { align-items: center; }
.hero-area .hero-content h1,
.hero-area .hero-content .hero-title { color: var(--text-primary); }
.hero-area .hero-content p,
.hero-area .hero-content .hero-description { color: var(--text-secondary); }
/* Override Bootstrap text-white / text-light inside hero to keep dark theme */
.hero-area .text-white  { color: var(--text-primary) !important; }
.hero-area .text-light  { color: var(--text-secondary) !important; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.hero-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}
.text-gradient {
  color: var(--primary);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Signup floating elements — defined in section 32 */
.element-1 { top: 20%; left: 20%; animation-delay: 0s; }
.element-2 { top: 10%; right: 25%; animation-delay: 0.8s; }
.element-3 { bottom: 20%; left: 35%; animation-delay: 1.6s; }
.element-4 { bottom: 25%; right: 15%; animation-delay: 2.4s; }
@keyframes floatEl {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ─────────────────────────────────────────────
   15. CONVERTER SECTION
───────────────────────────────────────────── */
.converter-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
}
@media (min-width: 768px) { .converter-wrapper { padding: 36px 32px; } }

.converter-form .form-label {
  font-family: 'Spartan', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.form-select, .form-control {
  background: var(--bg-input) !important;
  border: 1px solid var(--border-card) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text-primary) !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-select:focus, .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px var(--primary-glow) !important;
  outline: none !important;
}
.form-select option {
  background: #0f0f0f;
  color: var(--text-primary);
}

.conversion-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 24px;
}
.conversion-arrow i {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.8;
}

.btn-convert-bookie {
  background: var(--primary);
  color: #000 !important;
  border: none;
  font-family: 'Spartan', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-convert-bookie:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn-convert-bookie i { font-size: 16px; }

.converter-info {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.converter-info i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ─────────────────────────────────────────────
   16. RECOMMENDED BOOKIE BANNER (in-content)
───────────────────────────────────────────── */
.recommended-bookie-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #151200, #0f0f0f);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  flex-wrap: wrap;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.recommended-bookie-banner:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-yellow);
}
.rec-badge {
  background: var(--primary);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rec-text { flex: 1; min-width: 0; }
.rec-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.rec-text p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.rec-cta {
  background: var(--primary);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Spartan', sans-serif;
}

.in-content-ad {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #151200, #0f0f0f);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.in-content-ad > a {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.ad-copy { flex: 1; min-width: 0; }
.ad-copy h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.ad-copy p { font-size: 12px; color: var(--text-muted); margin: 0; }
.ad-copy strong { color: var(--primary); }
.ad-btn {
  background: var(--primary);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Spartan', sans-serif;
}
.ad-sponsor-tag {
  position: absolute;
  top: 4px; right: 8px;
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────
   17. HOW IT WORKS — steps grid
───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.single-service {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.single-service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.single-service:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-4px);
}
.single-service:hover::before { transform: scaleX(1); }

.main-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.main-icon i {
  font-size: 26px;
  color: var(--primary);
}
.text-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.single-service p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   18. FEATURES SECTION
───────────────────────────────────────────── */
.single-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.f-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.f-icon i { font-size: 20px; color: var(--primary); }
.single-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.single-feature p { font-size: 14px; color: var(--text-muted); }

/* Bookmaker grid */
.bookmaker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 480px) { .bookmaker-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .bookmaker-grid { grid-template-columns: repeat(4, 1fr); } }

.bookmaker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 14px 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bookmaker-item:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-yellow);
}
.bookmaker-item img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: brightness(1.1);
  display: block;
  margin: 0 auto;
}
.bookmaker-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  font-family: 'Spartan', sans-serif;
}

/* ─────────────────────────────────────────────
   19. PRICING SECTION
───────────────────────────────────────────── */
.pricing-table { background: var(--bg-section); }

/* Package tabs */
.nav-pills {
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 6px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-pills .nav-link {
  color: var(--text-muted) !important;
  background: transparent;
  border-radius: var(--radius-sm);
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
  background: var(--primary);
  color: #000 !important;
  border-color: var(--primary);
}

/* Currency selector */
.currency-selector { text-align: center; }
.input-group {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-card);
}
.input-group-text {
  background: var(--bg-card-alt);
  border: none;
  color: var(--text-muted);
  padding: 8px 14px;
  display: flex; align-items: center;
}
.input-group .form-select {
  border: none !important;
  border-left: 1px solid var(--border-card) !important;
  border-radius: 0 !important;
  flex: 1;
}
.text-muted { color: var(--text-muted) !important; }
.small { font-size: 0.85em; }

/* Pricing cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}
.card-body {
  background: var(--bg-card);
  color: var(--text-secondary);
  padding: 20px;
}
.card h6 { color: var(--text-primary); }
.card .card-subtitle { color: var(--text-muted) !important; }
.list-group-item {
  background: transparent;
  border: none !important;
  color: var(--text-secondary);
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-subtle) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-group-item:last-child { border-bottom: none !important; }
.list-group-item i { font-size: 13px; }
.small-padding { padding: 6px 0 !important; }
.float-right { float: right; }
.popular_plan {
  background: var(--primary);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  padding: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: -20px -20px 16px;
}

/* Bootstrap color overrides in pricing */
.text-success { color: var(--primary) !important; }
.text-danger  { color: #ff5555 !important; }
.text-primary { color: var(--primary) !important; }

.btn-success {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #000 !important;
  font-weight: 700;
}
.btn-success:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}
.btn-outline-success {
  border-color: var(--border-card) !important;
  color: var(--text-secondary) !important;
  background: transparent !important;
}
.btn-outline-success:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #000 !important;
}
.btn-outline-secondary {
  border-color: var(--border-card) !important;
  color: var(--text-secondary) !important;
  background: transparent !important;
  border-radius: var(--radius-sm) !important;
}
.btn-outline-secondary:hover {
  background: var(--bg-card-alt) !important;
  color: var(--text-primary) !important;
}
.btn-sm { padding: 6px 16px !important; font-size: 12px !important; }

/* Alerts */
.alert { border-radius: var(--radius-sm); border: none; }
.alert-light {
  background: var(--bg-card-alt) !important;
  border: 1px solid var(--border-card) !important;
  color: var(--text-secondary) !important;
}
.alert-danger {
  background: rgba(255,85,85,0.1) !important;
  color: #ff8888 !important;
  border: 1px solid rgba(255,85,85,0.2) !important;
}
.alert-success {
  background: rgba(255,215,0,0.08) !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary-border) !important;
}
.alert-info {
  background: rgba(52,152,219,0.1) !important;
  color: #6ab4ec !important;
  border: 1px solid rgba(52,152,219,0.2) !important;
}
.alert-warning {
  background: rgba(255,215,0,0.08) !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary-border) !important;
}
.badge.bg-success {
  background: var(--primary) !important;
  color: #000 !important;
}

/* Spinner */
.spinner-border { color: var(--primary) !important; }
.spinner-border.text-primary { color: var(--primary) !important; }

/* ─────────────────────────────────────────────
   20. FAQ SECTION
───────────────────────────────────────────── */
.faq { background: var(--bg-base); }
.xs-margin { margin-top: 20px; }
@media (min-width: 992px) { .xs-margin { margin-top: 0; } }

.accordion-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-card) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  font-family: 'Spartan', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.accordion-button:not(.collapsed) {
  background: var(--primary-subtle) !important;
  color: var(--primary) !important;
}
.accordion-button::after { display: none; }
.accordion-button .title { flex: 1; padding-right: 10px; }
.accordion-button .lni-plus {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-button:not(.collapsed) .lni-plus { transform: rotate(45deg); }
.accordion-body {
  background: var(--bg-card-alt) !important;
  color: var(--text-muted) !important;
  padding: 16px 20px;
  font-size: 14px;
  border-top: 1px solid var(--border-subtle);
}
.accordion-body p { color: var(--text-muted); margin: 0; font-size: 14px; }

/* ─────────────────────────────────────────────
   21. CALL TO ACTION
───────────────────────────────────────────── */
.call-action {
  background: linear-gradient(135deg, #101000 0%, #0b0b0b 100%);
  border-top: 1px solid var(--primary-border);
  border-bottom: 1px solid var(--primary-border);
  padding: 60px 0;
}
.call-action .inner-content { }
.call-action .text h2 {
  color: var(--text-primary);
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 10px;
}
.call-action .text p { color: var(--text-muted); margin-bottom: 0; }

.call-action .button {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .call-action .button {
    justify-content: flex-end;
    margin-top: 0;
  }
}

/* ─────────────────────────────────────────────
   22. FOOTER
───────────────────────────────────────────── */
footer.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
}
.footer-top { padding: 60px 0 40px; }
.single-footer.f-about .logo {
  margin-bottom: 16px;
}
.single-footer.f-about .logo img { height: 36px; width: auto; }
.single-footer.f-about > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.social-title {
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social li a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.social li a:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.single-footer.f-link { padding-top: 0; }
.single-footer.f-link h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.single-footer.f-link ul li { margin-bottom: 10px; }
.single-footer.f-link ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
  display: inline-block;
}
.single-footer.f-link ul li a:hover { color: var(--primary); }
.single-footer.f-about h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.copyright-area {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.copyright-text, .copyright-owner {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.copyright-owner { text-align: right; }
.copyright-owner a { color: var(--primary); font-weight: 600; }
@media (max-width: 767px) {
  .copyright-owner { text-align: left; margin-top: 6px; }
}

/* ─────────────────────────────────────────────
   23. AUTH PAGES (login / signup)
───────────────────────────────────────────── */
.auth-section { padding: 40px 0 60px; background: var(--bg-base); }

.auth-container {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.signup-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
}
.signup-tab {
  flex: 1;
  padding: 16px;
  background: var(--bg-card);
  border: none;
  color: var(--text-muted);
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-bottom: 2px solid transparent;
}
.signup-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--primary-subtle);
}
.signup-tab:hover { color: var(--primary); }

/* Login form */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Spartan', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-input) !important;
  border: 1px solid var(--border-card) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text-primary) !important;
  padding: 11px 14px !important;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px var(--primary-glow) !important;
}
.form-group input::placeholder { color: var(--text-muted); }

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.form-options a { font-size: 13px; color: var(--primary); }
.form-options label { font-size: 13px; color: var(--text-muted); }

.btn-block { width: 100%; justify-content: center; }

/* Features section in auth */
.features-section {
  background: var(--bg-card-alt) !important;
  padding: 32px 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─────────────────────────────────────────────
   24. DASHBOARD
───────────────────────────────────────────── */
.dashboard-container { min-height: 100vh; background: var(--bg-base); }

/* Sidebar */
.dashboard-nav {
  background: #0a0a0a;
  border-right: 1px solid var(--border-subtle);
  min-height: 100vh;
  padding: 0;
  position: fixed;
  top: 0; left: 0;
  width: 240px;
  z-index: 900;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.dashboard-nav.show { transform: translateX(0); }
@media (min-width: 992px) {
  .dashboard-nav {
    position: sticky;
    top: 0;
    transform: none;
    min-height: 100vh;
    height: 100vh;
  }
}

/* Sidebar toggle btn (mobile) */
.sidebar-toggle-btn {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 950;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
}
@media (min-width: 992px) { .sidebar-toggle-btn { display: none; } }

.sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 800;
  backdrop-filter: blur(4px);
}
.sidebar-overlay.show { display: block; }

.sidebar-close-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}
.sidebar-close-btn:hover { color: var(--primary); }

.nav-user-info {
  padding: 60px 20px 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 8px;
  text-align: center;
}
.nav-user-info h5 { font-size: 15px; color: var(--text-primary); margin: 10px 0 6px; }
.verified-badge {
  display: inline-block;
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  border: 1px solid var(--primary-border);
}
.not-verified-badge {
  display: inline-block;
  background: rgba(255,85,85,0.08);
  color: #ff5555;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,85,85,0.15);
}

.dashboard-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted) !important;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.dashboard-nav .nav-link i { font-size: 16px; }
.dashboard-nav .nav-link:hover {
  background: var(--primary-subtle);
  color: var(--primary) !important;
  border-left-color: var(--primary);
}
.dashboard-nav .nav-link.active {
  background: var(--primary-subtle);
  color: var(--primary) !important;
  border-left-color: var(--primary);
}
.dashboard-nav .nav-link.text-danger {
  color: #ff7777 !important;
}
.dashboard-nav .nav-link.text-danger:hover {
  background: rgba(255,85,85,0.08);
  border-left-color: #ff5555;
}
.dashboard-nav::-webkit-scrollbar { width: 3px; }
.dashboard-nav::-webkit-scrollbar-track { background: transparent; }
.dashboard-nav::-webkit-scrollbar-thumb { background: var(--border-card); border-radius: 2px; }

/* Dashboard main content */
.main-content {
  background: var(--bg-base);
  min-height: 100vh;
  padding: 24px 16px;
}
@media (min-width: 992px) {
  .main-content { padding: 32px 28px; }
}

.dashboard-section { padding: 20px 0; }
.dashboard-welcome h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 6px;
}
.dashboard-welcome p { color: var(--text-muted); }

/* Dashboard cards */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}
@media (min-width: 576px) { .dashboard-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .dashboard-grid { grid-template-columns: repeat(3, 1fr); } }

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dashboard-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-yellow);
}
.dashboard-card h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────────
   25. CONTACT / TERMS / MISC PAGES
───────────────────────────────────────────── */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
}
@media (min-width: 768px) { .contact-form-wrapper { padding: 40px 36px; } }

/* Terms content */
.terms-content {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  color: var(--text-muted);
  line-height: 1.8;
}
@media (min-width: 768px) { .terms-content { padding: 40px 40px; } }
.terms-content h2, .terms-content h3 { color: var(--text-primary); margin-top: 28px; margin-bottom: 10px; }

/* ─────────────────────────────────────────────
   26. BREADCRUMBS
───────────────────────────────────────────── */
.breadcrumb-area {
  background: var(--bg-card);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.breadcrumb-text h2 { font-size: 1.4rem; color: var(--text-primary); }
.breadcrumb { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin: 0; background: none; padding: 0; }
.breadcrumb-item { font-size: 13px; color: var(--text-muted); }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; color: var(--text-muted); margin-right: 6px; }

/* ─────────────────────────────────────────────
   27. FREE BET CODES PAGE — hero & layout
───────────────────────────────────────────── */

/* ── Left-column stat grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}
@media (max-width: 479px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
  transition: border-color 0.3s;
}
.stat-box:hover { border-color: var(--primary-border); }

.stat-number {
  display: block;
  font-family: 'Spartan', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}
.stat-box .stat-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Device mockup wrapper ── */
.device-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0 0;
}
@media (min-width: 992px) { .device-mockup { padding: 0; justify-content: flex-end; } }

/* ── Phone frame ── */
.device-frame {
  width: 100%;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-yellow);
  position: relative;
}
@media (max-width: 575px) { .device-frame { max-width: 100%; border-radius: 20px; } }

.device-screen {
  width: 100%;
  background: var(--bg-base);
  min-height: 340px;
  overflow: hidden;
}

.screen-content {
  width: 100%;
  height: 100%;
}

/* ── Live codes display (inside device screen) ── */
.live-codes-display {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #0f0f0f;
  border-bottom: 1px solid var(--border-subtle);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
}

.live-timer {
  font-size: 10px;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}

.codes-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  max-height: 240px;
}
.codes-scroll::-webkit-scrollbar { width: 3px; }
.codes-scroll::-webkit-scrollbar-thumb { background: var(--border-card); }

/* Individual live code row */
.live-code-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s;
}
.live-code-item:last-child { border-bottom: none; }
.live-code-item:hover { background: var(--primary-subtle); }

.code-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.code-id {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.code-odds {
  font-family: 'Spartan', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  padding: 1px 7px;
  border-radius: 4px;
}
.code-bookies {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-muted);
}
.code-bookies .lni { font-size: 9px; color: var(--text-muted); }
.from-bookie, .to-bookie {
  font-weight: 600;
  color: var(--text-secondary);
}

/* Live stats bar at bottom of device */
.live-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 14px;
  background: #0f0f0f;
  border-top: 1px solid var(--border-subtle);
}
.live-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-value {
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.live-stats .stat-label {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Device bottom controls */
.device-controls {
  display: flex;
  justify-content: center;
  padding: 10px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}
.home-button {
  width: 36px;
  height: 6px;
  background: var(--border-card);
  border-radius: 3px;
}

/* ── Floating badge elements ── */
.floating-element {
  position: absolute;
  z-index: 10;
}
.el1 { top: 12px; left: -8px; }
.el2 { bottom: 36px; right: -8px; }
@media (max-width: 575px) {
  .el1 { top: 10px; left: 4px; }
  .el2 { bottom: 20px; right: 4px; }
}

.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--primary-border);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  box-shadow: var(--shadow-yellow);
  text-transform: uppercase;
  white-space: nowrap;
  animation: floatEl 3s ease-in-out infinite;
}
.el2 .floating-badge { animation-delay: 1.2s; }

/* Skeleton loading state */
.live-code-item.skeleton .code-id,
.live-code-item.skeleton .code-odds,
.live-code-item.skeleton .from-bookie,
.live-code-item.skeleton .to-bookie {
  background: var(--bg-card-alt);
  color: transparent;
  border-radius: 4px;
  animation: shimmer 1.5s ease infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ── Free bet codes card ── */
.free-bet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.free-bet-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-yellow);
}
.free-bet-card .code {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

/* ─────────────────────────────────────────────
   28. BET SLIP VIEWER
───────────────────────────────────────────── */
.slip-viewer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.slip-header {
  background: var(--bg-card-alt);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 18px;
}

/* ── Hero slip prototype (slip-viewer page) ── */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 0 0;
}
@media (min-width: 992px) {
  .hero-image {
    padding: 0;
    justify-content: flex-end;
    align-items: center;
  }
}

.sample-slip-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow), var(--shadow-yellow);
  position: relative;
}
@media (max-width: 575px) { .sample-slip-demo { max-width: 100%; } }

/* Slip demo header — override generic .slip-header with flex */
.sample-slip-demo .slip-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #0f0f0f;
  border-bottom: 1px solid var(--border-subtle);
}

.bookmaker-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: #1e1e1e !important;
  padding: 6px !important;
  overflow: hidden;
}
.bookmaker-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: none;
}

.slip-meta {
  flex: 1;
  min-width: 0;
}
.slip-id {
  font-family: 'Spartan', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.slip-id code {
  color: var(--primary);
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  padding: 1px 6px;
  border-radius: 3px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge.active {
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}
.status-badge.active::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease infinite;
}

.slip-content { padding: 14px 16px 4px; }

.bet-selection {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border-subtle);
  margin-bottom: 12px;
}

.match-info { flex: 1; min-width: 0; }

.league-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 6px;
}
.match-teams {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.match-teams strong { color: var(--text-primary); }
.match-time {
  font-size: 11px;
  color: var(--text-muted);
}

.bet-details {
  text-align: right;
  flex-shrink: 0;
  min-width: 70px;
}
.market {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 5px;
  line-height: 1.3;
}
.odds {
  font-family: 'Spartan', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.slip-summary {
  background: var(--bg-card-alt);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 16px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.summary-row:not(:last-child) {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 6px;
  margin-bottom: 2px;
}
.summary-row strong { color: var(--text-secondary); font-weight: 600; }
.summary-row.total {
  padding-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.summary-row.total span { color: var(--text-secondary); }
.potential-win {
  font-family: 'Spartan', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* Conversion result ticket */
.conversion-ticket {
  background: var(--bg-card);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  animation: slideDown 0.3s ease-out;
  overflow: hidden;
}
.conversion-ticket::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--primary) 0, var(--primary) 4px,
    transparent 4px, transparent 8px
  );
}
.conversion-ticket-header {
  background: var(--primary-subtle);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.conversion-ticket-body { padding: 16px; }
.code-display-ticket {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
}
.ticket-stats {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.ticket-stats-item { text-align: center; padding: 4px; }
.ticket-stats-item:not(:last-child) { border-right: 1px solid var(--border-subtle); }
.ticket-divider { border-top: 1px dashed var(--border-subtle); margin: 12px 0; border-bottom: none; border-left: none; border-right: none; }
.copy-btn {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all 0.2s;
}
.copy-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.copy-btn.copied { background: var(--primary-dark); }
.view-slips-link {
  color: var(--primary);
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 4px;
}
.view-slips-link:hover { color: var(--primary-dark); text-decoration: underline; }
.conversion-id {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-card-alt);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Converter alert */
.converter-alert-container {
  position: fixed;
  top: 70px; left: 0; right: 0;
  z-index: 1050;
  max-width: 95%;
  margin: 0 auto;
  pointer-events: none;
}
.converter-alert {
  pointer-events: auto;
  animation: slideInDown 0.3s ease-out;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  margin: 0 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.alert-success-ticket { border-left: 3px solid var(--primary); background: var(--primary-subtle); }
.alert-error-ticket   { border-left: 3px solid #ff5555;       background: rgba(255,85,85,0.06); }
.alert-info-ticket    { border-left: 3px solid #3498db;       background: rgba(52,152,219,0.06); }

/* Bookie icon helpers */
.bookie-icon-xsmall { width: 24px; height: 24px; object-fit: contain; border-radius: 4px; background: var(--bg-card-alt); padding: 2px; }
.bookie-icon-small  { width: 32px; height: 32px; object-fit: contain; border-radius: 4px; }

/* ─────────────────────────────────────────────
   29. UTILITY HELPERS
───────────────────────────────────────────── */
.text-white   { color: var(--text-primary) !important; }
.text-yellow  { color: var(--primary) !important; }
.text-light   { color: var(--text-secondary) !important; }
.bg-dark      { background: var(--bg-base) !important; }
.bg-card      { background: var(--bg-card) !important; }
.border-yellow{ border-color: var(--primary-border) !important; }
.shadow-none  { box-shadow: none !important; }
.fw-bold      { font-weight: 700 !important; }
.fw-800       { font-weight: 800 !important; }
.section-header { padding-bottom: 12px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 20px; }
.section-subtitle { color: var(--text-muted); font-size: 14px; margin-top: 6px; }

/* Form check */
.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.form-check-label { color: var(--text-muted); font-size: 13px; }

/* Nav pills tab-content */
.tab-content { padding-top: 24px; }

/* Tooltip */
.tooltip-inner { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); font-size: 12px; }
.bs-tooltip-auto .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before { border-top-color: var(--border); }

/* Modal */
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
}
.modal-header {
  background: var(--bg-card-alt);
  border-bottom: 1px solid var(--border-subtle);
}
.modal-title { color: var(--text-primary); }
.modal-footer {
  background: var(--bg-card-alt);
  border-top: 1px solid var(--border-subtle);
}
.btn-close { filter: invert(1) brightness(0.6); }
.btn-close:hover { filter: invert(1) brightness(1); }

/* Table */
.table {
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}
.table thead th { color: var(--text-muted); background: var(--bg-card-alt); border-color: var(--border-subtle); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.table tbody td { border-color: var(--border-subtle); vertical-align: middle; }
.table-striped tbody tr:nth-of-type(odd) { background: rgba(255,255,255,0.02); }
.table-hover tbody tr:hover { background: var(--primary-subtle); }

/* Pagination */
.pagination { gap: 4px; }
.page-link {
  background: var(--bg-card);
  border-color: var(--border-card);
  color: var(--text-muted);
  border-radius: var(--radius-sm) !important;
}
.page-link:hover, .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

/* ─────────────────────────────────────────────
   30. KEYFRAMES
───────────────────────────────────────────── */
@keyframes slideDown    { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideInDown  { from { transform:translateY(-100%); opacity:0; } to { transform:translateY(0); opacity:1; } }
@keyframes fadeIn       { from { opacity:0; } to { opacity:1; } }

/* ─────────────────────────────────────────────
   31. RESPONSIVE FINAL POLISH
───────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }
  .call-action .inner-content .text { margin-bottom: 20px; }
  .section-title { margin-bottom: 32px; }
  .navbar { flex-wrap: wrap; }
  .horiz-banner-img { max-height: 60px; }
  .conversion-ticket-body .row.align-items-center { flex-direction: column-reverse; gap: 12px; }
  .conversion-ticket-body .col-md-8, .conversion-ticket-body .col-md-4 { width: 100%; text-align: center; }
}

@media (min-width: 992px) {
  .collapse.navbar-collapse {
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
    padding: 0;
    overflow: visible;
    transform: none;
    right: 0;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    flex: 1;
  }
  .navbar-nav { flex-direction: row; }
}

/* Touch targets */
@media (hover: none) and (pointer: coarse) {
  .copy-btn, .btn, .nav-link { min-height: 44px; }
}

/* Ensure no white backgrounds bleed through from Bootstrap */
.bg-light, .bg-white {
  background: var(--bg-card-alt) !important;
}
.border {
  border-color: var(--border-card) !important;
}
.shadow-sm { box-shadow: var(--shadow-card) !important; }
.border-0  { border: none !important; }

/* Input group fix for Bootstrap */
.input-group > .form-control,
.input-group > .form-select { border-left: none !important; }

/* SweetAlert2 dark overrides */
.swal2-popup {
  background: var(--bg-card) !important;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border-card);
}
.swal2-title, .swal2-html-container { color: var(--text-primary) !important; }
.swal2-confirm { background: var(--primary) !important; color: #000 !important; }
.swal2-cancel { background: var(--bg-card-alt) !important; color: var(--text-secondary) !important; border: 1px solid var(--border-card) !important; }

/* Claim daily reward button */
.btn-claim {
  background: var(--primary);
  color: #000;
  border: none;
  font-weight: 700;
  font-family: 'Spartan', sans-serif;
  animation: claimPulse 2s ease infinite;
}
@keyframes claimPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

/* ─────────────────────────────────────────────
   32. AUTH FORM — missing class aliases
───────────────────────────────────────────── */

/* Tab bar (login.php uses auth-tabs/auth-tab, signup uses signup-tabs/signup-tab) */
.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
}
.auth-tab {
  flex: 1;
  padding: 15px 10px;
  background: var(--bg-card);
  border: none;
  color: var(--text-muted);
  font-family: 'Spartan', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
}
.auth-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--primary-subtle);
}
.auth-tab:hover { color: var(--primary); }

/* Method sections inside auth-container */
.auth-method {
  padding: 24px;
}
.auth-method + .auth-method {
  border-top: 1px solid var(--border-subtle);
}
.method-header h3,
.method-header h4 {
  color: var(--text-primary);
  margin-bottom: 6px;
}
.method-icon { color: var(--primary); }

/* Benefit checklist items (login page) */
.channel-benefits { margin-bottom: 16px; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.benefit-item i { color: var(--primary); font-size: 15px; flex-shrink: 0; }

/* Telegram widget wrapper */
.telegram-widget-container {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

/* OR divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 24px;
  margin: 4px 0;
}
.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
.or-divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Password reveal toggle */
.password-input { position: relative; }
.password-input input { padding-right: 44px !important; }
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.toggle-password:hover { color: var(--primary); }

/* Custom checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  user-select: none;
}
.checkbox-container input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.checkmark { display: none; }

/* Auth container footer */
.auth-footer {
  padding: 18px 24px;
  background: var(--bg-card-alt);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.auth-footer p { font-size: 14px; color: var(--text-muted); margin: 0; }
.auth-footer a { color: var(--primary); font-weight: 600; }

/* Benefits grid (signup page below auth-container) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-yellow);
}
.benefit-card .benefit-icon {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
}
.benefit-card h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin: 0 0 6px; }
.benefit-card p  { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Feature cards (both auth pages feature section) */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-yellow);
}
.feature-card h4,
.feature-card h5 { color: var(--text-primary); margin-bottom: 8px; }
.feature-card p   { color: var(--text-muted); font-size: 14px; margin: 0; }
.feature-icon i   { color: var(--primary) !important; }

/* Signup illustration — keep it contained */
.signup-illustration {
  position: relative;
  height: 260px;
  overflow: hidden;
}
@media (min-width: 1200px) { .signup-illustration { height: 320px; } }
.signup-animation { position: relative; width: 100%; height: 100%; }
.signup-element {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--primary-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--primary);
  box-shadow: var(--shadow-yellow);
  animation: floatEl 4s ease-in-out infinite;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   33. GLOBAL LAYOUT POLISH
───────────────────────────────────────────── */

/* Prevent any child from causing horizontal scroll */
.site-wrapper, .hero-area, .auth-section, .features-section,
section, .container, .container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure images in hero/auth sections don't overflow */
.hero-area img, .auth-section img, .features-section img {
  max-width: 100%;
  height: auto;
}

/* Section title h2 used directly (without wrapper div) */
h2.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 32px;
}

/* Feature section spacing fix */
.features-section .row [class*="col-"] { margin-bottom: 16px; }
.features-section .feature-card { height: 100%; }

/* fw-bold utility */
.fw-bold { font-weight: 700 !important; }
