/* ===========================================================
   Joycasino — Brown/Orange Design System (referenced from joycasino.com)
   =========================================================== */

:root {
  /* Warm brown/dark base */
  --bg-0: #18120e;
  --bg-1: #221b14;
  --bg-2: #2a221b;
  --bg-3: #362b21;
  --bg-card: #2a2218;
  --bg-elev: #34291f;
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.10);
  --line-3: rgba(255, 255, 255, 0.16);

  --ink-0: #f3eee7;
  --ink-1: #c8bdaf;
  --ink-2: #8a7d6e;
  --ink-3: #5d5145;

  /* Orange accent */
  --accent: #ed7e2a;
  --accent-2: #ff9244;
  --accent-3: #c95f10;
  --accent-glow: rgba(237, 126, 42, 0.35);
  --gold: #d9a85f;
  --green: #4ade80;
  --red: #ef4444;

  --sb-w: 286px;
  --topbar-h: 76px;
  --radius-card: 14px;
  --radius-pill: 999px;
  --radius-sm: 10px;

  --orange-gradient: linear-gradient(135deg, #ff8a3d 0%, #e87324 100%);

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 8px 26px var(--accent-glow);

  --container: 1440px;
}

/* Material Symbols Rounded */
.ms-icon {
  font-family: 'Material Symbols Rounded';
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.ms-icon.filled { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* Reset & base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--ink-0);
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  margin: 0 0 0.6em;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.4rem); }
p { margin: 0 0 1em; color: var(--ink-1); }
a { color: var(--accent-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.2em; }
li { margin-bottom: .35em; color: var(--ink-1); }

/* Subtle warm radial glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 50% -20%, rgba(237, 126, 42, 0.08), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(217, 168, 95, 0.05), transparent 70%);
}

/* Scrollbar */
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.18); background-clip: content-box; }

/* ===== LAYOUT ===== */
.app {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--sb-w) 1fr;
  min-height: 100vh;
}

/* ===== SIDEBAR (JoyCasino-style) ===== */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--bg-1);
  border-right: 1px solid var(--line);
  padding: 20px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  z-index: 50;
}
.sidebar > .nav-group + .nav-group { margin-top: -2px; }
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px 14px;
}
.brand-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .35));
}
.brand-tag-row { display: none; }

.nav-group {
  background: var(--bg-2);
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nav-group + .nav-group { margin-top: 0; }
.nav { display: flex; flex-direction: column; }
.sidebar .nav-group > a,
.sidebar .nav-group > .nav-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 14px;
  padding: 19px 18px;
  border-radius: 0;
  color: var(--ink-0) !important;
  font-weight: 400;
  font-size: .98rem;
  transition: background .15s;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  line-height: 1.2;
  min-height: 60px;
}
.sidebar .nav-group > a + a,
.sidebar .nav-group > .nav-item + .nav-item,
.sidebar .nav-group > a + .nav-item,
.sidebar .nav-group > .nav-item + a {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar .nav-group > a:hover,
.sidebar .nav-group > .nav-item:hover {
  background: var(--bg-3);
  color: var(--ink-0) !important;
}
.sidebar .nav-group > a.active,
.sidebar .nav-group > .nav-item.active {
  background: var(--bg-3);
  color: var(--ink-0) !important;
}

.sidebar .nav-ico {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  color: var(--ink-0);
}
.sidebar .nav-ico .ms-icon {
  font-size: 24px !important;
  line-height: 1;
}
.sidebar .nav-ico.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.sidebar .nav-ico.circle .ms-icon {
  font-size: 17px !important;
}

.sidebar .nav-chev {
  margin-left: auto;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.sidebar .nav-chev .ms-icon {
  font-size: 18px !important;
}
.sidebar .nav-meta {
  margin-left: auto;
  font-size: .88rem;
  color: var(--ink-2);
  font-weight: 500;
  flex-shrink: 0;
}
.sidebar .nav-meta + .nav-chev { margin-left: 10px; }
.sidebar .nav-group > a > span:not(.nav-ico):not(.nav-chev):not(.nav-meta) {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  background: linear-gradient(180deg, rgba(237, 126, 42, 0.12), rgba(237, 126, 42, 0.04));
  border: 1px solid rgba(237, 126, 42, 0.25);
  border-radius: 16px;
  text-align: center;
}
.sidebar-cta-title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--ink-0);
}
.sidebar-cta-text {
  font-size: .76rem;
  color: var(--ink-2);
  margin-bottom: 12px;
}

/* ===== MAIN ===== */
.main { position: relative; min-width: 0; }

