/* ==========================================================================
   Slotmilyon Landing Page — slotmilyon-landing.css
   Black/Gold themed Turkish casino landing page
   All classes prefixed with: sml-
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   WordPress Template Body Overrides
   -------------------------------------------------------------------------- */
body.page-template-page-slotmilyon-landing,
body {
  background: #0a0a0a !important;
  margin: 0;
}

body.page-template-page-slotmilyon-landing #content,
body.page-template-page-slotmilyon-landing .site-content,
body.page-template-page-slotmilyon-landing main {
  background: #0a0a0a;
  max-width: 100%;
  padding: 0;
}

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --sml-black:   #0a0a0a;
  --sml-dark:    #111111;
  --sml-card:    #181818;
  --sml-gold:    #ffc200;
  --sml-orange:  #ff6b00;
  --sml-border:  rgba(255, 194, 0, 0.18);
  --sml-text:    #ffffff;
  --sml-muted:   rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.sml-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
}

.sml-section {
  padding: 80px 0;
}

.sml-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sml-gold);
  opacity: 0.7;
}

.sml-section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 8px 0 0;
  line-height: 1.15;
}

.sml-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.sml-view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--sml-gold);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.15s;
}
.sml-view-all:hover { opacity: 0.75; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.sml-btn-gold {
  display: inline-block;
  background: var(--sml-gold);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.sml-btn-gold:hover {
  background: #ffcf20;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 194, 0, 0.45);
}

.sml-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--sml-gold);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--sml-border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.sml-btn-outline:hover {
  border-color: var(--sml-gold);
  color: var(--sml-gold);
}

.sml-btn-full { width: 100%; text-align: center; }

/* --------------------------------------------------------------------------
   TOPBAR / NAVIGATION
   -------------------------------------------------------------------------- */
.sml-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sml-border);
  transition: box-shadow 0.3s;
}
.sml-topbar--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.sml-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: none;
  padding: 0 5vw;
}

