/* ============================
   EVA CASINO — Main Stylesheet
   ============================ */

:root {
  --bg-primary:  #060d08;
  --bg-card:     #0c1e10;
  --bg-card-alt: #0e2414;
  --bg-sidebar:  #070e08;
  --bg-header:   #050c07;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(212,168,67,0.4);

  --gold:        #d4a843;
  --gold-light:  #f0c855;
  --gold-dark:   #a07820;
  --green:       #2a7a3b;
  --green-bright:#3aaa50;

  --text:        #eef3ef;
  --text-dim:    #7a9a80;
  --text-muted:  #3d5a41;

  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  --shadow-card:  0 4px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  --shadow-popup: 0 8px 32px rgba(0,0,0,0.7);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #1e3a22; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }
::selection { background: rgba(212,168,67,0.25); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, #d4a843 0%, #c09030 100%);
  color: #1a0f00;
  box-shadow: 0 2px 12px rgba(212,168,67,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f0c855 0%, #d4a843 100%);
  box-shadow: 0 4px 20px rgba(212,168,67,0.55);
  transform: translateY(-1px);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,0.06);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); color: var(--text); }

.btn-lg { padding: 13px 30px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 62px;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
  backdrop-filter: blur(10px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  height: 100%;
  border-right: 1px solid var(--border);
}
.header-logo img { height: 32px; }
.header-logo-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.header-logo-name span { color: var(--gold); }

.header-spacer { flex: 1; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Layout ─────────────────────────────────────────── */
.site-layout {
  display: flex;
  min-height: calc(100vh - 62px);
}

/* ── Sidebar ─────────────────────────────────────────── */
.sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  position: sticky;
  top: 62px;
  height: calc(100vh - 62px);
  overflow-y: auto;
  padding: 16px 0;
}

.sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 10px 18px 6px;
}

.sidebar-menu { list-style: none; }
.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--text-dim);
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.sidebar-menu li a svg {
  width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7;
}
.sidebar-menu li a:hover {
  color: var(--text);
  background: rgba(42,122,59,0.1);
  border-left-color: var(--green);
}
.sidebar-menu li a.active {
  color: var(--gold);
  background: rgba(212,168,67,0.08);
  border-left-color: var(--gold);
}
.sidebar-menu li a.active svg { opacity: 1; }