/* ===== TOPBAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  height: var(--topbar-h);
  background: rgba(24, 18, 14, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.mobile-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink-0);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-toggle:hover { background: var(--bg-3); }

.topbar-logo {
  display: none;
  align-items: center;
  height: 44px;
}
.topbar-logo img { height: 36px; width: auto; display: block; }

.topbar-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background: var(--bg-2);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  color: var(--ink-1);
  font-weight: 600;
  font-size: .92rem;
  transition: all .2s;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.tab:hover { color: var(--ink-0); }
.tab.active {
  background: var(--orange-gradient);
  color: #1c1208;
  box-shadow: var(--shadow-glow);
}
.tab-ico { font-size: 1rem; }
.tab .ms-icon, .fpill .ms-icon { line-height: 1; vertical-align: middle; }
.fab-chat .ms-icon, .icon-btn .ms-icon, .arrow-btn .ms-icon { line-height: 1; }
.promo-circle-img .ms-icon { color: #fff; line-height: 1; }
.h-icon .ms-icon { color: var(--accent-2); line-height: 1; vertical-align: middle; }

.topbar-spacer { flex: 1; }

.topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--ink-0);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.topbar-btn:hover { background: rgba(237, 126, 42, 0.10); color: var(--ink-0); }
.topbar-btn.primary {
  background: var(--orange-gradient);
  border-color: transparent;
  color: #1c1208;
  box-shadow: var(--shadow-glow);
}
.topbar-btn.primary:hover { transform: translateY(-1px); color: #1c1208; }

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink-0);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  transition: all .2s;
}
.icon-btn:hover { background: var(--bg-3); color: var(--ink-0); }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 28px 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  border: 0;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange-gradient);
  color: #1c1208;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px var(--accent-glow); color: #1c1208; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-3);
  color: var(--ink-0);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); color: var(--ink-0); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ===== HERO BANNER ===== */
.banner-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-1);
  aspect-ratio: 1320 / 380;
  min-height: 280px;
  margin-bottom: 26px;
}
.banner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.banner-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(24, 18, 14, 0.95) 0%, rgba(24, 18, 14, 0.6) 35%, rgba(24, 18, 14, 0.05) 75%);
}
.banner-hero-content {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  max-width: 60%;
}
.banner-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(237, 126, 42, 0.18);
  border: 1px solid rgba(237, 126, 42, 0.4);
  color: var(--accent-2);
  border-radius: var(--radius-pill);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
  width: max-content;
}
.banner-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 14px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .55);
  line-height: 1.15;
}
.banner-hero h1 .accent { color: var(--accent-2); }
.banner-hero p.lead {
  color: var(--ink-1);
  font-size: 1rem;
  margin-bottom: 22px;
  max-width: 540px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}
.banner-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.banner-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}
.banner-dots span {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: background .25s;
}
.banner-dots span.active { background: var(--accent); width: 36px; }

/* Inline stats below hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.stat {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl { font-size: .82rem; color: var(--ink-2); }

/* ===== PROMO CIRCLES ===== */
.promo-circles {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.promo-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s;
}
.promo-circle:hover { transform: translateY(-3px); }
.promo-circle-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.promo-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-circle-emoji {
  font-size: 2.2rem;
}
.promo-circle-label {
  font-size: .82rem;
  color: var(--ink-1);
  text-align: center;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

/* ===== FILTER PILLS ===== */
.filter-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 14px;
  margin-bottom: 8px;
  scrollbar-width: none;
}
.filter-pills::-webkit-scrollbar { display: none; }
.fpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink-1);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.fpill:hover { background: var(--bg-3); color: var(--ink-0); }
.fpill.active {
  background: var(--orange-gradient);
  color: #1c1208;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.fpill-search {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
}

/* ===== SECTIONS / GRID ===== */
.section { margin-bottom: 38px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head .h-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-head h2 {
  margin: 0;
  font-size: 1.5rem;
}
.section-head .h-icon {
  font-size: 1.2rem;
}
.section-head .sub { color: var(--ink-2); font-size: .92rem; }
.section-head .link {
  font-size: .9rem;
  color: var(--accent-2);
  font-weight: 600;
}
.section-arrows {
  display: flex;
  gap: 6px;
}
.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink-0);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s;
}
.arrow-btn:hover { background: var(--bg-3); color: var(--accent); }

/* Slot grid (carousel-like) */
.slots-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(7, 1fr);
}
.slot {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
  aspect-ratio: 290 / 342;
}
.slot:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5); }
.slot-thumb {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.18);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slot-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slot-bg-1 { background: linear-gradient(135deg, #6b3df5 0%, #1f0a4f 100%); }
.slot-bg-2 { background: linear-gradient(135deg, #ff7a3d 0%, #b53d10 100%); }
.slot-bg-3 { background: linear-gradient(135deg, #5b8def 0%, #1a3aa3 100%); }
.slot-bg-4 { background: linear-gradient(135deg, #1a4d8c 0%, #0a1f3a 100%); }
.slot-bg-5 { background: linear-gradient(135deg, #6b912f 0%, #2c4519 100%); }
.slot-bg-6 { background: linear-gradient(135deg, #c9a154 0%, #5d4218 100%); }
.slot-bg-7 { background: linear-gradient(135deg, #d4639c 0%, #6b1f44 100%); }
.slot-bg-8 { background: linear-gradient(135deg, #4eb3a6 0%, #1a4d44 100%); }

.slot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.slot-badge.rtp { background: rgba(0, 0, 0, 0.7); }
.slot-badge.legendary { background: linear-gradient(135deg, #58a64e, #2f6428); }
.slot-badge.jackpot { background: linear-gradient(135deg, #c95f10, #7a2f04); }
.slot-badge.bonus-buy { background: linear-gradient(135deg, #5b8def, #1a3aa3); }
.slot-badge.top { background: linear-gradient(135deg, #d9a85f, #8a6420); }
.slot-badge.high { background: linear-gradient(135deg, #d4639c, #6b1f44); }

/* Slot title is visually hidden — game name is on the image itself.
   Kept in DOM for SEO/screen readers. */
.slot-title {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.slot-title small { display: none; }
.slot-info-i {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .72rem;
  z-index: 2;
}
.slot-play {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 14, 0.78);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .25s;
  z-index: 3;
}
.slot:hover .slot-play { opacity: 1; }

/* ===== CONTENT CARDS ===== */
.cards-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
  transition: all .25s;
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.feature {
  position: relative;
  overflow: hidden;
}
.feature-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(237, 126, 42, 0.12);
  border: 1px solid rgba(237, 126, 42, 0.25);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: 'Manrope', sans-serif; font-weight: 700; }
.feature p { color: var(--ink-2); font-size: .9rem; margin-bottom: 0; }

/* Bonus card */
.bonus-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 24px;
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(237, 126, 42, 0.22), transparent 65%);
}
.bonus-badge {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--orange-gradient);
  color: #1c1208;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.bonus-amount {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 8px;
}
.bonus-title { font-size: 1.15rem; margin-bottom: 8px; font-family: 'Manrope', sans-serif; font-weight: 700; }
.bonus-text { color: var(--ink-2); font-size: .9rem; margin-bottom: 16px; }
.bonus-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: .78rem;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.bonus-meta b { color: var(--ink-0); display: block; font-size: .98rem; }

/* Provider chips */
.providers { display: flex; flex-wrap: wrap; gap: 8px; }
.prov-chip {
  padding: 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  color: var(--ink-1);
  transition: all .2s;
}
.prov-chip:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); }

/* Tables */
.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  overflow-x: auto;
}
table.tbl { width: 100%; border-collapse: collapse; font-size: .9rem; }
.tbl th, .tbl td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.tbl thead th {
  background: rgba(0, 0, 0, 0.25);
  color: var(--ink-0);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.tbl tbody tr:hover { background: rgba(255, 255, 255, 0.025); }
.tbl tbody tr:last-child td { border-bottom: 0; }

/* Steps */
.steps { display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-gradient);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #1c1208;
}
.step h4 { font-size: 1.05rem; margin-bottom: 6px; font-family: 'Manrope', sans-serif; font-weight: 700; }
.step p { margin-bottom: 0; font-size: .9rem; color: var(--ink-2); }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-0);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .2s;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-body { padding: 16px 22px; color: var(--ink-1); font-size: .92rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* Pros/Cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.proscons-block {
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.proscons-block h3 { font-size: 1.05rem; font-family: 'Manrope', sans-serif; font-weight: 700; }
.pros h3 { color: var(--green); }
.cons h3 { color: var(--accent); }
.proscons ul { list-style: none; padding: 0; }
.proscons li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-1);
  font-size: .9rem;
}
.proscons li:last-child { border-bottom: 0; }
.pros li::before { content: "✓"; position: absolute; left: 4px; color: var(--green); font-weight: 700; }
.cons li::before { content: "−"; position: absolute; left: 4px; color: var(--accent); font-weight: 700; }

/* Info table (key:value) */
.kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.kv > div {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.kv > div:nth-child(odd) { color: var(--ink-2); background: rgba(0, 0, 0, .15); }
.kv > div:nth-child(even) { color: var(--ink-0); font-weight: 600; }
.kv > div:nth-last-child(-n+2) { border-bottom: 0; }

/* Sticky CTA mobile */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 86px;
  z-index: 60;
  display: none;
  padding: 12px 16px;
  background: var(--orange-gradient);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta-text { color: #1c1208; font-weight: 800; font-size: .88rem; }
.sticky-cta a {
  background: #1c1208;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
}
.sticky-cta a:hover { color: #fff; }

/* Floating chat button */
.fab-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-gradient);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #1c1208;
  box-shadow: 0 14px 32px rgba(237, 126, 42, .45);
  z-index: 70;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform .2s;
}
.fab-chat:hover { transform: scale(1.06); color: #1c1208; }

/* CTA section */
.cta-section {
  position: relative;
  padding: 44px;
  text-align: center;
  background: linear-gradient(135deg, rgba(237, 126, 42, 0.18) 0%, rgba(217, 168, 95, 0.06) 100%), var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  margin-bottom: 36px;
  overflow: hidden;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { font-size: 1rem; max-width: 600px; margin: 0 auto 22px; }
.cta-bg {
  background-image:
    linear-gradient(95deg, rgba(24, 18, 14, 0.85) 0%, rgba(24, 18, 14, 0.55) 50%, rgba(24, 18, 14, 0.35) 100%),
    var(--cta-img, none);
  background-size: cover;
  background-position: center;
}

/* Breadcrumbs */
.crumbs { display: flex; gap: 8px; font-size: .82rem; color: var(--ink-2); margin-bottom: 14px; flex-wrap: wrap; }
.crumbs a { color: var(--ink-2); }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { opacity: .6; }

/* Footer */
.site-footer {
  margin-top: 60px;
  padding: 36px 28px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 26px;
}
.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2); font-weight: 600; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col li a { color: var(--ink-1); font-size: .9rem; }
.footer-col li a:hover { color: var(--accent); }
.footer-disclaimer {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8rem;
  color: var(--ink-3);
}
.age-badge {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-weight: 900;
  color: var(--accent);
  font-size: .82rem;
}

/* Article body */
.article-body { max-width: 880px; }
.article-body h2 { margin-top: 40px; }
.article-body h3 { margin-top: 28px; }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  margin-bottom: 28px;
  align-items: center;
  justify-content: space-around;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--ink-1); font-size: .88rem; }
.trust-item .ico { font-size: 1.3rem; }

/* Highlight box */
.note {
  padding: 16px 20px;
  background: rgba(237, 126, 42, 0.06);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-card);
  margin: 20px 0;
  color: var(--ink-1);
  font-size: .92rem;
}
.note b { color: var(--ink-0); }

/* Banner frame (for content images) */
.banner-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
}
.banner-frame img { display: block; width: 100%; height: auto; }
.banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(24, 18, 14, .65) 100%);
  pointer-events: none;
}
.banner-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
  flex-wrap: wrap;
}
.banner-caption h3 {
  margin: 0;
  font-size: 1.4rem;
  font-family: 'Fraunces', serif;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}
.banner-caption p {
  margin: 4px 0 0;
  color: var(--ink-1);
  font-size: .92rem;
  max-width: 60%;
}
.banner-caption .btn { flex-shrink: 0; }

.split-banner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.split-banner .split-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  min-height: 260px;
}
.split-banner .split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-banner .split-text {
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Reveal animations */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .slots-row { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1024px) {
  :root { --sb-w: 0; }
  .sidebar {
    position: fixed;
    width: 280px;
    transform: translateX(-100%);
    transition: transform .3s;
  }
  .sidebar.open { transform: translateX(0); }
  .app { grid-template-columns: 1fr; }
  .topbar-logo { display: flex; }
  .topbar-tabs { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slots-row { grid-template-columns: repeat(4, 1fr); }
  .banner-hero-content { max-width: 80%; }
}
@media (max-width: 720px) {
  .container { padding: 18px 14px 32px; }
  .topbar { padding: 12px 14px; gap: 10px; }
  .topbar-btn:not(.primary) { display: none; }
  .icon-btn { display: none; }
  .promo-circle { width: 84px; }
  .promo-circle-img { width: 72px; height: 72px; }
  .filter-pills { gap: 8px; }
  .fpill { padding: 10px 16px; font-size: .85rem; }
  .slots-row { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 30px 20px; }
  .proscons { grid-template-columns: 1fr; }
  .kv { grid-template-columns: 1fr; }
  .kv > div { padding: 10px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
  .banner-hero-content { max-width: 100%; }
  .banner-hero p.lead { font-size: .92rem; }
}
