/* ============================================================
   ReddyBook · Reddy Anna Exchange — Indian Betting Exchange UI
   Theme: Maroon + Red + Black + Gold, compact sportsbook
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-2: #111;
  --bg-3: #1a1a1a;
  --panel: #1f1f1f;
  --panel-2: #262626;
  --line: #2a2a2a;
  --line-2: #333;
  --maroon: #7a0b19;
  --red: #c81d25;
  --red-2: #e63946;
  --red-dark: #8b0000;
  --gold: #ffc107;
  --gold-2: #ffd54a;
  --green: #29a745;
  --green-2: #22c55e;
  --blue: #72bbef;
  --blue-2: #3b82f6;
  --pink: #faa9ba;
  --text: #f3f3f3;
  --text-dim: #b5b5b5;
  --text-mute: #7c7c7c;
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input { font-family: inherit; }
.oswald { font-family: 'Oswald', sans-serif; font-weight: 600; letter-spacing: .02em; }
.bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 12px; }

/* ============== TICKER (TOP MARQUEE) ============== */
.ticker {
  background: linear-gradient(90deg, #5a0611, #b30b1a 50%, #5a0611);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  height: 32px;
  line-height: 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.4);
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
}
.ticker > .container {
  display: flex;
  align-items: center;
  padding: 0 12px !important;
  height: 100%;
  overflow: hidden;
}
.ticker .lbl {
  background: #ffc107;
  color: #1a1a1a;
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .04em;
  padding: 2px 10px;
  border-radius: 3px;
  margin-right: 14px;
  font-size: 11px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.ticker .track-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 32px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 32px), transparent 100%);
}
.ticker .track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  padding-left: 12px;
}
.ticker .track span { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ticker .dot { width: 6px; height: 6px; border-radius: 50%; background: #ffc107; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== HEADER ============== */
.site-header {
  background: linear-gradient(180deg, #1a0306 0%, #0d0304 100%);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 80;
}
.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 0 0 2px rgba(255,193,7,.6);
  object-fit: contain;
}
.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .name b {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: .02em;
}
.brand .name b em {
  font-style: normal;
  color: var(--gold);
}
.brand .name small {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 700;
}

.search {
  position: relative;
  max-width: 440px;
  width: 100%;
  justify-self: center;
}
.search input {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid var(--line-2);
  color: #fff;
  padding: 10px 14px 10px 38px;
  border-radius: 999px;
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
}
.search input:focus { border-color: var(--red); background: #111; }
.search input::placeholder { color: var(--text-mute); }
.search svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--text-mute);
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  transition: transform .2s, filter .2s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-login {
  background: linear-gradient(180deg, #ffd54a, #ffc107);
  color: #1a0306;
  border: 1px solid #d99b00;
}
.btn-signup {
  background: linear-gradient(180deg, #e63946, #b30b1a);
  color: #fff;
  border: 1px solid #7a0b19;
}
.btn-wa {
  background: linear-gradient(180deg, #25d366, #128c7e);
  color: #fff;
  border: 1px solid #0b5e53;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line-2);
}
.btn-ghost { background: transparent; color: var(--gold); border: 1px solid var(--red); }
.btn-red {
  background: linear-gradient(180deg, #e63946, #b30b1a);
  color: #fff; border: 1px solid #7a0b19;
}
.btn-gold {
  background: linear-gradient(180deg, #ffd54a, #ffc107);
  color: #1a0306; border: 1px solid #d99b00;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-lg { padding: 11px 22px; font-size: 14px; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-block { width: 100%; }

/* Menu toggle (mobile) */
.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 6px;
  color: #fff;
  place-items: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: #fff; margin: 2px auto;
  border-radius: 2px;
}
.sign-mobile { display: none; }
.sign-full { display: inline; }

/* ============== CATEGORY NAV ============== */
.cat-nav {
  background: linear-gradient(180deg, #c81d25, #8b0000);
  border-bottom: 2px solid #500006;
  overflow: hidden;
}
.cat-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid rgba(0,0,0,.2);
  transition: background .2s;
  white-space: nowrap;
}
.cat-nav a:hover, .cat-nav a.active {
  background: rgba(0,0,0,.3);
  color: var(--gold);
}
.cat-nav a svg { width: 14px; height: 14px; }
.cat-nav a .pill {
  font-size: 9px;
  background: var(--gold);
  color: #1a0306;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: .04em;
}

/* ============== HERO CAROUSEL ============== */
.hero-carousel {
  position: relative;
  padding: 12px 0;
  background: #0d0304;
}
.hc-track {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}
.banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 260px;
  background: linear-gradient(135deg, #b30b1a, #3a0409);
  display: flex;
  align-items: center;
  padding: 24px 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,.5);
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(255,193,7,.25), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.08), transparent 55%);
  pointer-events: none;
}
.banner .b-copy { position: relative; z-index: 2; max-width: 60%; }
.banner .b-art { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-size: 180px; opacity: .2; font-family: 'Bebas Neue'; color: #ffc107; z-index: 1; }
.banner .tag {
  display: inline-block;
  background: #ffc107;
  color: #1a0306;
  font-weight: 800;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}
.banner h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0 rgba(0,0,0,.3);
}
.banner h2 span { color: var(--gold); }
.banner p { color: rgba(255,255,255,.85); font-size: 13.5px; margin-bottom: 14px; }
.banner .b-cta { display: flex; gap: 8px; }
.banner.b-cricket { background: linear-gradient(135deg, #14532d 0%, #0a2912 100%); }
.banner.b-cricket::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(250,204,21,.15), transparent 50%);
}
.banner.b-casino { background: linear-gradient(135deg, #3b0764 0%, #1e0532 100%); }
.banner.b-ipl { background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%); }

.hc-side { display: flex; flex-direction: column; gap: 10px; }
.side-banner {
  position: relative;
  height: 125px;
  border-radius: 10px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.5);
}
.side-banner .tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: .08em;
  font-weight: 800;
  margin-bottom: 6px;
  width: fit-content;
  font-family: 'Oswald', sans-serif;
}
.side-banner h3 { font-family: 'Oswald', sans-serif; font-size: 18px; color: #fff; margin-bottom: 4px; line-height: 1.1; }
.side-banner p { color: rgba(255,255,255,.8); font-size: 12px; margin-bottom: 8px; }
.side-banner.wa { background: linear-gradient(135deg, #128c7e, #075e54); }
.side-banner.wa .tag { background: #fff; color: #075e54; }
.side-banner.bonus { background: linear-gradient(135deg, #f59e0b, #78350f); }
.side-banner.bonus .tag { background: #1a0306; color: var(--gold); }

/* ============== SECTION ============== */
.section { padding: 18px 0 6px; }
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sec-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.sec-head h2::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--red);
  border-radius: 2px;
}
.sec-head h2 .count {
  font-size: 11px;
  background: var(--red);
  color: #fff;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0;
  font-family: 'Inter';
  font-weight: 700;
}
.sec-head a.more {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ============== ODDS TABLE ============== */
.odds-table {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.odds-head {
  display: grid;
  grid-template-columns: 1fr repeat(6, 50px);
  gap: 4px;
  padding: 8px 12px;
  background: #141414;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-mute);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.odds-head div:first-child { text-align: left; }
.odds-head .pair {
  grid-column: span 2;
  background: transparent;
  padding: 0;
}
.odds-row {
  display: grid;
  grid-template-columns: 1fr repeat(6, 50px);
  gap: 4px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 13px;
  transition: background .15s;
}
.odds-row:last-child { border-bottom: 0; }
.odds-row:hover { background: #181818; }
.odds-row .match {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.odds-row .match .teams { font-weight: 600; color: #fff; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.odds-row .match .teams .live {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 2px;
  margin-right: 6px;
  letter-spacing: .08em;
  font-weight: 800;
  vertical-align: middle;
}
.odds-row .match .teams .live::before {
  content: '●';
  margin-right: 3px;
  animation: pulse 1.2s infinite;
}
@keyframes pulse { 50% { opacity: .4; } }
.odds-row .match .meta { font-size: 11px; color: var(--text-mute); }
.odds-row .match .meta .score { color: var(--gold); font-weight: 600; }
.odds-cell {
  text-align: center;
  padding: 6px 0;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  transition: filter .15s;
}
.odds-cell.back { background: #72bbef; color: #0c2540; }
.odds-cell.lay  { background: #faa9ba; color: #3d0010; }
.odds-cell.empty { background: #1a1a1a; color: var(--text-mute); cursor: default; }
.odds-cell:hover:not(.empty) { filter: brightness(1.08); }
.odds-cell small { display: block; font-size: 9px; font-weight: 500; opacity: .8; margin-top: 1px; }

/* ============== MATCH TABS ============== */
.match-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  background: #141414;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.match-tabs::-webkit-scrollbar { display: none; }
.match-tabs button {
  flex-shrink: 0;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  border-radius: 5px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.match-tabs button.active, .match-tabs button:hover {
  background: var(--red);
  color: #fff;
}

/* ============== RAIL (HORIZONTAL SCROLL) ============== */
.rail-wrap { position: relative; }
.rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.rail::-webkit-scrollbar { display: none; }
.rail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,.7);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
  transition: background .2s;
}
.rail-nav:hover { background: var(--red); }
.rail-nav.prev { left: -12px; }
.rail-nav.next { right: -12px; }

/* ============== GAME THUMBNAILS ============== */
.game-card {
  flex-shrink: 0;
  width: 158px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.game-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(200,29,37,.25);
}
.game-thumb {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(255,255,255,.9);
  text-shadow: 2px 2px 0 rgba(0,0,0,.35);
}
.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.8));
}
.game-thumb .hot {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: .08em;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
}
.game-thumb .hot.new { background: var(--green); }
.game-thumb .hot.gold { background: var(--gold); color: #1a0306; }
.game-thumb .prov {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 9px;
  font-family: 'Inter';
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-shadow: 1px 1px 0 rgba(0,0,0,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2;
}
.game-card .info {
  padding: 8px 10px;
}
.game-card .info h4 {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card .info .cat { font-size: 10px; color: var(--text-mute); letter-spacing: .05em; text-transform: uppercase; font-weight: 600; }

/* Thumbnail gradients — distinct per-card */
.t-g1 { background: linear-gradient(135deg, #b91c1c, #450a0a); }
.t-g2 { background: linear-gradient(135deg, #15803d, #052e16); }
.t-g3 { background: linear-gradient(135deg, #7c3aed, #2e1065); }
.t-g4 { background: linear-gradient(135deg, #f59e0b, #713f12); }
.t-g5 { background: linear-gradient(135deg, #0891b2, #083344); }
.t-g6 { background: linear-gradient(135deg, #db2777, #500724); }
.t-g7 { background: linear-gradient(135deg, #1e40af, #0c1a4a); }
.t-g8 { background: linear-gradient(135deg, #4d7c0f, #1a2e05); }
.t-g9 { background: linear-gradient(135deg, #ea580c, #5b1f06); }
.t-g10 { background: linear-gradient(135deg, #be123c, #3d0010); }
.t-g11 { background: linear-gradient(135deg, #0f766e, #042f2c); }
.t-g12 { background: linear-gradient(135deg, #a16207, #3d2804); }

/* ============== BANNERS STRIP ============== */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 10px 0;
}
.promo-card {
  position: relative;
  height: 115px;
  border-radius: 8px;
  overflow: hidden;
  padding: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  transition: transform .25s;
}
.promo-card:hover { transform: translateY(-2px); }
.promo-card .ico {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  opacity: .3;
  position: absolute;
  right: 10px;
  bottom: 6px;
}
.promo-card .ptag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}
.promo-card h4 { font-family: 'Oswald', sans-serif; font-size: 17px; line-height: 1.1; font-weight: 700; }
.promo-card small { font-size: 11px; opacity: .85; }
.p1 { background: linear-gradient(135deg, #be123c, #500724); }
.p2 { background: linear-gradient(135deg, #6d28d9, #1e0a55); }
.p3 { background: linear-gradient(135deg, #0369a1, #052035); }
.p4 { background: linear-gradient(135deg, #15803d, #052e16); }

/* ============== ICON GRID ============== */
.ico-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.ico-tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ico-tile:hover { border-color: var(--red); transform: translateY(-2px); }
.ico-tile .svg-wrap {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #2a0406, #0a0101);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.ico-tile .svg-wrap svg { width: 22px; height: 22px; }
.ico-tile .label { font-size: 11px; font-weight: 600; color: #fff; }
.ico-tile .sub { font-size: 10px; color: var(--text-mute); }

/* ============== LIVE CASINO TABLES ============== */
.casino-live {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ct-card {
  position: relative;
  border-radius: 8px;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1a4a, #030818);
  cursor: pointer;
  transition: transform .25s;
  border: 1px solid var(--line);
}
.ct-card:hover { transform: translateY(-3px); border-color: var(--red); }
.ct-card .art {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Bebas Neue'; font-size: 110px;
  color: rgba(255,255,255,.85);
  text-shadow: 3px 3px 0 rgba(0,0,0,.5);
}
.ct-card .art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85));
}
.ct-card .meta { position: absolute; left: 10px; bottom: 10px; z-index: 2; }
.ct-card .meta .t { font-family: 'Oswald', sans-serif; font-size: 15px; color: #fff; }
.ct-card .meta .s { font-size: 10px; color: var(--gold); margin-top: 2px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.ct-card .live-tag {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #fff; font-size: 9px;
  padding: 2px 6px; border-radius: 3px;
  font-weight: 800; letter-spacing: .08em; font-family: 'Oswald';
  z-index: 2;
}
.ct-card .live-tag::before { content: '●'; margin-right: 3px; animation: pulse 1.2s infinite; }
.ct-card .play-tag {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,.6); color: #fff; font-size: 10px;
  padding: 3px 8px; border-radius: 12px;
  font-weight: 700; z-index: 2;
  border: 1px solid rgba(255,255,255,.15);
}
.ct-1 { background: linear-gradient(135deg, #7f1d1d, #3d0f0f); }
.ct-2 { background: linear-gradient(135deg, #15803d, #052e16); }
.ct-3 { background: linear-gradient(135deg, #6d28d9, #2e1065); }
.ct-4 { background: linear-gradient(135deg, #c2410c, #5b1f06); }
.ct-5 { background: linear-gradient(135deg, #0e7490, #083344); }
.ct-6 { background: linear-gradient(135deg, #be123c, #500724); }
.ct-7 { background: linear-gradient(135deg, #1d4ed8, #0a205a); }
.ct-8 { background: linear-gradient(135deg, #a16207, #3d2804); }

/* ============== JACKPOT CARDS ============== */
.jackpot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.jp {
  position: relative;
  border-radius: 10px;
  padding: 16px 18px;
  overflow: hidden;
  color: #fff;
  min-height: 108px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.jp .coin {
  position: absolute;
  right: -10px;
  top: -18px;
  font-size: 160px;
  font-family: 'Bebas Neue';
  opacity: .14;
  line-height: 1;
}
.jp .lbl { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; font-weight: 700; }
.jp .amt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: .03em;
  line-height: 1;
  margin: 6px 0 4px;
}
.jp small { font-size: 11px; opacity: .85; }
.jp .play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .02em;
  z-index: 2;
}
.jp-1 { background: linear-gradient(135deg, #b91c1c, #450a0a); }
.jp-2 { background: linear-gradient(135deg, #6d28d9, #2e1065); }
.jp-3 { background: linear-gradient(135deg, #0369a1, #052035); }

/* ============== WHATSAPP STRIP ============== */
.wa-strip {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 60%, #128c7e 100%);
  border-radius: 10px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  color: #fff;
  margin: 12px 0;
  box-shadow: 0 4px 18px rgba(18,140,126,.35);
}
.wa-strip .wa-ic {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.wa-strip .wa-ic svg { width: 26px; height: 26px; color: #fff; }
.wa-strip h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.2; }
.wa-strip p { font-size: 13px; opacity: .9; margin-top: 2px; }
.wa-strip .btn { background: #fff; color: #075e54; border: 0; }

/* ============== PAYMENTS ============== */
.pay-strip {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 12px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.pay-strip h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #fff;
  letter-spacing: .02em;
}
.pay-strip h4 small { display: block; color: var(--text-mute); font-size: 11px; font-weight: 400; margin-top: 2px; font-family: 'Inter'; letter-spacing: 0; text-transform: none; }
.pay-logos {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end;
}
.pm {
  background: #fff;
  color: #1a1a1a;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .02em;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.1);
}
.pm.upi { background: #fff; color: #097939; }
.pm.ppe { background: #5f259f; color: #fff; }
.pm.ptm { background: #00baf2; color: #fff; }
.pm.gpy { background: #fff; color: #1a73e8; }
.pm.imps { background: #1a1a1a; color: #fff; border: 1px solid var(--gold); }
.pm.neft { background: #0c2d6b; color: #fff; }
.pm.rtgs { background: #b91c1c; color: #fff; }
.pm.usdt { background: #26a17b; color: #fff; }

/* ============== FEATURES SMALL ============== */
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.why .tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  display: flex; gap: 12px; align-items: flex-start;
}
.why .tile .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #b91c1c, #450a0a);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--gold);
}
.why .tile .ico svg { width: 22px; height: 22px; }
.why .tile b { font-family: 'Oswald', sans-serif; font-size: 14px; color: #fff; letter-spacing: .02em; display: block; margin-bottom: 3px; }
.why .tile p { font-size: 12px; color: var(--text-dim); line-height: 1.4; }

/* ============== FAQ ============== */
.faq-grid { display: grid; gap: 6px; }
.faq {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
}
.faq[open] { border-color: var(--red); background: #1a0c0d; }
.faq summary {
  list-style: none;
  padding: 12px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold); font-size: 20px; line-height: 1; }
.faq[open] summary::after { content: '−'; }
.faq .a {
  padding: 0 0 14px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

/* ============== ARTICLE (SEO CONTENT) ============== */
.article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.75;
}
.article h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: #fff;
  margin: 14px 0 8px;
  letter-spacing: .02em;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 15.5px;
  color: var(--gold);
  margin: 14px 0 6px;
  letter-spacing: .02em;
}
.article p { margin-bottom: 10px; }
.article ul, .article ol { padding-left: 20px; margin-bottom: 12px; }
.article ul li, .article ol li { margin-bottom: 5px; font-size: 13.5px; }
.article a { color: var(--gold); font-weight: 500; }
.article a:hover { text-decoration: underline; }
.article strong, .article b { color: #fff; }
.article .callout {
  background: rgba(200,29,37,.08);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  margin: 14px 0;
  border-radius: 0 6px 6px 0;
  color: var(--text);
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 13px;
}
.article table th, .article table td {
  padding: 9px 12px;
  border: 1px solid var(--line);
  text-align: left;
}
.article table th { background: #141414; color: var(--gold); font-family: 'Oswald'; font-weight: 600; }

/* ============== BLOG ============== */
.blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.blog-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, border-color .2s;
}
.blog-card:hover { transform: translateY(-2px); border-color: var(--red); }
.blog-card .img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #7f1d1d, #1a0306);
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue'; color: rgba(255,255,255,.4); font-size: 48px;
}
.blog-card.b2 .img { background: linear-gradient(135deg, #1e3a8a, #0a1030); }
.blog-card.b3 .img { background: linear-gradient(135deg, #5b21b6, #210a49); }
.blog-card .info { padding: 12px 14px; }
.blog-card .info .cat { font-size: 10px; color: var(--red-2); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-family: 'Oswald'; }
.blog-card .info h4 { font-family: 'Oswald', sans-serif; font-size: 15px; color: #fff; margin: 4px 0 6px; line-height: 1.25; }
.blog-card .info p { font-size: 12px; color: var(--text-mute); line-height: 1.5; margin-bottom: 8px; }
.blog-card .info .date { font-size: 11px; color: var(--text-mute); }

/* ============== FOOTER ============== */
.site-footer {
  background: #060606;
  border-top: 2px solid var(--red);
  margin-top: 30px;
  padding: 28px 0 16px;
  font-size: 13px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.foot-grid h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.foot-grid ul li { margin-bottom: 7px; }
.foot-grid ul li a { color: var(--text-dim); font-size: 12.5px; }
.foot-grid ul li a:hover { color: #fff; }
.foot-about p { color: var(--text-dim); font-size: 12.5px; margin: 10px 0 14px; line-height: 1.6; }
.foot-about .socials { display: flex; gap: 8px; }
.foot-about .socials a {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: #141414;
  border: 1px solid var(--line);
  color: var(--text-dim);
  display: grid; place-items: center;
}
.foot-about .socials a:hover { color: #fff; background: var(--red); }
.foot-about .socials svg { width: 15px; height: 15px; }
.foot-brand {
  display: flex; align-items: center; gap: 10px;
}
.foot-brand img { width: 38px; height: 38px; border-radius: 6px; background: #fff; padding: 3px; }
.foot-brand b { font-family: 'Oswald'; font-size: 20px; color: #fff; }
.foot-brand b em { font-style: normal; color: var(--gold); }

.disclaim {
  margin-top: 16px;
  background: rgba(200,29,37,.06);
  border: 1px solid rgba(200,29,37,.2);
  color: var(--text-dim);
  font-size: 11.5px;
  padding: 12px 16px;
  border-radius: 6px;
  line-height: 1.6;
}
.disclaim b { color: var(--red-2); }
.foot-bottom {
  padding-top: 14px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 11.5px; color: var(--text-mute);
}
.foot-bottom .legal { display: flex; gap: 16px; }
.foot-bottom .legal a:hover { color: var(--gold); }

/* ============== WhatsApp Float ============== */
.wa-float {
  position: fixed;
  right: 14px; bottom: 14px;
  z-index: 70;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px -6px rgba(37,211,102,.6);
  animation: floatWA 2.4s ease-in-out infinite;
}
.wa-float .ic {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid; place-items: center;
}
.wa-float .ic svg { width: 16px; height: 16px; }
@keyframes floatWA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ============== MODAL ============== */
.modal-bd {
  position: fixed; inset: 0;
  background: rgba(4,4,6,.8);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 200;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-bd.open { display: flex; animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: 100%;
  max-width: 420px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,193,7,.14), transparent 50%),
    linear-gradient(160deg, #1a0306, #0a0101);
  border: 1px solid var(--red);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,.7);
  animation: rise .3s ease;
}
@keyframes rise { from { transform: translateY(20px); opacity: 0;} to { transform: none; opacity: 1;} }
.modal .close {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff; font-size: 20px;
  display: grid; place-items: center;
}
.modal .crest {
  width: 70px; height: 70px; margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -4px rgba(37,211,102,.6);
}
.modal .crest svg { width: 34px; height: 34px; color: #fff; }
.modal h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal h3 span { color: var(--gold); }
.modal p { color: var(--text-dim); font-size: 13px; margin-bottom: 18px; max-width: 320px; margin-left: auto; margin-right: auto; }
.modal .perks {
  display: flex; flex-direction: column; gap: 6px;
  text-align: left; margin-bottom: 18px;
}
.modal .perks li {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  display: flex; align-items: center; gap: 8px;
  color: var(--text);
}
.modal .perks li svg { width: 14px; height: 14px; color: var(--green-2); flex-shrink: 0; }
.modal .fine { color: var(--text-mute); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; margin-top: 12px; font-weight: 600; }
.modal .btn { width: 100%; padding: 13px 20px; font-size: 14px; }

/* ============== PAGE HERO (sub pages) ============== */
.page-hero {
  position: relative;
  padding: 24px 0 22px;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(200,29,37,.12), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(255,193,7,.07), transparent 60%),
    linear-gradient(180deg, #141414, #0a0a0a);
  border-bottom: 1px solid var(--line);
}
.crumb {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.crumb a { color: var(--gold); }
.crumb span { color: var(--text-mute); margin: 0 6px; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  line-height: 1.05;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p.lede { color: var(--text-dim); max-width: 760px; font-size: 14px; }
.page-hero .actions { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }

.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}
.side-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.side-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.side-card h4::before {
  content: ''; width: 3px; height: 14px; background: var(--red); border-radius: 2px;
}
.side-card ul li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 13px; }
.side-card ul li:last-child { border-bottom: 0; }
.side-card ul li a { color: var(--text); }
.side-card ul li a:hover { color: var(--gold); }
.side-card .cta { margin-top: 10px; }

/* ============== CONTACT ============== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 20px;
}
.contact-card h3 { font-family: 'Oswald', sans-serif; font-size: 18px; color: #fff; margin-bottom: 4px; }
.contact-card > p { color: var(--text-dim); font-size: 13px; }
.contact-card .row {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--line); margin-top: 8px;
}
.contact-card .row:first-of-type { border-top: 0; }
.contact-card .row .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #b91c1c, #450a0a);
  display: grid; place-items: center; color: var(--gold); flex-shrink: 0;
}
.contact-card .row b { color: #fff; display: block; font-size: 13px; }
.contact-card .row span { color: var(--text-dim); font-size: 12px; }

/* ============== COUNTERS ============== */
.counter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 10px 0;
}
.counter {
  background: linear-gradient(180deg, #1a0306, #0a0101);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.counter .ico {
  width: 38px; height: 38px;
  background: rgba(200,29,37,.2);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.counter .ico svg { width: 20px; height: 20px; }
.counter .val {
  font-family: 'Bebas Neue'; font-size: 24px; color: #fff; line-height: 1;
}
.counter .val::after { content: ''; }
.counter.live .val::after {
  content: '●'; color: var(--red-2); margin-left: 6px; font-size: 10px;
  vertical-align: middle; animation: pulse 1.2s infinite;
}
.counter .lbl { font-size: 10.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; font-weight: 600; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hc-track { grid-template-columns: 1fr; }
  .hc-side { flex-direction: row; }
  .side-banner { flex: 1; height: 100px; }
  .promo-strip { grid-template-columns: repeat(2, 1fr); }
  .jackpot-row { grid-template-columns: 1fr; }
  .casino-live { grid-template-columns: repeat(2, 1fr); }
  .ico-grid { grid-template-columns: repeat(6, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .blog-row { grid-template-columns: 1fr; }
  .counter-row { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .odds-head, .odds-row { grid-template-columns: 1fr repeat(6, 42px); font-size: 12px; }
  .odds-cell { font-size: 12px; }
}

@media (max-width: 680px) {
  .container { padding: 0 10px; }
  .header-main { grid-template-columns: auto 1fr auto; gap: 8px; padding: 8px 0; }
  .search { display: none; }
  .btn-login { display: none; }
  .sign-full { display: none; }
  .sign-mobile { display: inline; }
  .btn-signup { padding: 9px 14px; font-size: 12px; letter-spacing: .04em; height: 38px; display: inline-flex; align-items: center; }
  .menu-toggle { display: flex; }
  .header-actions { gap: 6px; align-items: center; }
  .brand { gap: 8px; }
  .brand .logo-img { width: 36px; height: 36px; }
  .brand .name b { font-size: 18px; }
  .brand .name small { display: none; }
  .ticker { height: 28px; font-size: 11px; }
  .ticker .lbl { font-size: 10px; padding: 2px 7px; margin-right: 10px; }
  .banner { height: auto; min-height: 200px; padding: 16px; }
  .banner h2 { font-size: 20px; line-height: 1.1; }
  .banner p { font-size: 12px; margin-bottom: 12px; }
  .banner .b-copy { max-width: 100%; position: relative; z-index: 2; }
  .banner .b-art { font-size: 90px; right: -10px; opacity: .12; }
  .banner .b-cta { flex-wrap: wrap; }
  .banner .b-cta .btn { padding: 9px 14px; font-size: 12px; }
  .hc-side { flex-direction: column; }
  .promo-strip { grid-template-columns: 100%; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; display: flex; padding: 0 2px; }
  .promo-strip::-webkit-scrollbar { display: none; }
  .promo-card { flex: 0 0 calc(100% - 4px); height: 100px; padding: 12px; scroll-snap-align: center; margin-right: 8px; }
  .promo-card:last-child { margin-right: 0; }
  .promo-card h4 { font-size: 14px; }
  .ico-grid { grid-template-columns: repeat(4, 1fr); }
  .why { grid-template-columns: 1fr 1fr; }
  .casino-live { grid-template-columns: 1fr 1fr; }
  .pay-strip { grid-template-columns: 1fr; }
  .pay-logos { justify-content: flex-start; }
  .wa-strip { grid-template-columns: auto 1fr; }
  .wa-strip .btn { grid-column: 1/-1; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .counter-row { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 24px; }
  .odds-head, .odds-row { grid-template-columns: 1fr repeat(2, 52px); font-size: 12px; }
  .odds-head div.d-more, .odds-row div.d-more { display: none; }
  .game-card { width: 128px; }
  .game-thumb { font-size: 48px; }
  .jp .amt { font-size: 28px; }
  .sec-head h2 { font-size: 15.5px; }
  .sec-head a.more { font-size: 11px; }
}

/* Mobile drawer */
.drawer { display: none; }
@media (max-width: 680px) {
  .drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 86%; max-width: 320px;
    height: 100vh;
    background: #0a0101;
    border-left: 2px solid var(--red);
    z-index: 150;
    transition: right .3s ease;
    padding: 20px 0;
    overflow-y: auto;
  }
  .drawer.open { right: 0; display: block; }
  .drawer-head {
    padding: 0 18px 14px;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
  }
  .drawer-head img { width: 32px; height: 32px; border-radius: 6px; background: #fff; padding: 2px; }
  .drawer-close {
    background: #1a1a1a; color: #fff; width: 32px; height: 32px;
    border-radius: 6px; font-size: 20px; line-height: 1;
  }
  .drawer a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  .drawer a:hover { background: var(--red); }
  .drawer .actions { padding: 14px 18px; display: flex; flex-direction: column; gap: 8px; }
  .drawer .actions .btn { width: 100%; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

::selection { background: rgba(255,193,7,.3); color: #fff; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2a0a0d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }
