/* =========================================
   STOIXO.GR — Global CSS
   Design: Dark theme, emerald accent
   ========================================= */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/SpaceGrotesk-VariableFont_wght.woff2') format('woff2');
}

/* --- CSS Variables --- */
:root {
  --bg-page:        rgb(15, 23, 42);
  --bg-header:      rgb(30, 41, 59);
  --bg-card:        rgb(30, 41, 59);
  --bg-card-2:      rgb(22, 32, 50);
  --bg-sidebar:     rgb(30, 41, 59);

  --color-emerald:      #10b981;
  --color-emerald-dark: #059669;
  --color-emerald-bg:   rgba(16,185,129,0.12);

  --text-primary:   #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;
  --text-emerald:   #10b981;

  --border:         rgba(255,255,255,0.06);

  --font: 'Space Grotesk', system-ui, sans-serif;

  --header-h:   84px;
  --banner-h:   36px;
  --nav-h:      48px;
  --sidebar-w:  280px;
  --radius:     8px;
  --radius-lg:  14px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

/* =========================================
   TOP BANNER
   ========================================= */
.top-banner {
  background: var(--color-emerald);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 40px;
  position: relative;
}
.top-banner a { color: #fff; text-decoration: underline; }
.top-banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.8;
  line-height: 1;
  padding: 4px;
}
.top-banner-close:hover { opacity: 1; }

/* =========================================
   HEADER
   ========================================= */
.header-wrapper {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--bg-header);
}

.header-nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

/* Hamburger */
.menu-toggle {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
  transition: background 0.15s;
}
.menu-toggle:hover { background: rgba(255,255,255,0.08); }
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.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); }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}
.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--color-emerald);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Search */
.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.header-search:hover { background: rgba(255,255,255,0.1); }
.header-search input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
  width: 160px;
}
.header-search input::placeholder { color: var(--text-secondary); }

/* =========================================
   SIDEBAR
   ========================================= */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100%;
  background: var(--bg-sidebar);
  z-index: 70;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  padding-top: 16px;
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.sidebar-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 20px;
  color: var(--text-secondary);
  transition: background 0.15s;
}
.sidebar-close:hover { background: rgba(255,255,255,0.08); }

.sidebar-nav { padding: 8px 0; }

.sidebar-section { margin-bottom: 4px; }
.sidebar-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.1s;
}
.sidebar-section-toggle:hover { background: rgba(255,255,255,0.05); }
.sidebar-chevron { font-size: 10px; color: var(--text-muted); transition: transform 0.2s; }
.sidebar-section.open .sidebar-chevron { transform: rotate(180deg); }

.sidebar-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.sidebar-section.open .sidebar-sub { max-height: 500px; }
.sidebar-sub a {
  display: block;
  padding: 8px 16px 8px 28px;
  font-size: 13px;
  color: var(--color-emerald);
  transition: background 0.1s;
}
.sidebar-sub a:hover { background: rgba(255,255,255,0.05); }

.sidebar-link {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.1s;
}
.sidebar-link:hover { background: rgba(255,255,255,0.05); }

/* =========================================
   MAIN CONTENT
   ========================================= */
main {
  max-width: 1080px;
  margin: var(--header-h) auto 0;
  padding: 24px 15px 40px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  text-align: center;
  padding: 48px 20px 40px;
}

.hero-ball {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(16,185,129,0.4));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--color-emerald);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--color-emerald-dark);
  transform: translateY(-1px);
}

/* =========================================
   SECTION HEADER
   ========================================= */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-head h2,
.section-head h3 {
  font-size: 18px;
  font-weight: 700;
}
.section-head-right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-emerald);
  font-size: 13px;
  font-weight: 500;
}
.section-head-right a { color: var(--text-emerald); }
.carousel-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-secondary);
  transition: background 0.15s, border-color 0.15s;
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

/* =========================================
   BOOKMAKER CAROUSEL
   ========================================= */
