/* =========================================================
   SilverHavenLabs — core stylesheet
   ========================================================= */

:root {
  --shl-bg: #0d0c10;
  --shl-bg-soft: #131217;
  --shl-panel: #1a1920;
  --shl-panel-2: #232129;
  --shl-line: #322f3a;
  --shl-line-soft: #262430;
  --shl-text: #f3efe8;
  --shl-muted: #a49c92;
  --shl-silver: #cfc9c0;
  --shl-gold: #e5be7a;
  --shl-gold-deep: #b6813d;
  --shl-copper: #d98a6a;
  --shl-steel: #c3ccd9;
  --shl-danger: #ff8a8a;

  --shl-grad: linear-gradient(135deg, #f7e2b4 0%, #e5be7a 40%, #d98a6a 100%);
  --shl-grad-soft: linear-gradient(135deg, rgba(229, 190, 122, .16), rgba(217, 138, 106, .14));

  --shl-radius-s: 12px;
  --shl-radius: 18px;
  --shl-radius-l: 26px;

  --shl-shadow: 0 22px 60px rgba(8, 6, 4, .55);
  --shl-shadow-soft: 0 12px 30px rgba(8, 6, 4, .35);
  --shl-glow: 0 0 0 1px rgba(229, 190, 122, .25), 0 18px 46px rgba(229, 190, 122, .12);

  --shl-wrap: 1200px;
  --shl-head: 78px;
  --shl-ease: cubic-bezier(.22, .8, .34, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--shl-bg);
  color: var(--shl-text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.shl_locked { overflow: hidden; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(760px 420px at 12% -6%, rgba(229, 190, 122, .11), transparent 68%),
    radial-gradient(700px 420px at 92% 4%, rgba(217, 138, 106, .12), transparent 66%),
    radial-gradient(900px 600px at 50% 108%, rgba(229, 190, 122, .06), transparent 70%);
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--shl-gold); text-decoration: none; transition: color .2s var(--shl-ease); }
a:hover { color: #f9e9c6; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: 'Sora', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  color: #faf6ee;
}

.shl_h1 { font-size: clamp(2.15rem, 4.6vw, 3.5rem); font-weight: 700; }
.shl_h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 650; }
.shl_h3 { font-size: clamp(1.12rem, 1.6vw, 1.35rem); font-weight: 600; }
.shl_h4 { font-size: 1.02rem; font-weight: 600; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.shl_container {
  width: 100%;
  max-width: var(--shl-wrap);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.shl_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--shl-gold);
  background: rgba(229, 190, 122, .09);
  border: 1px solid rgba(229, 190, 122, .26);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.shl_eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--shl-gold);
  box-shadow: 0 0 12px var(--shl-gold);
}

.shl_muted { color: var(--shl-muted); }
.shl_center { text-align: center; }

/* ---------------- Buttons ---------------- */

.shl_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  text-align: center;
  transition: transform .22s var(--shl-ease), box-shadow .22s var(--shl-ease),
              background .22s var(--shl-ease), color .22s var(--shl-ease), border-color .22s var(--shl-ease);
}

.shl_btn:active { transform: translateY(1px) scale(.99); }

.shl_btn_primary {
  background: var(--shl-grad);
  color: #241905;
  box-shadow: 0 14px 34px rgba(229, 190, 122, .26);
}
.shl_btn_primary:hover {
  color: #241905;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(229, 190, 122, .36);
}

.shl_btn_secondary {
  background: rgba(207, 201, 192, .05);
  border-color: var(--shl-line);
  color: var(--shl-text);
}
.shl_btn_secondary:hover {
  border-color: rgba(229, 190, 122, .55);
  color: #fff;
  transform: translateY(-3px);
  background: rgba(229, 190, 122, .08);
}

.shl_btn_action {
  background: linear-gradient(135deg, #d98a6a, #b0653f);
  color: #241905;
  box-shadow: 0 14px 34px rgba(217, 138, 106, .3);
  width: 100%;
}
.shl_btn_action:hover { transform: translateY(-3px); color: #241905; }
.shl_btn_action:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.shl_btn_auth {
  background: rgba(229, 190, 122, .1);
  border-color: rgba(229, 190, 122, .35);
  color: var(--shl-gold);
  padding: 10px 18px;
  font-size: .86rem;
}
.shl_btn_auth:hover { background: rgba(229, 190, 122, .18); color: #fbeed2; }

.shl_btn_ghost {
  background: transparent;
  border-color: var(--shl-line);
  color: var(--shl-muted);
  padding: 11px 20px;
  font-size: .88rem;
}
.shl_btn_ghost:hover { color: var(--shl-text); border-color: rgba(229, 190, 122, .4); }

.shl_full { width: 100%; }

/* ---------------- Header ---------------- */

.shl_header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(13, 12, 16, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--shl-line-soft);
}

.shl_header_inner {
  min-height: var(--shl-head);
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
}

.shl_logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--shl-text);
  flex-shrink: 0;
}
.shl_logo:hover { color: #fff; }
.shl_logo img { width: 40px; height: 40px; filter: drop-shadow(0 6px 16px rgba(229, 190, 122, .3)); }

.shl_logo_text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}
.shl_logo_text span { color: var(--shl-gold); }

.shl_nav_list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shl_nav_link {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--shl-muted);
  font-size: .93rem;
  font-weight: 550;
  white-space: nowrap;
}
.shl_nav_link:hover { color: var(--shl-text); background: rgba(207, 201, 192, .06); }
.shl_nav_link.is-active {
  color: #241905;
  background: var(--shl-grad);
  font-weight: 650;
}

.shl_header_actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shl_wallet_header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--shl-line);
  background: rgba(26, 25, 32, .8);
  font-size: .85rem;
  font-weight: 650;
}
.shl_wallet_icon {
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--shl-gold);
  background: rgba(229, 190, 122, .12);
  border-radius: 6px;
  padding: 2px 6px;
}
.shl_wallet_balance { color: #fff; font-variant-numeric: tabular-nums; }
.shl_wallet_balance.is-bump { animation: shl-bump .5s var(--shl-ease); }

@keyframes shl-bump {
  0% { transform: scale(1); color: #fff; }
  40% { transform: scale(1.22); color: var(--shl-gold); }
  100% { transform: scale(1); color: #fff; }
}

.shl_age_badge {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 138, 138, .5);
  color: #ffb1b1;
  background: rgba(255, 138, 138, .08);
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.shl_burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--shl-line);
  background: rgba(26, 25, 32, .8);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.shl_burger_line {
  display: block;
  width: 19px; height: 2px;
  margin: 2.6px auto;
  background: var(--shl-text);
  border-radius: 2px;
  transition: transform .28s var(--shl-ease), opacity .2s var(--shl-ease);
}
.shl_burger.is-open .shl_burger_line:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.shl_burger.is-open .shl_burger_line:nth-child(2) { opacity: 0; }
.shl_burger.is-open .shl_burger_line:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* ---------------- Age strip + ticker ---------------- */

.shl_age_strip {
  background: linear-gradient(90deg, rgba(229, 190, 122, .12), rgba(217, 138, 106, .12));
  border-bottom: 1px solid var(--shl-line-soft);
  text-align: center;
}
.shl_age_strip p {
  margin: 0;
  padding: 11px 0;
  font-size: .84rem;
  color: #c9c1b6;
  letter-spacing: .02em;
}

.shl_ticker {
  overflow: hidden;
  border-top: 1px solid var(--shl-line-soft);
  border-bottom: 1px solid var(--shl-line-soft);
  background: var(--shl-bg-soft);
  padding: 13px 0;
}
.shl_ticker_wrapper { display: flex; width: max-content; animation: shl-marquee 34s linear infinite; }
.shl_ticker_content {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #bcb4a9;
}
.shl_ticker_sep { color: var(--shl-gold); }
.shl_ticker:hover .shl_ticker_wrapper { animation-play-state: paused; }

@keyframes shl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- Hero ---------------- */

.shl_hero { padding: 76px 0 62px; position: relative; }

.shl_hero_container {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 54px;
  align-items: center;
}

.shl_hero_sub {
  font-size: 1.1rem;
  color: #b7afa4;
  max-width: 52ch;
  margin-bottom: 30px;
}

.shl_hero_actions { display: flex; flex-wrap: wrap; gap: 14px; }

.shl_hero_stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--shl-line-soft);
}
.shl_hero_stat {
  background: rgba(26, 25, 32, .62);
  border: 1px solid var(--shl-line-soft);
  border-radius: var(--shl-radius);
  padding: 14px 16px;
}
.shl_hero_stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.28rem;
  color: #fff;
}
.shl_hero_stat span { font-size: .78rem; color: var(--shl-muted); letter-spacing: .04em; }