.sml-topbar__logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.sml-topbar__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.sml-logo-slot {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.sml-logo-milyon {
  color: var(--sml-gold);
  font-weight: 900;
  text-transform: uppercase;
}

.sml-topbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.sml-topbar__nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.sml-topbar__nav a:hover { color: var(--sml-gold); }

.sml-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sml-topbar__login {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.sml-topbar__login:hover { color: #fff; }

.sml-topbar__register {
  background: var(--sml-gold);
  color: #000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.sml-topbar__register:hover {
  background: #ffcf20;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.sml-hero {
  position: relative;
  background: var(--sml-dark);
  border-bottom: 1px solid var(--sml-border);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}

.sml-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.sml-hero__inner {
  display: flex;
  align-items: stretch;
  min-height: 580px;
  max-width: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  justify-content: center;
}

/* LEFT: Text content — now full width, centered */
.sml-hero__left {
  padding: 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 780px;
  width: 100%;
}

/* Inner 2-col layout: text | bonus card */
.sml-hero__mid-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
  width: 100%;
  margin-bottom: 24px;
}

.sml-hero__text-side {
  display: flex;
  flex-direction: column;
}

/* Bonus breakdown card inside hero left */
.sml-hero__bonus-panel {
  background: rgba(255, 194, 0, 0.04);
  border: 1px solid rgba(255, 194, 0, 0.18);
  border-radius: 14px;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.sml-hero__bonus-panel-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sml-gold);
  margin-bottom: 12px;
}

.sml-hero__bonus-tiers {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.sml-hero__bonus-tier {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.sml-hero__bonus-tier--hot {
  background: rgba(255, 194, 0, 0.08);
  border: 1px solid rgba(255, 194, 0, 0.2);
}

.sml-hbt-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sml-hbt-pct {
  font-size: 20px;
  font-weight: 900;
  color: var(--sml-gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.sml-hbt-pct small {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
}

.sml-hbt-max {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.sml-hero__bonus-total {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin: 12px 0 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sml-hero__bonus-total strong {
  color: #ffc200;
  font-weight: 900;
  font-size: 14px;
}

.sml-hero__bonus-panel-cta {
  display: block;
  text-align: center;
  background: var(--sml-gold);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.sml-hero__bonus-panel-cta:hover {
  background: #ffcf20;
  transform: translateY(-1px);
}

.sml-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 194, 0, 0.1);
  border: 1px solid rgba(255, 194, 0, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sml-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  width: fit-content;
}

.sml-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--sml-gold);
  border-radius: 50%;
  animation: sml-pulse 1.8s ease-in-out infinite;
}

@keyframes sml-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.sml-hero__left h1 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 0.6;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.sml-hero__left h1 .sml-gold-text {
  color: var(--sml-gold);
  display: block;
  padding-bottom: 4px;
}

.sml-hero__subtitle {
  font-size: 16px;
  color: var(--sml-muted);
  margin: 0 0 28px;
  max-width: 560px;
  line-height: 1.7;
}

.sml-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sml-hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.sml-bullet-check {
  color: var(--sml-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.sml-hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.sml-hero__trust-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.sml-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sml-hero__cta-main {
  background: var(--sml-gold);
  color: #000;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}
.sml-hero__cta-main:hover {
  background: #ffcf20;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 194, 0, 0.5);
}

.sml-hero__cta-secondary {
  font-size: 14px;
  font-weight: 600;
  color: var(--sml-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.sml-hero__cta-secondary:hover { color: var(--sml-gold); }

/* Live activity bar */
.sml-hero__live-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.sml-hero__live-bar strong { color: #fff; font-weight: 700; }
.sml-hero__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: sml-live-pulse 1.8s ease-in-out infinite;
}
@keyframes sml-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.sml-hero__live-sep { color: rgba(255,255,255,0.2); }

/* ============================================================
   HERO BOTTOM GAMES STRIP
   ============================================================ */
.sml-hero__games-strip {
  border-top: 1px solid rgba(255, 194, 0, 0.12);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: stretch;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
}

/* 3 pinned popular games */
.sml-hgs__pinned-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sml-gold);
  text-align: center;
  line-height: 1.5;
  background: rgba(255, 194, 0, 0.05);
  border-right: 1px solid rgba(255, 194, 0, 0.15);
  flex-shrink: 0;
}

.sml-hgs__pinned {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 194, 0, 0.15);
}

.sml-hgs__pin {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  min-width: 190px;
}
.sml-hgs__pin:last-child { border-right: none; }
.sml-hgs__pin:hover { background: rgba(255, 194, 0, 0.07); }

.sml-hgs__pin-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sml-hgs__pin-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.sml-hgs__pin-medal { font-size: 11px; line-height: 1; }

.sml-hgs__pin-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sml-hgs__pin-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

.sml-hgs__pin-btn {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  background: var(--sml-gold);
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Horizontally scrolling games */
.sml-hgs__scroll-area {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.sml-hgs__scroll-area::before,
.sml-hgs__scroll-area::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 1;
}
.sml-hgs__scroll-area::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.35), transparent);
}
.sml-hgs__scroll-area::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.35), transparent);
}

.sml-hgs__scroll-track {
  display: flex;
  align-items: center;
  animation: sml-hgs-scroll 28s linear infinite;
  white-space: nowrap;
}
.sml-hgs__scroll-track:hover { animation-play-state: paused; }

@keyframes sml-hgs-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sml-hgs__game {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  transition: background 0.15s;
  height: 72px;
}
.sml-hgs__game:hover { background: rgba(255, 194, 0, 0.06); }

.sml-hgs__game-thumb {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sml-hgs__game-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

/* ============================================================
   SIDEBAR ACTIVE BAR + LIVE WINS FEED
   ============================================================ */
.sml-sidebar__active-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.05);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.sml-sidebar__active-bar strong { color: #fff; font-weight: 700; }
.sml-sidebar__active-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: sml-live-pulse 1.8s ease-in-out infinite;
}

.sml-sidebar__wins-feed {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sml-sidebar__wins-feed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to top, #0a0a0a, transparent);
  pointer-events: none;
}

.sml-win-row--new {
  animation: sml-win-slide-in 0.4s ease;
}
@keyframes sml-win-slide-in {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Winners ticker — full width strip at bottom of hero */
.sml-hero__winners {
  border-top: 1px solid rgba(255,194,0,0.15);
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 42px;
  flex-shrink: 0;
}
.sml-hero__winners-label {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffc200;
  padding: 0 16px;
  height: 100%;
  border-right: 1px solid rgba(255,194,0,0.2);
  background: rgba(255,194,0,0.06);
  flex-shrink: 0;
}
.sml-hero__winners-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.sml-hero__winners-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: sml-scroll-left 28s linear infinite;
}
@keyframes sml-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sml-winner-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.sml-winner-item em  { color: rgba(255,255,255,0.85); font-style: normal; }
.sml-winner-item strong { color: #ffc200; font-weight: 700; }

/* Live wins feed rows */
.sml-win-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.sml-win-row:hover { background: rgba(255,194,0,0.04); }
.sml-win-row__thumb {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.sml-win-row__info { flex: 1; min-width: 0; }
.sml-win-row__game {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sml-win-row__time {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 1px;
}
.sml-win-row__amount {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
}
.sml-win-row__amount--big {
  color: #ffc200;
  font-size: 13px;
}

/* RIGHT: Games Sidebar */
.sml-games-sidebar {
  background: #0a0a0a;
  border-left: 1px solid var(--sml-border);
  border-top: 3px solid var(--sml-gold);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sml-games-sidebar__title {
  padding: 18px 20px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sml-gold);
  border-bottom: 1px solid var(--sml-border);
  background: rgba(255, 194, 0, 0.04);
}

.sml-game-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  flex: 1;
}
.sml-game-row:hover {
  background: rgba(255, 194, 0, 0.06);
}
.sml-game-row:last-child { border-bottom: none; }

.sml-game-row__thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sml-game-row__info {
  flex: 1;
  min-width: 0;
}
.sml-game-row__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.sml-game-row__provider {
  font-size: 11px;
  color: var(--sml-muted);
  margin-top: 2px;
}
.sml-game-row__rtp {
  font-size: 10px;
  font-weight: 800;
  background: rgba(255, 194, 0, 0.12);
  color: var(--sml-gold);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
}

.sml-game-row__play {
  background: var(--sml-gold);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 5px;
  flex-shrink: 0;
  margin-left: 4px;
  transition: background 0.15s;
}
.sml-game-row:hover .sml-game-row__play {
  background: #ffcf20;
}

/* --------------------------------------------------------------------------
   BONUS STRIP
   -------------------------------------------------------------------------- */
.sml-bonus-section {
  background: var(--sml-dark);
  padding: 72px 0 80px;
  border-top: 1px solid var(--sml-border);
  border-bottom: 1px solid var(--sml-border);
  position: relative;
  overflow: hidden;
}
.sml-bonus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,194,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.sml-bonus-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px auto 0;
  align-items: end;
}

/* ── Base tile ── */
.sml-bonus-tile {
  background: #141414;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.sml-bonus-tile:hover {
  transform: translateY(-6px);
}

/* ── Coloured header panel ── */
.sml-bonus-tile__head {
  padding: 28px 28px 22px;
  position: relative;
}
.sml-bonus-tile--1 .sml-bonus-tile__head {
  background: linear-gradient(160deg, rgba(255,107,0,0.2) 0%, rgba(255,107,0,0.05) 100%);
  border-bottom: 1px solid rgba(255,107,0,0.2);
}
.sml-bonus-tile--2 .sml-bonus-tile__head {
  background: linear-gradient(160deg, rgba(255,194,0,0.22) 0%, rgba(255,194,0,0.05) 100%);
  border-bottom: 1px solid rgba(255,194,0,0.26);
}
.sml-bonus-tile--3 .sml-bonus-tile__head {
  background: linear-gradient(160deg, rgba(16,185,129,0.18) 0%, rgba(16,185,129,0.04) 100%);
  border-bottom: 1px solid rgba(16,185,129,0.2);
}

/* ── Deposit label ── */
.sml-bonus-tile__label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.sml-bonus-tile--1 .sml-bonus-tile__label { color: #ff9a00; }
.sml-bonus-tile--2 .sml-bonus-tile__label { color: #ffc200; }
.sml-bonus-tile--3 .sml-bonus-tile__label { color: #34d399; }

/* ── Percentage number ── */
.sml-bonus-tile__pct {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.sml-bonus-tile--1 .sml-bonus-tile__pct {
  color: #ff7a1a;
  text-shadow: 0 0 40px rgba(255,107,0,0.5);
}
.sml-bonus-tile--2 .sml-bonus-tile__pct {
  color: #ffc200;
  text-shadow: 0 0 40px rgba(255,194,0,0.55);
}
.sml-bonus-tile--3 .sml-bonus-tile__pct {
  color: #10b981;
  text-shadow: 0 0 40px rgba(16,185,129,0.5);
}

/* ── Amount sub-label ── */
.sml-bonus-tile__amount {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* ── Body section ── */
.sml-bonus-tile__body {
  padding: 22px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Feature list ── */
.sml-bonus-tile__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sml-bonus-tile__features li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  display: flex;
  align-items: center;
  gap: 9px;
}
.sml-bonus-tile__features li::before {
  content: '✓';
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sml-bonus-tile--1 .sml-bonus-tile__features li::before {
  color: #ff7a1a;
  background: rgba(255,107,0,0.14);
}
.sml-bonus-tile--2 .sml-bonus-tile__features li::before {
  color: #ffc200;
  background: rgba(255,194,0,0.14);
}
.sml-bonus-tile--3 .sml-bonus-tile__features li::before {
  color: #10b981;
  background: rgba(16,185,129,0.14);
}

/* ── CTA button ── */
.sml-bonus-tile__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  margin-top: auto;
}
.sml-bonus-tile--1 .sml-bonus-tile__cta {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}
.sml-bonus-tile--2 .sml-bonus-tile__cta {
  background: linear-gradient(135deg, #e6a800 0%, #ffc200 50%, #ffda44 100%);
  color: #000;
  box-shadow: 0 4px 24px rgba(255,194,0,0.5);
}
.sml-bonus-tile__cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.sml-bonus-tile--3 .sml-bonus-tile__cta {
  background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.4);
}
.sml-bonus-tile--1 .sml-bonus-tile__cta:hover { box-shadow: 0 8px 30px rgba(255,107,0,0.55); }
.sml-bonus-tile--2 .sml-bonus-tile__cta:hover { box-shadow: 0 8px 32px rgba(255,194,0,0.65); }
.sml-bonus-tile--3 .sml-bonus-tile__cta:hover { box-shadow: 0 8px 30px rgba(16,185,129,0.55); }

/* ── Featured card (card 2) — elevated gold treatment ── */
.sml-bonus-tile--featured {
  background: linear-gradient(180deg, #171200 0%, #141414 60%);
  border-color: rgba(255,194,0,0.3);
  box-shadow:
    0 0 0 1px rgba(255,194,0,0.18),
    0 8px 40px rgba(255,194,0,0.15),
    0 24px 60px rgba(0,0,0,0.4);
  margin-top: -12px;
  z-index: 1;
}
.sml-bonus-tile--featured:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(255,194,0,0.28),
    0 16px 50px rgba(255,194,0,0.25),
    0 30px 70px rgba(0,0,0,0.5);
}

/* ── Featured badge ── */
.sml-bonus-tile__featured-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, #e6a800, #ffc200, #ffe066);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 14px rgba(255,194,0,0.45);
  white-space: nowrap;
}

/* ── Total row below cards ── */
.sml-bonus-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 24px;
  background: rgba(255,194,0,0.06);
  border: 1px solid rgba(255,194,0,0.18);
  border-radius: 10px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.sml-bonus-total__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.sml-bonus-total__value {
  font-size: 18px;
  font-weight: 900;
  color: #ffc200;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(255,194,0,0.5);
}
.sml-bonus-total__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
}

/* --------------------------------------------------------------------------
   STATS BAR
   -------------------------------------------------------------------------- */
.sml-stats-bar {
  background: #0a0a0a;
  border-top: 1px solid var(--sml-border);
  border-bottom: 1px solid var(--sml-border);
  padding: 0;
}
.sml-stats-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sml-stats-bar__item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--sml-border);
  position: relative;
}
.sml-stats-bar__item:last-child { border-right: none; }

.sml-stats-bar__icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.sml-stats-bar__value {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--sml-gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sml-stats-bar__sup {
  font-size: 0.85em;
  font-weight: 900;
  vertical-align: baseline;
}
.sml-stats-bar__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--sml-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   POPULAR GAMES GRID
   -------------------------------------------------------------------------- */
.sml-games-section {
  background: var(--sml-dark);
}

/* ── TOP 3 featured row ── */
.sml-top3-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  align-items: end;
}

.sml-top3-card {
  background: #141414;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sml-top3-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* center card slightly elevated */
.sml-top3-card--center {
  margin-top: -12px;
  border-color: rgba(255,194,0,0.2);
  box-shadow: 0 4px 30px rgba(255,194,0,0.1);
}
.sml-top3-card--center:hover {
  box-shadow: 0 20px 50px rgba(255,194,0,0.2);
}

.sml-top3-card__rank {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.sml-top3-card__rank--gold   { background: linear-gradient(135deg,#e6a800,#ffc200); color: #000; }
.sml-top3-card__rank--silver { background: rgba(180,180,180,0.25); color: #d0d0d0; border: 1px solid rgba(180,180,180,0.3); }
.sml-top3-card__rank--bronze { background: rgba(205,127,50,0.2); color: #cd7f32; border: 1px solid rgba(205,127,50,0.35); }

.sml-top3-card__thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sml-top3-card__emoji {
  font-size: 64px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
  transition: transform 0.3s;
}
.sml-top3-card:hover .sml-top3-card__emoji { transform: scale(1.12); }

.sml-top3-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--sml-gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.sml-top3-card:hover .sml-top3-card__overlay { opacity: 1; }

.sml-top3-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sml-top3-card__name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}
.sml-top3-card__provider {
  font-size: 12px;
  color: var(--sml-muted);
  margin: 0 0 12px;
}
.sml-top3-card__meta {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.sml-top3-card__cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #e6a800, #ffc200);
  color: #000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 11px 0;
  border-radius: 9px;
  transition: filter 0.2s, transform 0.15s;
}
.sml-top3-card:hover .sml-top3-card__cta {
  filter: brightness(1.1);
}

/* ── "Daha Fazla Oyun" divider ── */
.sml-more-games-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.sml-more-games-label::before,
.sml-more-games-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.sml-more-games-label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* ── Horizontal auto-scroll strip ── */
.sml-hscroll-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
.sml-hscroll-wrap::before,
.sml-hscroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.sml-hscroll-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--sml-dark), transparent);
}
.sml-hscroll-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--sml-dark), transparent);
}
.sml-hscroll-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: sml-hscroll 32s linear infinite;
}
.sml-hscroll-wrap:hover .sml-hscroll-track {
  animation-play-state: paused;
}
@keyframes sml-hscroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sml-hscroll-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 130px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.sml-hscroll-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,194,0,0.3);
}
.sml-hscroll-card__thumb {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.sml-hscroll-card__name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 6px 8px 2px;
  text-align: center;
  line-height: 1.3;
}
.sml-hscroll-card__provider {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  padding: 0 8px 8px;
  text-align: center;
}

.sml-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sml-slot-card {
  background: var(--sml-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.sml-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: var(--sml-border);
}

.sml-slot-card__thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sml-slot-card__emoji {
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s;
}
.sml-slot-card:hover .sml-slot-card__emoji {
  transform: scale(1.15);
}
.sml-slot-card__hover-play {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sml-gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.sml-slot-card:hover .sml-slot-card__hover-play { opacity: 1; }

.sml-slot-card__body {
  padding: 14px 16px;
}
.sml-slot-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}
.sml-slot-card__provider {
  font-size: 11px;
  color: var(--sml-muted);
  margin: 0 0 10px;
}
.sml-slot-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sml-badge-rtp {
  background: rgba(255, 194, 0, 0.1);
  border: 1px solid rgba(255, 194, 0, 0.25);
  color: var(--sml-gold);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.sml-badge-vol {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.sml-badge-vol--high {
  background: rgba(255, 107, 0, 0.15);
  color: #ff6b00;
}
.sml-badge-vol--med {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* --------------------------------------------------------------------------
   HOW TO PLAY
   -------------------------------------------------------------------------- */
.sml-how-section {
  background: #0a0a0a;
  padding-bottom: 48px !important;
}

.sml-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.sml-steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--sml-gold) 0%, var(--sml-orange) 100%);
  opacity: 0.3;
  pointer-events: none;
}

.sml-step-card {
  background: var(--sml-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 28px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.sml-step-card:hover {
  border-color: var(--sml-border);
  transform: translateY(-3px);
}

.sml-step-card__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--sml-gold);
  color: #000;
  font-size: 13px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sml-step-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.sml-step-card__step-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sml-gold);
  margin-bottom: 8px;
}
.sml-step-card__title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 10px;
}
.sml-step-card__desc {
  font-size: 14px;
  color: var(--sml-muted);
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------------------------------------------------
   VIP SECTION
   -------------------------------------------------------------------------- */
.sml-vip-section {
  background: linear-gradient(180deg, #0a0a0a 0%, var(--sml-dark) 100%);
  padding: 80px 0;
  border-top: 1px solid var(--sml-border);
  position: relative;
  overflow: hidden;
}
.sml-vip-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,194,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Perks strip ── */
.sml-vip-perks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.sml-vip-perk {
  display: flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(135deg, #161200 0%, #111 100%);
  border: 1px solid rgba(255,194,0,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sml-vip-perk:hover {
  border-color: rgba(255,194,0,0.42);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,194,0,0.1);
}
.sml-vip-perk__icon {
  font-size: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,194,0,0.1);
  border: 1px solid rgba(255,194,0,0.18);
  border-radius: 10px;
  flex-shrink: 0;
}
.sml-vip-perk__text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* ── Tier grid ── */
.sml-vip-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
}

/* ── Base tier card ── */
.sml-vip-tier {
  background: #141414;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sml-vip-tier:hover { transform: translateY(-4px); }

/* ── Coloured header panel ── */
.sml-vip-tier__head {
  padding: 24px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media (max-width: 768px) {
  .sml-vip-tier__head::after {
    content: '▾';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    transition: transform 0.3s;
  }
  .sml-vip-tier--open .sml-vip-tier__head::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.sml-vip-tier--bronze .sml-vip-tier__head   { background: linear-gradient(160deg, rgba(205,127,50,0.22) 0%, rgba(205,127,50,0.05) 100%); border-bottom: 1px solid rgba(205,127,50,0.2); }
.sml-vip-tier--silver .sml-vip-tier__head   { background: linear-gradient(160deg, rgba(180,180,180,0.18) 0%, rgba(180,180,180,0.04) 100%); border-bottom: 1px solid rgba(180,180,180,0.15); }
.sml-vip-tier--gold   .sml-vip-tier__head   { background: linear-gradient(160deg, rgba(255,194,0,0.24) 0%, rgba(255,194,0,0.06) 100%); border-bottom: 1px solid rgba(255,194,0,0.24); }
.sml-vip-tier--platinum .sml-vip-tier__head { background: linear-gradient(160deg, rgba(122,176,212,0.2) 0%, rgba(122,176,212,0.04) 100%); border-bottom: 1px solid rgba(122,176,212,0.18); }
.sml-vip-tier--diamond  .sml-vip-tier__head { background: linear-gradient(160deg, rgba(0,212,255,0.18) 0%, rgba(0,212,255,0.04) 100%); border-bottom: 1px solid rgba(0,212,255,0.16); }

.sml-vip-tier__icon { font-size: 26px; line-height: 1; }

.sml-vip-tier__name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sml-vip-tier--bronze .sml-vip-tier__name   { color: #cd7f32; }
.sml-vip-tier--silver .sml-vip-tier__name   { color: #c0c0c0; }
.sml-vip-tier--gold   .sml-vip-tier__name   { color: #ffc200; }
.sml-vip-tier--platinum .sml-vip-tier__name { color: #7ab0d4; }
.sml-vip-tier--diamond  .sml-vip-tier__name { color: #00d4ff; }

/* ── Card body ── */
.sml-vip-tier__body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sml-vip-tier__req {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sml-vip-tier__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sml-vip-tier__perks li {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.4;
}
.sml-vip-tier__perks li::before {
  content: '✓';
  font-size: 9px;
  font-weight: 900;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sml-vip-tier--bronze .sml-vip-tier__perks li::before   { color: #cd7f32; background: rgba(205,127,50,0.14); }
.sml-vip-tier--silver .sml-vip-tier__perks li::before   { color: #c0c0c0; background: rgba(192,192,192,0.12); }
.sml-vip-tier--gold   .sml-vip-tier__perks li::before   { color: #ffc200; background: rgba(255,194,0,0.14); }
.sml-vip-tier--platinum .sml-vip-tier__perks li::before { color: #7ab0d4; background: rgba(122,176,212,0.14); }
.sml-vip-tier--diamond  .sml-vip-tier__perks li::before { color: #00d4ff; background: rgba(0,212,255,0.12); }

.sml-vip-tier__cta {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 0;
  border-radius: 9px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
  margin-top: auto;
}
.sml-vip-tier__cta:hover { filter: brightness(1.12); transform: translateY(-1px); }
.sml-vip-tier--bronze .sml-vip-tier__cta   { background: rgba(205,127,50,0.12); color: #cd7f32; border: 1px solid rgba(205,127,50,0.28); }
.sml-vip-tier--silver .sml-vip-tier__cta   { background: rgba(192,192,192,0.1);  color: #c0c0c0; border: 1px solid rgba(192,192,192,0.2);  }
.sml-vip-tier--gold   .sml-vip-tier__cta   { background: linear-gradient(135deg, #e6a800, #ffc200); color: #000; font-weight: 900; border: none; box-shadow: 0 4px 16px rgba(255,194,0,0.35); }
.sml-vip-tier--platinum .sml-vip-tier__cta { background: rgba(122,176,212,0.1); color: #7ab0d4; border: 1px solid rgba(122,176,212,0.22); }
.sml-vip-tier--diamond  .sml-vip-tier__cta { background: rgba(0,212,255,0.08);  color: #00d4ff; border: 1px solid rgba(0,212,255,0.2);  }

/* ── Featured gold tier ── */
.sml-vip-tier--featured {
  background: linear-gradient(180deg, #171200 0%, #141414 55%);
  border-color: rgba(255,194,0,0.28);
  box-shadow:
    0 0 0 1px rgba(255,194,0,0.14),
    0 8px 40px rgba(255,194,0,0.12),
    0 20px 50px rgba(0,0,0,0.4);
  margin-top: -16px;
  z-index: 1;
}
.sml-vip-tier--featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(255,194,0,0.24),
    0 16px 50px rgba(255,194,0,0.2),
    0 28px 60px rgba(0,0,0,0.5);
}

/* ── Crown badge ── */
.sml-vip-tier__crown {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e6a800, #ffc200, #ffe066);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,194,0,0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sml-vip-tiers { grid-template-columns: repeat(3, 1fr); }
  .sml-vip-perks { grid-template-columns: repeat(3, 1fr); }
  .sml-vip-tier--featured { margin-top: 0; }
}
@media (max-width: 640px) {
  .sml-vip-tiers { grid-template-columns: repeat(2, 1fr); }
  .sml-vip-perks { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   LICENSE & PAYMENTS TRUST STRIP
   -------------------------------------------------------------------------- */
.sml-trust-strip {
  background: var(--sml-dark);
  border-top: 1px solid var(--sml-border);
  border-bottom: 1px solid var(--sml-border);
  padding: 28px 0;
}

.sml-trust-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.sml-trust-strip__group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sml-trust-strip__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sml-muted);
  white-space: nowrap;
}

.sml-license-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 194, 0, 0.05);
  border: 1px solid rgba(255, 194, 0, 0.4);
  border-radius: 10px;
  padding: 12px 18px;
}

.sml-license-card__shield {
  flex-shrink: 0;
}

.sml-license-card__name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.sml-license-card__num {
  font-size: 10px;
  color: var(--sml-muted);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}
.sml-license-card__verified {
  background: rgba(255, 194, 0, 0.12);
  color: var(--sml-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.sml-trust-strip__separator {
  width: 1px;
  height: 48px;
  background: var(--sml-border);
  flex-shrink: 0;
}

.sml-payments {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sml-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sml-pay-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  border-radius: 6px;
}

.sml-pay-logo--papara {
  background: #fff;
  color: #7b2fbf;
  font-weight: 900;
  font-size: 13px;
  padding: 0 8px;
  letter-spacing: -0.02em;
}
.sml-pay-logo--havale {
  background: #2196f3;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 0 7px;
}
.sml-pay-logo--btc {
  background: #f7931a;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 0 10px;
}
.sml-pay-logo--usdt {
  background: #26a17b;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 0 7px;
}
.sml-pay-logo--visa {
  background: #1a1f71;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
  padding: 0 10px;
  letter-spacing: -0.02em;
}
.sml-pay-logo--mc {
  background: linear-gradient(135deg, #eb001b 40%, #f79e1b 60%);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 0 7px;
}
.sml-pay-logo--payfix {
  background: #00b4d8;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 0 5px;
  letter-spacing: -0.02em;
}
.sml-pay-logo--mefete {
  background: #6c3fc5;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 0 5px;
  letter-spacing: -0.02em;
}
.sml-pay-logo--eth {
  background: #627eea;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding: 0 8px;
}

.sml-payment-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--sml-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   COMPANY INFO BAR
   -------------------------------------------------------------------------- */
.sml-info-bar {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sml-info-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sml-info-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  justify-content: center;
}
.sml-info-bar__sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.sml-info-bar__icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,194,0,0.08);
  border: 1px solid rgba(255,194,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc200;
  flex-shrink: 0;
}
.sml-info-bar__key {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 3px;
}
.sml-info-bar__val {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.sml-faq {
  background: var(--sml-dark);
}

.sml-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sml-faq-item {
  background: var(--sml-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.sml-faq-item.sml-faq-open {
  border-color: var(--sml-border);
}

.sml-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  user-select: none;
  list-style: none;
  gap: 16px;
}
.sml-faq-summary:hover { color: #ffc200; }

.sml-faq-chevron {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--sml-gold);
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
}
.sml-faq-item.sml-faq-open .sml-faq-chevron {
  background: rgba(255, 194, 0, 0.12);
  border-color: var(--sml-gold);
  transform: rotate(180deg);
}

.sml-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  border-top: 0px solid rgba(255,255,255,0.04);
}
.sml-faq-item.sml-faq-open .sml-faq-answer {
  max-height: 400px;
  opacity: 1;
  padding: 12px 20px 20px;
  border-top-width: 1px;
}

/* --------------------------------------------------------------------------
   CTA BANNER — two-column gold
   -------------------------------------------------------------------------- */
.sml-cta-banner {
  position: relative;
  background: #111;
  border-top: 3px solid #ffc200;
  border-bottom: 3px solid #ffc200;
  overflow: hidden;
  padding: 0;
}

.sml-cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}

.sml-cta-banner__left { }

.sml-cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,194,0,0.45);
  background: rgba(255,194,0,0.07);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffc200;
  margin-bottom: 20px;
}

.sml-cta-banner__eyebrow-dot {
  width: 7px; height: 7px;
  background: #ffc200;
  border-radius: 50%;
  animation: sml-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.sml-cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.05;
}

.sml-cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 24px;
  line-height: 1.6;
}

.sml-cta-banner__disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.sml-disc-dot { opacity: 0.4; }

/* RIGHT gold panel */
.sml-cta-banner__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: linear-gradient(145deg, #ffc200, #ff9500);
  border-radius: 16px;
  padding: 32px 40px;
  min-width: 260px;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,194,0,0.25), 0 20px 40px rgba(0,0,0,0.4);
}

.sml-cta-banner__amount-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sml-cta-banner__amount-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.6);
}

.sml-cta-banner__amount {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #000;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sml-cta-banner__amount-sub {
  font-size: 11px;
  color: rgba(0,0,0,0.5);
  font-weight: 600;
}

.sml-cta-btn {
  display: inline-block;
  background: #000;
  color: #ffc200;
  font-size: 15px;
  font-weight: 900;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid #000;
  width: 100%;
  text-align: center;
}
.sml-cta-btn:hover {
  background: #111;
  transform: translateY(-2px);
  color: #ffc200;
  text-decoration: none;
}

/* Diagonal stripe decoration */
.sml-cta-banner__stripe {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(145deg, #ffc200 0%, #ff9500 100%);
  opacity: 0.04;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .sml-cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sml-cta-banner__eyebrow { justify-content: center; }
  .sml-cta-banner__disclaimer { justify-content: center; }
  .sml-cta-banner__right { width: 100%; }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.sml-footer {
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 32px;
}

.sml-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.sml-footer__logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.sml-footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

.sml-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.sml-footer__links a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.sml-footer__links a:hover { color: var(--sml-gold); }

.sml-footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.sml-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sml-fade-in.sml-visible {
  opacity: 1;
  transform: translateY(0);
}
.sml-fade-in:nth-child(2) { transition-delay: 0.1s; }
.sml-fade-in:nth-child(3) { transition-delay: 0.2s; }
.sml-fade-in:nth-child(4) { transition-delay: 0.3s; }
.sml-fade-in:nth-child(5) { transition-delay: 0.4s; }
.sml-fade-in:nth-child(6) { transition-delay: 0.5s; }
.sml-fade-in:nth-child(7) { transition-delay: 0.6s; }
.sml-fade-in:nth-child(8) { transition-delay: 0.7s; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .sml-hero__inner {
    grid-template-columns: 1fr;
  }
  .sml-hero__left { padding: 40px 24px; align-items: center; text-align: center; }
  .sml-hero__games-strip { display: none; }
  .sml-hgs__pinned { display: none; }
  .sml-games-sidebar {
    border-left: none;
    border-top: 1px solid var(--sml-border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sml-games-sidebar__title {
    grid-column: 1 / -1;
  }
  .sml-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sml-topbar__nav { display: none; }
  .sml-hero__left { padding: 40px 24px; }
  .sml-bonus-strip { grid-template-columns: 1fr; align-items: stretch; }
  .sml-bonus-tile--featured { margin-top: 0; }
  .sml-stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .sml-stats-bar__item:nth-child(2) { border-right: none; }
  .sml-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .sml-slots-grid--6 { grid-template-columns: repeat(3, 1fr); }
  .sml-top3-row { grid-template-columns: 1fr; }
  .sml-top3-card--center { margin-top: 0; }
  .sml-steps-grid { grid-template-columns: 1fr; }
  .sml-steps-grid::before { display: none; }
  .sml-trust-strip__inner { flex-direction: column; align-items: flex-start; }
  .sml-trust-strip__separator { width: 100%; height: 1px; }
  .sml-games-sidebar { grid-template-columns: 1fr; }
  .sml-info-bar__inner { flex-wrap: wrap; justify-content: flex-start; padding: 0 20px; }
  .sml-info-bar__item { flex: 0 0 calc(50% - 1px); justify-content: flex-start; }
  .sml-info-bar__sep { display: none; }
}

@media (max-width: 480px) {
  .sml-slots-grid { grid-template-columns: 1fr; }
  .sml-stats-bar__inner { grid-template-columns: 1fr; }
  .sml-stats-bar__item { border-right: none; border-bottom: 1px solid var(--sml-border); }
}

/* --------------------------------------------------------------------------
   SIDEBAR TOP 3 + SCROLL
   -------------------------------------------------------------------------- */
.sml-sidebar__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255,194,0,0.15);
}
.sml-sidebar__trophy { font-size: 18px; }
.sml-sidebar__title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffc200;
}

.sml-sidebar__pinned { padding: 8px 0 4px; }
.sml-sidebar__pinned-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,194,0,0.5);
  padding: 0 16px 6px;
}

.sml-game-row--top {
  background: rgba(255,194,0,0.04);
  border-left: 2px solid rgba(255,194,0,0.4) !important;
}
.sml-game-row--top:hover {
  background: rgba(255,194,0,0.08);
}

.sml-game-medal {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900;
  flex-shrink: 0;
}
.sml-game-medal--gold   { background: #ffc200; color: #000; }
.sml-game-medal--silver { background: #94a3b8; color: #000; }
.sml-game-medal--bronze { background: #b45309; color: #fff; }

.sml-sidebar__divider {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.sml-sidebar__divider::before,
.sml-sidebar__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.sml-sidebar__scroll-wrap {
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
  position: relative;
}
.sml-sidebar__scroll-wrap::before,
.sml-sidebar__scroll-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 24px;
  z-index: 2;
  pointer-events: none;
}
.sml-sidebar__scroll-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, #0d0d0d, transparent);
}
.sml-sidebar__scroll-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, #0d0d0d, transparent);
}

.sml-sidebar__scroll-track {
  animation: sml-scroll-up 30s linear infinite;
}
.sml-sidebar__scroll-track:hover {
  animation-play-state: paused;
}

@keyframes sml-scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Sidebar bonus panel */
.sml-sidebar__bonus {
  padding: 14px 14px 16px;
  background: #0f0f0f;
  border-top: 1px solid rgba(255,194,0,0.12);
  border-bottom: 1px solid rgba(255,194,0,0.12);
  flex-shrink: 0;
}
.sml-sidebar__bonus-cta {
  display: block;
  background: #ffc200;
  color: #000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  padding: 13px 12px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.sml-sidebar__bonus-cta:hover {
  background: #ffcf20;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,194,0,0.4);
}
.sml-sidebar__bonus-note {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.6;
}
.sml-sidebar__bonus-note strong {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

/* Sidebar footer CTA */
.sml-sidebar__footer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 20px;
  gap: 10px;
  border-top: 1px solid rgba(255,194,0,0.12);
  background: linear-gradient(180deg, transparent, rgba(255,194,0,0.04));
}
.sml-sidebar__footer-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--sml-gold);
  color: #000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 12px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.sml-sidebar__footer-cta:hover {
  background: #ffcf20;
  transform: translateY(-1px);
}
.sml-sidebar__footer-note {
  font-size: 10px;
  color: var(--sml-muted);
  text-align: center;
  line-height: 1.5;
}
.sml-sidebar__footer-note strong {
  color: var(--sml-gold);
}