.bm-carousel-section {
  margin-bottom: 40px;
  overflow: hidden;
}

.bm-carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.bm-carousel-track::-webkit-scrollbar { display: none; }

.bm-card {
  flex: 0 0 190px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.15s, border-color 0.15s;
  cursor: pointer;
}
.bm-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16,185,129,0.3);
}

.bm-card-logo {
  width: 100%;
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.bm-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bm-card-body {
  padding: 10px 12px 12px;
}
.bm-card-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bm-card-bonus {
  font-size: 12px;
  color: var(--color-emerald);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bm-card-rating {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-section { margin-bottom: 40px; }

.how-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.how-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-emerald);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.how-step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.how-cta {
  text-align: center;
  margin-top: 28px;
}

/* =========================================
   EXPLORER GRID
   ========================================= */
.explorer-section { margin-bottom: 40px; }

.explorer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.explorer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: border-color 0.15s;
}
.explorer-card:hover { border-color: rgba(16,185,129,0.25); }
.explorer-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.explorer-links { display: flex; flex-direction: column; gap: 5px; }
.explorer-link {
  font-size: 12px;
  color: var(--text-secondary);
  padding: 2px 0;
  transition: color 0.1s;
}
.explorer-link:hover { color: var(--color-emerald); }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-section { margin-bottom: 40px; }

.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: color 0.15s;
}
.faq-chevron {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 12px 0;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 15px;
  margin-top: 24px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, auto);
  gap: 48px;
  margin-bottom: 32px;
}
.footer-brand { max-width: 240px; }
.footer-logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.1s;
}
.footer-col a:hover { color: var(--color-emerald); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--text-muted);
}

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-secondary); transition: color 0.1s; }
.breadcrumb a:hover { color: var(--color-emerald); }
.breadcrumb span { color: var(--text-muted); }

/* =========================================
   PAGE HERO BANNER
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, #051b12 0%, var(--bg-card) 100%);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 8px;
}
.page-hero p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
}
.page-hero-meta {
  font-size: 12px;
  color: var(--color-emerald);
  margin-top: 8px;
  font-weight: 500;
}

/* =========================================
   FILTER BAR
   ========================================= */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-bar-left h2 { font-size: 16px; font-weight: 700; }
.filter-bar-right { display: flex; align-items: center; gap: 8px; }
.filter-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 13px;
  padding: 7px 12px;
  cursor: pointer;
  outline: none;
}
.filter-btn {
  background: var(--color-emerald);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.filter-btn:hover { background: var(--color-emerald-dark); }

/* =========================================
   BOOKMAKER TABLE
   ========================================= */
.bm-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.bm-table {
  width: 100%;
  border-collapse: collapse;
}
.bm-table thead th {
  background: var(--bg-card);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.bm-row {
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.bm-row:last-child { border-bottom: none; }
.bm-row:hover { background: rgba(255,255,255,0.02); }
.bm-row td { padding: 14px 16px; vertical-align: middle; }

.bm-rank-cell { width: 40px; }
.rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.rank-top {
  background: var(--color-emerald-bg);
  border-color: rgba(16,185,129,0.4);
  color: var(--color-emerald);
}

.bm-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.bm-logo-box {
  width: 80px;
  height: 52px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}
.bm-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.bm-name-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
  transition: color 0.1s;
}
.bm-name-link:hover { color: var(--color-emerald); }
.bm-tags-row { display: flex; gap: 4px; flex-wrap: wrap; }
.btag {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  padding: 2px 6px;
  border: 1px solid var(--border);
}
.bm-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.stars { color: #f59e0b; font-size: 11px; }
.rating-num { font-size: 11px; color: var(--text-muted); }

.bonus-cell { min-width: 160px; }
.bonus-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.bonus-sub {
  font-size: 12px;
  color: var(--color-emerald);
  font-weight: 500;
}
.wager-cell, .deposit-cell {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.cta-cell { text-align: right; }
.btn-join {
  background: var(--color-emerald);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 7px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
}
.btn-join:hover { background: var(--color-emerald-dark); transform: translateY(-1px); }

/* =========================================
   PAYMENT METHODS GRID
   ========================================= */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color 0.15s, transform 0.1s;
}
.payment-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-2px); }
.payment-card-logo {
  width: 80px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px;
}
.payment-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.payment-card-name { font-size: 14px; font-weight: 700; }
.payment-card-count { font-size: 12px; color: var(--text-muted); }
.payment-type-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-emerald);
  background: var(--color-emerald-bg);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px;
  padding: 2px 8px;
}

/* =========================================
   BOOKMAKER DETAIL PAGE
   ========================================= */
.bm-detail-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.bm-detail-logo {
  width: 140px;
  height: 90px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.bm-detail-logo img { width: 100%; height: 100%; object-fit: contain; }
.bm-detail-info h1 { font-size: 24px; font-weight: 700; }
.bm-detail-desc { font-size: 14px; color: var(--text-secondary); margin: 8px 0; line-height: 1.6; }
.bm-detail-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.detail-stat { display: flex; align-items: center; gap: 8px; }
.detail-stat-value { font-size: 18px; font-weight: 700; color: var(--color-emerald); }
.detail-stat-label { font-size: 11px; color: var(--text-muted); }

.detail-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  margin-bottom: 40px;
}
.content-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.content-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.content-section p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }

.bonus-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bonus-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.bonus-card-title { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.bonus-card-value { font-size: 20px; font-weight: 700; color: var(--color-emerald); }
.bonus-card-sub { font-size: 13px; color: var(--text-secondary); margin: 4px 0; }
.bonus-card-cond { font-size: 11px; color: var(--text-muted); }

.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.sidebar-box-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-row span:first-child { color: var(--text-muted); }
.sidebar-info-row span:last-child { font-weight: 600; }
.rating-highlight { color: var(--color-emerald); font-weight: 700; font-size: 15px; }

.other-bm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background 0.1s;
  margin-bottom: 4px;
}
.other-bm-row:hover { background: rgba(255,255,255,0.04); }
.other-bm-row img { width: 44px; height: 28px; object-fit: contain; background: #fff; border-radius: 4px; padding: 2px; }
.other-bm-name { font-size: 13px; font-weight: 600; }
.other-bm-bonus { font-size: 11px; color: var(--color-emerald); }

/* Rating bars */
.rating-bar-row { margin-bottom: 10px; }
.rating-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.rating-bar-label strong { color: var(--text-primary); }
.rating-bar-bg {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--color-emerald);
  border-radius: 99px;
}

/* Tags / badges */
.badge-hgc {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-emerald);
  background: var(--color-emerald-bg);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px;
  padding: 2px 8px;
}
.badge-offshore {
  font-size: 10px;
  font-weight: 600;
  color: #f59e0b;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 10px;
  padding: 2px 8px;
}

/* Sports chips */
.sport-chip {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-secondary);
  margin: 3px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .detail-content { grid-template-columns: 1fr; }
  .detail-sidebar { order: -1; }
  .bonus-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  main { padding: 16px 12px 32px; }
  .hero { padding: 32px 16px 28px; }
  .hero-ball { width: 110px; height: 110px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .bm-card { flex: 0 0 150px; }
  .bm-card-logo { height: 80px; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-detail-hero { flex-direction: column; padding: 20px; }
  .bm-detail-logo { width: 100%; height: 80px; }
  .page-hero { padding: 20px; }
  .bm-table thead th:nth-child(4),
  .bm-table td:nth-child(4),
  .bm-table thead th:nth-child(5),
  .bm-table td:nth-child(5) { display: none; }
  .explorer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .bonus-cards { grid-template-columns: 1fr; }
  .explorer-grid { grid-template-columns: 1fr; }
}