.shl_hero_frame {
  position: relative;
  border-radius: var(--shl-radius-l);
  padding: 12px;
  background: linear-gradient(160deg, rgba(207, 201, 192, .16), rgba(229, 190, 122, .06) 45%, rgba(19, 18, 23, .3));
  border: 1px solid var(--shl-line);
  box-shadow: var(--shl-shadow);
}
.shl_hero_frame img { border-radius: 20px; }
.shl_hero_tag {
  position: absolute;
  left: 26px;
  bottom: -16px;
  background: var(--shl-panel);
  border: 1px solid rgba(229, 190, 122, .35);
  color: var(--shl-gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: var(--shl-shadow-soft);
}

/* ---------------- Sections ---------------- */

.shl_section { padding: 74px 0; position: relative; }
.shl_section_alt { background: linear-gradient(180deg, rgba(19, 18, 23, 0), rgba(19, 18, 23, .85) 22%, rgba(19, 18, 23, .85) 78%, rgba(19, 18, 23, 0)); }

.shl_section_header { max-width: 720px; margin-bottom: 42px; }
.shl_section_header.shl_center { margin-left: auto; margin-right: auto; }
.shl_section_header p { color: var(--shl-muted); font-size: 1.03rem; margin-bottom: 0; }

/* ---------------- Cards ---------------- */

.shl_grid_two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.shl_grid_three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shl_grid_four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.shl_card {
  position: relative;
  background: linear-gradient(165deg, rgba(35, 33, 41, .95), rgba(19, 18, 23, .95));
  border: 1px solid var(--shl-line-soft);
  border-radius: var(--shl-radius-l);
  padding: 28px 26px;
  overflow: hidden;
  transition: transform .3s var(--shl-ease), border-color .3s var(--shl-ease), box-shadow .3s var(--shl-ease);
}
.shl_card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--shl-grad-soft);
  opacity: 0;
  transition: opacity .3s var(--shl-ease);
  pointer-events: none;
}
.shl_card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 190, 122, .38);
  box-shadow: var(--shl-glow);
}
.shl_card:hover::after { opacity: 1; }
.shl_card > * { position: relative; z-index: 1; }
.shl_card p { color: var(--shl-muted); margin-bottom: 0; }

.shl_card_icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(229, 190, 122, .1);
  border: 1px solid rgba(229, 190, 122, .3);
}
.shl_card_icon svg { width: 26px; height: 26px; }

.shl_card_num {
  font-family: 'Sora', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  background: var(--shl-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

/* ---------------- Game module ---------------- */

.shl_game_module {
  display: grid;
  grid-template-columns: 1.25fr .78fr;
  gap: 26px;
  background: linear-gradient(165deg, rgba(35, 33, 41, .92), rgba(17, 16, 21, .96));
  border: 1px solid var(--shl-line);
  border-radius: var(--shl-radius-l);
  padding: 26px;
  box-shadow: var(--shl-shadow);
}

.shl_game_board {
  position: relative;
  border-radius: var(--shl-radius);
  background: radial-gradient(120% 90% at 50% 0%, rgba(229, 190, 122, .1), transparent 60%), #17161c;
  border: 1px solid var(--shl-line-soft);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shl_canvas_wrap { position: relative; width: 100%; }
.shl_game_canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--shl-radius-s);
  background: linear-gradient(180deg, #1c1b22, #121116);
  touch-action: manipulation;
  cursor: crosshair;
}

.shl_bins {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 5px;
}
.shl_bin {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  padding: 7px 2px;
  border-radius: 9px;
  border: 1px solid var(--shl-line-soft);
  background: rgba(26, 25, 32, .8);
  color: var(--shl-muted);
  font-variant-numeric: tabular-nums;
  transition: transform .2s var(--shl-ease), background .2s var(--shl-ease), color .2s var(--shl-ease), border-color .2s;
}
.shl_bin[data-tier="high"] { color: var(--shl-gold); border-color: rgba(229, 190, 122, .35); }
.shl_bin[data-tier="mid"] { color: var(--shl-copper); border-color: rgba(217, 138, 106, .3); }
.shl_bin.is-hit {
  transform: translateY(-6px) scale(1.06);
  background: var(--shl-grad);
  color: #241905;
  border-color: transparent;
}

.shl_game_controls { display: flex; flex-direction: column; gap: 16px; }

.shl_control_block {
  background: rgba(23, 22, 28, .8);
  border: 1px solid var(--shl-line-soft);
  border-radius: var(--shl-radius);
  padding: 16px 18px;
}
.shl_control_label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--shl-muted);
  display: block;
  margin-bottom: 10px;
}