.sidebar-cta {
  padding: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

/* ── Main ───────────────────────────────────────────── */
.main-content { flex: 1; min-width: 0; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6,13,8,0.92) 30%,
    rgba(6,13,8,0.55) 65%,
    rgba(6,13,8,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 44px;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 14px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Wins Ticker ─────────────────────────────────────── */
.wins-ticker-bar {
  background: rgba(8,18,10,0.96);
  border-bottom: 1px solid var(--border);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.wins-ticker-label {
  flex-shrink: 0;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,67,0.06);
}
.wins-ticker-label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.wins-ticker-track-wrap { flex: 1; overflow: hidden; }
.wins-ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  width: max-content;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.win-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
  height: 38px;
  color: var(--text-dim);
}
.win-ticker-item .player { color: var(--text); font-weight: 600; }
.win-ticker-item .amount { color: var(--gold); font-weight: 700; }
.win-ticker-item .game  { color: var(--green-bright); }

/* ── Wins Popup ──────────────────────────────────────── */
.wins-popup-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  pointer-events: none;
}
.win-popup {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px 10px 10px;
  box-shadow: var(--shadow-popup);
  max-width: 290px;
  animation: popup-in 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
  pointer-events: auto;
}
.win-popup.removing {
  animation: popup-out 0.3s ease forwards;
}
@keyframes popup-in {
  from { opacity: 0; transform: translateX(-110%); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes popup-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}
.win-popup-img {
  width: 40px; height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-primary);
}
.win-popup-img img { width: 100%; height: 100%; object-fit: cover; }
.win-popup-body { flex: 1; min-width: 0; }
.win-popup-player { font-size: 11.5px; color: var(--text-dim); }
.win-popup-amount { font-size: 15px; font-weight: 800; color: var(--gold); line-height: 1.2; }
.win-popup-game   { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Section ─────────────────────────────────────────── */
.section { padding: 36px 40px; }
.section + .section { padding-top: 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-size: 20px;
  font-weight: 800;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── Stats Row ───────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.stat-card {
  background: linear-gradient(145deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.stat-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── Game Cards ──────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 14px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-card);
}
.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,67,0.2);
}
.game-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,12,7,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-info {
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.game-card-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.game-card-hot {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  background: rgba(212,168,67,0.12);
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: 6px;
}

/* ── Info Box / Card ─────────────────────────────────── */
.info-card {
  background: linear-gradient(145deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
}
.info-card + .info-card { margin-top: 16px; }
.info-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.info-card-title span { color: var(--gold); }
.info-card-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
}
.info-card-text p + p { margin-top: 10px; }

/* ── Bonus Cards ─────────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.bonus-card {
  background: linear-gradient(145deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, border-color 0.2s;
}
.bonus-card:hover { transform: translateY(-2px); border-color: var(--border-gold); }
.bonus-card-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.bonus-card-icon { font-size: 28px; margin-bottom: 12px; line-height: 1; }
.bonus-card-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.bonus-card-amount {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}
.bonus-card-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}
.bonus-card-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--green-bright);
  background: rgba(58,170,80,0.1);
  border: 1px solid rgba(58,170,80,0.2);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ── Promo Code ──────────────────────────────────────── */
.promo-card {
  background: linear-gradient(145deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 0 24px rgba(212,168,67,0.08);
}
.promo-card + .promo-card { margin-top: 12px; }
.promo-icon {
  width: 44px; height: 44px;
  background: rgba(212,168,67,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.promo-code {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 3px;
}
.promo-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Mirror Links ────────────────────────────────────── */
.mirror-item {
  background: linear-gradient(145deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: all 0.18s;
  box-shadow: var(--shadow-card);
}
.mirror-item + .mirror-item { margin-top: 8px; }
.mirror-item:hover { border-color: var(--border-gold); }
.mirror-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46,204,113,0.6);
}
.mirror-url {
  flex: 1;
  font-family: 'Courier New', monospace;
  color: var(--gold);
  font-size: 13.5px;
}
.mirror-ping {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Steps ───────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #d4a843, #a07820);
  color: #1a0f00;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(212,168,67,0.3);
}
.step-body { flex: 1; padding-top: 5px; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-text  { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item + .faq-item { margin-top: 8px; }
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-q {
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
  user-select: none;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q svg {
  width: 16px; height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 18px 16px;
}

/* ── Feature List ────────────────────────────────────── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 38px; height: 38px;
  background: rgba(212,168,67,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.feature-text .ft { font-size: 13px; font-weight: 700; }
.feature-text .fd { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── App Download Buttons ────────────────────────────── */
.app-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  transition: all 0.18s;
  cursor: pointer;
  min-width: 180px;
}
.app-btn:hover { border-color: var(--gold); background: rgba(212,168,67,0.04); }
.app-btn-icon { font-size: 28px; line-height: 1; }
.app-btn-text { flex: 1; }
.app-btn-text .abt { font-size: 11px; color: var(--text-muted); }
.app-btn-text .abn { font-size: 15px; font-weight: 700; }

/* ── Auth Form ───────────────────────────────────────── */
.auth-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 62px);
  padding: 40px 20px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42,122,59,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,168,67,0.05) 0%, transparent 60%);
}
.auth-card {
  background: linear-gradient(145deg, #0e2414, var(--bg-card));
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-logo img { height: 36px; display: inline-block; }
.auth-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}
.auth-subtitle {
  font-size: 13.5px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s;
}
.form-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.form-input::placeholder { color: var(--text-muted); }
.form-divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 18px 0;
  position: relative;
}
.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after  { right: 0; }
.form-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
}
.form-footer a { color: var(--gold); font-weight: 600; }
.form-footer a:hover { text-decoration: underline; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.form-check input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); }
.form-check a { color: var(--gold); }

/* ── Page Header ─────────────────────────────────────── */
.page-hero {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14,36,20,0.6) 0%, transparent 100%);
}
.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 5px; }
.page-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}
.page-title span { color: var(--gold); }
.page-subtitle {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
  max-width: 560px;
  line-height: 1.6;
}

/* ── Provider Tags ───────────────────────────────────── */
.provider-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.provider-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: var(--text-dim);
  transition: all 0.15s;
  cursor: pointer;
}
.provider-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── Category Pills ──────────────────────────────────── */
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cat-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s;
}
.cat-pill:hover, .cat-pill.active {
  background: rgba(212,168,67,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Trust Badges ────────────────────────────────────── */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.trust-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.trust-badge-icon { font-size: 24px; margin-bottom: 6px; }
.trust-badge-title { font-size: 13px; font-weight: 700; }
.trust-badge-sub   { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ── Alert / Note ────────────────────────────────────── */
.alert {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.alert-info  { background: rgba(42,122,59,0.1);  border: 1px solid rgba(42,122,59,0.25);  color: #7edaa0; }
.alert-gold  { background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.3);  color: var(--gold); }
.alert-icon  { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ── Table ───────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-dim);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.data-table .td-highlight { color: var(--gold); font-weight: 700; }

/* ── Separator ───────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--bg-sidebar);
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo img { height: 24px; opacity: 0.6; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-dim); }
.footer-disclaimer { font-size: 11px; opacity: 0.55; max-width: 400px; text-align: right; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .sidebar { display: none; }
  .section { padding: 24px 20px; }
  .hero-content { padding: 36px 20px; }
  .hero-title { font-size: 26px; }
  .page-hero { padding: 24px 20px 20px; }
  .page-title { font-size: 22px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .auth-card { padding: 28px 20px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }
  .header-logo-name { display: none; }
}
@media (max-width: 500px) {
  .hero { height: auto; min-height: 320px; }
  .hero-actions { flex-direction: column; }
  .bonus-grid { grid-template-columns: 1fr; }
}