.shl_wallet_big {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.shl_wallet_big small { font-size: .82rem; color: var(--shl-gold); margin-left: 6px; letter-spacing: .1em; }

.shl_chip_row { display: flex; gap: 8px; flex-wrap: wrap; }
.shl_chip {
  flex: 1 1 60px;
  padding: 10px 6px;
  border-radius: 12px;
  border: 1px solid var(--shl-line);
  background: rgba(35, 33, 41, .8);
  color: var(--shl-muted);
  font-weight: 650;
  font-size: .86rem;
  cursor: pointer;
  transition: all .2s var(--shl-ease);
}
.shl_chip:hover { color: var(--shl-text); border-color: rgba(229, 190, 122, .45); }
.shl_chip.is-active {
  background: var(--shl-grad);
  border-color: transparent;
  color: #241905;
}

.shl_risk_row { display: flex; gap: 8px; }

.shl_game_status {
  min-height: 46px;
  border-radius: 12px;
  border: 1px dashed var(--shl-line);
  background: rgba(26, 25, 32, .5);
  padding: 11px 14px;
  font-size: .88rem;
  color: var(--shl-muted);
  display: flex;
  align-items: center;
}
.shl_game_status.is-good { color: var(--shl-gold); border-color: rgba(229, 190, 122, .4); }
.shl_game_status.is-flat { color: var(--shl-steel); border-color: rgba(195, 204, 217, .35); }

.shl_log { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; max-height: 168px; overflow-y: auto; }
.shl_log li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .82rem;
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(35, 33, 41, .7);
  border: 1px solid var(--shl-line-soft);
  color: var(--shl-muted);
}
.shl_log li b { color: var(--shl-text); font-variant-numeric: tabular-nums; }
.shl_log li.is-good b { color: var(--shl-gold); }

.shl_stat_row { display: flex; gap: 10px; }
.shl_stat_pill {
  flex: 1;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--shl-line-soft);
  background: rgba(35, 33, 41, .6);
  padding: 9px 6px;
}
.shl_stat_pill strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.05rem; color: #fff; }
.shl_stat_pill span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--shl-muted); }

/* Reels */

.shl_reels_module {
  background: linear-gradient(165deg, rgba(35, 33, 41, .92), rgba(17, 16, 21, .96));
  border: 1px solid var(--shl-line);
  border-radius: var(--shl-radius-l);
  padding: 26px;
  box-shadow: var(--shl-shadow);
  display: grid;
  grid-template-columns: 1fr .68fr;
  gap: 24px;
  align-items: center;
}

.shl_reels_window {
  display: grid;
  align-self: stretch;
  align-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: #17161c;
  border: 1px solid var(--shl-line-soft);
  border-radius: var(--shl-radius);
  padding: 16px;
}
.shl_reel {
  height: 132px;
  border-radius: 14px;
  background: linear-gradient(180deg, #232128, #1b1a21);
  border: 1px solid var(--shl-line);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  overflow: hidden;
  position: relative;
}
.shl_reel_inner { transition: transform .1s linear; will-change: transform; display: grid; place-items: center; }
.shl_reel.is-spinning .shl_reel_inner { animation: shl-reel-blur .16s linear infinite; }
.shl_reel.is-hit { border-color: rgba(229, 190, 122, .6); box-shadow: inset 0 0 26px rgba(229, 190, 122, .22); }

@keyframes shl-reel-blur {
  0% { transform: translateY(-12px); opacity: .35; }
  50% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: .35; }
}

.shl_reel_glyph { width: 58px; height: 58px; }

/* ---------------- Timeline ---------------- */

.shl_timeline { position: relative; display: grid; gap: 18px; }
.shl_timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(229, 190, 122, .7), rgba(217, 138, 106, .35), transparent);
}
.shl_timeline_item {
  position: relative;
  padding: 20px 24px 20px 56px;
  border-radius: var(--shl-radius);
  border: 1px solid var(--shl-line-soft);
  background: rgba(26, 25, 32, .62);
  transition: transform .28s var(--shl-ease), border-color .28s var(--shl-ease);
}
.shl_timeline_item:hover { transform: translateX(6px); border-color: rgba(229, 190, 122, .35); }
.shl_timeline_item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 27px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--shl-bg);
  border: 3px solid var(--shl-gold);
  box-shadow: 0 0 14px rgba(229, 190, 122, .55);
}
.shl_timeline_item h3 { margin-bottom: .35em; }
.shl_timeline_item p { color: var(--shl-muted); margin: 0; font-size: .95rem; }
.shl_timeline_stamp {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--shl-copper);
  display: block;
  margin-bottom: 6px;
}

/* ---------------- Testimonials ---------------- */

.shl_testimonial {
  background: linear-gradient(165deg, rgba(35, 33, 41, .95), rgba(19, 18, 23, .95));
  border: 1px solid var(--shl-line-soft);
  border-left: 3px solid var(--shl-gold);
  border-radius: var(--shl-radius);
  padding: 26px 28px;
  transition: transform .28s var(--shl-ease), box-shadow .28s var(--shl-ease);
}
.shl_testimonial:hover { transform: translateY(-5px); box-shadow: var(--shl-shadow-soft); }
.shl_quote { font-size: 1.02rem; color: #e4ddd2; font-style: italic; }
.shl_author { font-size: .84rem; color: var(--shl-muted); margin: 14px 0 0; letter-spacing: .04em; }

/* ---------------- Comparison table ---------------- */

.shl_table {
  border: 1px solid var(--shl-line-soft);
  border-radius: var(--shl-radius-l);
  overflow: hidden;
}
.shl_table_row {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  border-bottom: 1px solid var(--shl-line-soft);
}
.shl_table_row:last-child { border-bottom: 0; }
.shl_table_row > div { padding: 18px 22px; font-size: .95rem; color: var(--shl-muted); }
.shl_table_row > div:first-child { border-right: 1px solid var(--shl-line-soft); color: #d3cbbf; }
.shl_table_row:nth-child(odd) { background: rgba(26, 25, 32, .5); }
.shl_table_header {
  background: var(--shl-grad-soft) !important;
}
.shl_table_header > div {
  font-family: 'Sora', sans-serif;
  font-weight: 650;
  color: #fff !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
}

/* ---------------- Accordion ---------------- */

.shl_accordion { display: grid; gap: 12px; }
.shl_accordion_item {
  border: 1px solid var(--shl-line-soft);
  border-radius: var(--shl-radius);
  background: rgba(26, 25, 32, .62);
  overflow: hidden;
  transition: border-color .25s var(--shl-ease);
}
.shl_accordion_item.is-open { border-color: rgba(229, 190, 122, .4); }
.shl_accordion_trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 19px 22px;
  background: none;
  border: 0;
  color: #efeae1;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 550;
  cursor: pointer;
}
.shl_accordion_trigger::after {
  content: '';
  width: 11px; height: 11px;
  border-right: 2px solid var(--shl-gold);
  border-bottom: 2px solid var(--shl-gold);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .3s var(--shl-ease);
  flex-shrink: 0;
}
.shl_accordion_item.is-open .shl_accordion_trigger::after { transform: rotate(225deg) translateY(-3px); }
.shl_accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s var(--shl-ease);
}
.shl_accordion_content p { padding: 0 22px 20px; color: var(--shl-muted); font-size: .95rem; margin: 0; }

/* ---------------- Game cards (catalogue) ---------------- */

.shl_game_card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(35, 33, 41, .95), rgba(23, 22, 28, .96));
  border: 1px solid var(--shl-line-soft);
  border-radius: var(--shl-radius-l);
  overflow: hidden;
  transition: transform .3s var(--shl-ease), border-color .3s var(--shl-ease), box-shadow .3s var(--shl-ease);
}
.shl_game_card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 190, 122, .4);
  box-shadow: var(--shl-glow);
}
.shl_game_thumb { position: relative; overflow: hidden; }
.shl_game_thumb img { width: 100%; transition: transform .5s var(--shl-ease); }
.shl_game_card:hover .shl_game_thumb img { transform: scale(1.05); }
.shl_game_badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(13, 12, 16, .82);
  border: 1px solid rgba(229, 190, 122, .4);
  color: var(--shl-gold);
  backdrop-filter: blur(6px);
}
.shl_game_body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.shl_game_body p { color: var(--shl-muted); font-size: .93rem; margin: 0; }
.shl_game_meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 6px; }
.shl_tag {
  font-size: .72rem;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--shl-line);
  color: var(--shl-muted);
  background: rgba(26, 25, 32, .7);
}

/* ---------------- Prose (legal pages) ---------------- */

.shl_page_head {
  padding: 62px 0 34px;
  border-bottom: 1px solid var(--shl-line-soft);
  background: radial-gradient(760px 300px at 20% 0%, rgba(229, 190, 122, .1), transparent 70%);
}
.shl_breadcrumb { font-size: .82rem; color: var(--shl-muted); margin-bottom: 14px; }
.shl_breadcrumb a { color: var(--shl-muted); }
.shl_breadcrumb a:hover { color: var(--shl-gold); }
.shl_page_head p { color: var(--shl-muted); max-width: 66ch; margin-bottom: 0; }

.shl_prose_layout { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }

.shl_toc {
  position: sticky;
  top: calc(var(--shl-head) + 20px);
  background: rgba(26, 25, 32, .7);
  border: 1px solid var(--shl-line-soft);
  border-radius: var(--shl-radius);
  padding: 20px;
}
.shl_toc h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--shl-muted); margin-bottom: 14px; }
.shl_toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.shl_toc a { color: #b7afa4; font-size: .88rem; display: block; padding: 6px 10px; border-radius: 9px; }
.shl_toc a:hover { background: rgba(229, 190, 122, .1); color: var(--shl-gold); }

.shl_prose { max-width: 78ch; }
.shl_prose h2 { margin-top: 44px; padding-top: 8px; }
.shl_prose h2:first-child { margin-top: 0; }
.shl_prose h3 { margin-top: 28px; }
.shl_prose p, .shl_prose li { color: #b7afa4; }
.shl_prose ul, .shl_prose ol { padding-left: 22px; margin: 0 0 1.1em; display: grid; gap: 8px; }
.shl_prose li::marker { color: var(--shl-gold); }
.shl_prose strong { color: #f3efe8; }

.shl_note {
  border-radius: var(--shl-radius);
  border: 1px solid rgba(229, 190, 122, .3);
  background: rgba(229, 190, 122, .07);
  padding: 20px 24px;
  margin: 26px 0;
}
.shl_note p { color: #f0e2c4; margin: 0; }
.shl_note_warn { border-color: rgba(255, 138, 138, .35); background: rgba(255, 138, 138, .07); }
.shl_note_warn p { color: #ffd4d4; }

.shl_meta_line { font-size: .84rem; color: var(--shl-muted); letter-spacing: .04em; }

/* ---------------- Forms ---------------- */

.shl_form { display: grid; gap: 16px; }
.shl_form_group { display: grid; gap: 8px; }
.shl_form_group label { font-size: .82rem; color: #c9c1b6; letter-spacing: .04em; }
.shl_form input,
.shl_form select,
.shl_form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--shl-line);
  background: rgba(23, 22, 28, .85);
  color: var(--shl-text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s var(--shl-ease), box-shadow .2s var(--shl-ease);
}
.shl_form textarea { min-height: 150px; resize: vertical; }
.shl_form input:focus,
.shl_form select:focus,
.shl_form textarea:focus {
  outline: none;
  border-color: rgba(229, 190, 122, .55);
  box-shadow: 0 0 0 3px rgba(229, 190, 122, .13);
}
.shl_form_row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.shl_check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--shl-muted);
}
.shl_check input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: #e5be7a; }

.shl_contact_grid { display: grid; grid-template-columns: 1fr .82fr; gap: 34px; align-items: start; }

.shl_info_list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.shl_info_list li {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-radius: var(--shl-radius);
  border: 1px solid var(--shl-line-soft);
  background: rgba(26, 25, 32, .62);
}
.shl_info_list span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--shl-muted); }
.shl_info_list strong { color: #f3efe8; font-weight: 600; font-size: .96rem; }

/* ---------------- Legal drawer trigger ---------------- */

.shl_drawer_trigger { text-align: center; padding: 12px 0 76px; }
.shl_btn_drawer {
  background: rgba(26, 25, 32, .8);
  border: 1px dashed var(--shl-line);
  color: var(--shl-muted);
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-size: .88rem;
  transition: all .25s var(--shl-ease);
}
.shl_btn_drawer:hover { color: var(--shl-gold); border-color: rgba(229, 190, 122, .45); }

/* ---------------- Footer ---------------- */

.shl_footer {
  background: linear-gradient(180deg, rgba(16, 15, 20, .6), rgba(13, 12, 16, 1));
  border-top: 1px solid var(--shl-line-soft);
  padding: 64px 0 34px;
  position: relative;
  z-index: 1;
}
.shl_footer_container {
  display: grid;
  grid-template-columns: 1.15fr .8fr 1.25fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--shl-line-soft);
}
.shl_footer h3 { font-size: 1rem; margin-bottom: 16px; }
.shl_footer p { color: var(--shl-muted); font-size: .9rem; }
.shl_footer_identity address { font-style: normal; color: var(--shl-muted); font-size: .9rem; line-height: 1.8; }
.shl_footer_links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.shl_footer_links a { color: var(--shl-muted); font-size: .92rem; }
.shl_footer_links a:hover { color: var(--shl-gold); padding-left: 4px; }
.shl_footer_links a { transition: color .2s var(--shl-ease), padding-left .2s var(--shl-ease); }

.shl_rg_tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 138, .4);
  color: #ffb1b1;
  font-size: .78rem;
  font-weight: 650;
  margin-bottom: 14px;
}

.shl_footer_bottom { padding-top: 30px; display: grid; gap: 26px; }
.shl_footer_partners {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.shl_partner_logo {
  display: block;
  opacity: .7;
  filter: grayscale(.35);
  transition: opacity .25s var(--shl-ease), transform .25s var(--shl-ease), filter .25s var(--shl-ease);
}
.shl_partner_logo:hover { opacity: 1; transform: translateY(-3px); filter: none; }
.shl_partner_logo img { width: 190px; height: auto; }

.shl_footer_disclaimer p {
  font-size: .8rem;
  color: #8a8390;
  text-align: center;
  max-width: 92ch;
  margin: 0 auto .8em;
  line-height: 1.7;
}

/* ---------------- Overlays: drawer, modal, age gate, cookies ---------------- */

.shl_overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 9, 12, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--shl-ease), visibility .3s var(--shl-ease);
}
.shl_overlay.is-open { opacity: 1; visibility: visible; }

.shl_modal {
  position: relative;
  width: min(520px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: linear-gradient(165deg, #232128, #17161c);
  border: 1px solid var(--shl-line);
  border-radius: var(--shl-radius-l);
  padding: 34px 32px;
  box-shadow: var(--shl-shadow);
  transform: translateY(22px) scale(.97);
  transition: transform .35s var(--shl-ease);
}
.shl_overlay.is-open .shl_modal { transform: translateY(0) scale(1); }
.shl_modal_wide { width: min(640px, 100%); }

.shl_modal_close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--shl-line);
  background: rgba(23, 22, 28, .8);
  color: var(--shl-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: all .2s var(--shl-ease);
}
.shl_modal_close:hover { color: #fff; border-color: rgba(229, 190, 122, .5); }

.shl_modal_header { margin-bottom: 22px; }
.shl_modal_header p { color: var(--shl-muted); font-size: .92rem; margin: 0; }

.shl_modal_mark {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(229, 190, 122, .1);
  border: 1px solid rgba(229, 190, 122, .3);
}
.shl_modal_mark img { width: 38px; height: 38px; }

.shl_age_actions { display: grid; gap: 12px; margin-top: 24px; }
.shl_age_small { font-size: .78rem; color: #8a8390; text-align: center; margin-top: 16px; }

/* legal drawer slides from bottom */
.shl_drawer {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 115;
  transform: translateY(100%);
  transition: transform .42s var(--shl-ease);
  background: linear-gradient(180deg, #1c1b23, #100f14);
  border-top: 1px solid rgba(229, 190, 122, .3);
  box-shadow: 0 -22px 60px rgba(8, 6, 4, .6);
  max-height: 78vh;
  overflow-y: auto;
}
.shl_drawer.is-open { transform: translateY(0); }
.shl_drawer_content { max-width: 900px; margin: 0 auto; padding: 40px 26px 46px; position: relative; }
.shl_drawer_content p { color: var(--shl-muted); font-size: .94rem; }
.shl_drawer_close {
  position: absolute;
  top: 16px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--shl-line);
  background: rgba(23, 22, 28, .8);
  color: var(--shl-muted);
  cursor: pointer;
  font-size: 1.15rem;
}
.shl_drawer_close:hover { color: #fff; }

/* cookie banner */
.shl_cookie {
  position: fixed;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 110;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
  border-radius: var(--shl-radius-l);
  background: rgba(22, 21, 27, .96);
  border: 1px solid var(--shl-line);
  box-shadow: var(--shl-shadow);
  backdrop-filter: blur(14px);
  transform: translateY(150%);
  transition: transform .5s var(--shl-ease);
}
.shl_cookie.is-open { transform: translateY(0); }
.shl_cookie_text { flex: 1; }
.shl_cookie_text strong { display: block; font-family: 'Sora', sans-serif; margin-bottom: 5px; color: #fff; }
.shl_cookie_text p { margin: 0; font-size: .87rem; color: var(--shl-muted); }
.shl_cookie_actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* toasts */
.shl_toast_container {
  position: fixed;
  top: calc(var(--shl-head) + 16px);
  right: 22px;
  z-index: 130;
  display: grid;
  gap: 10px;
  width: min(330px, calc(100vw - 44px));
}
.shl_toast {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(26, 25, 32, .96);
  border: 1px solid var(--shl-line);
  border-left: 3px solid var(--shl-gold);
  box-shadow: var(--shl-shadow-soft);
  font-size: .89rem;
  color: #e4ddd2;
  animation: shl-toast-in .35s var(--shl-ease);
}
.shl_toast.is-out { animation: shl-toast-out .35s var(--shl-ease) forwards; }
.shl_toast_warn { border-left-color: var(--shl-steel); }

@keyframes shl-toast-in {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes shl-toast-out {
  to { opacity: 0; transform: translateX(28px); }
}

/* ---------------- Reveal ---------------- */

.shl_reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--shl-ease), transform .7s var(--shl-ease);
}
.shl_reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .shl_reveal { opacity: 1; transform: none; }
}

/* ---------------- CTA band ---------------- */

.shl_cta_band {
  border-radius: var(--shl-radius-l);
  border: 1px solid rgba(229, 190, 122, .28);
  background:
    radial-gradient(600px 240px at 15% 0%, rgba(229, 190, 122, .16), transparent 70%),
    radial-gradient(600px 240px at 85% 100%, rgba(217, 138, 106, .16), transparent 70%),
    linear-gradient(165deg, rgba(35, 33, 41, .95), rgba(17, 16, 21, .95));
  padding: 48px 44px;
  text-align: center;
}
.shl_cta_band p { color: var(--shl-muted); max-width: 62ch; margin: 0 auto 26px; }
.shl_cta_center { text-align: center; margin-top: 34px; }

/* ---------------- Responsive ---------------- */

@media (max-width: 1080px) {
  .shl_game_module { grid-template-columns: 1fr; }
  .shl_prose_layout { grid-template-columns: 1fr; }
  .shl_toc { position: static; }
  .shl_grid_four { grid-template-columns: repeat(2, 1fr); }
  .shl_reels_module { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .shl_nav {
    position: fixed;
    inset: var(--shl-head) 0 auto 0;
    background: rgba(13, 12, 16, .98);
    border-bottom: 1px solid var(--shl-line);
    padding: 18px 24px 26px;
    transform: translateY(-140%);
    transition: transform .38s var(--shl-ease);
    z-index: 80;
  }
  .shl_nav.is-open { transform: translateY(0); }
  .shl_nav_list { flex-direction: column; align-items: stretch; gap: 6px; }
  .shl_nav_link { padding: 13px 16px; border-radius: 14px; text-align: left; }
  .shl_burger { display: grid; }
  .shl_wallet_header { display: none; }
  .shl_btn_auth { display: none; }

  .shl_hero_container { grid-template-columns: 1fr; gap: 40px; }
  .shl_hero { padding: 48px 0 44px; }
  .shl_grid_three, .shl_grid_two { grid-template-columns: 1fr; }
  .shl_contact_grid { grid-template-columns: 1fr; }
  .shl_footer_container { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .shl_section { padding: 54px 0; }
  .shl_container { padding: 0 18px; }
  .shl_grid_four { grid-template-columns: 1fr; }
  .shl_table_row { grid-template-columns: 1fr; }
  .shl_table_row > div:first-child { border-right: 0; border-bottom: 1px solid var(--shl-line-soft); }
  .shl_table_header { display: none; }
  .shl_form_row { grid-template-columns: 1fr; }
  .shl_cookie { flex-direction: column; align-items: stretch; left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .shl_cookie_actions .shl_btn { flex: 1; }
  .shl_cta_band { padding: 34px 22px; }
  .shl_bins { grid-template-columns: repeat(9, 1fr); gap: 3px; }
  .shl_bin { font-size: .58rem; padding: 6px 1px; }
  .shl_reel { height: 96px; }
  .shl_reel_glyph { width: 42px; height: 42px; }
  .shl_modal { padding: 28px 22px; }
  .shl_hero_stats { grid-template-columns: 1fr 1fr; }
}
