/* ============================================
   Win Ningz Rush — Main Stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-primary: #181311;
  --bg-secondary: #221b18;
  --bg-header: #29211d;
  --bg-card: #2a2220;
  --bg-card-hover: #352d29;
  --accent-crimson: #e63946;
  --accent-crimson-hover: #f04d5c;
  --accent-red: #ff333a;
  --accent-red-hover: #e62d33;
  --text-primary: #ffffff;
  --text-secondary: #abadb0;
  --text-muted: #6b6d70;
  --status-green: #00c853;
  --status-orange: #ff9800;
  --font-body: 'Roboto', sans-serif;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --container-max: 1200px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-crimson);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  text-decoration: underline;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

h1 {
  font-size: 34px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--accent-crimson);
  margin-top: 48px;
}

h3 {
  font-size: 21px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 32px;
}

h4 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
}

p {
  margin-bottom: 16px;
}

strong {
  font-weight: 700;
  color: var(--text-primary);
}

small {
  font-size: 14px;
  color: var(--text-secondary);
}

ul, ol {
  margin: 0 0 16px 24px;
}

li {
  margin-bottom: 8px;
}

blockquote {
  border-left: 4px solid var(--accent-crimson);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(255, 197, 49, 0.05);
  font-style: italic;
  color: var(--text-secondary);
}

/* --- Layout --- */
.sl-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header & Navigation --- */
.sl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--bg-header);
  border-bottom: 1px solid rgba(255, 197, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 999;
}

.sl-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.sl-logo img {
  height: 28px;
  width: auto;
}

.sl-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-crimson);
  letter-spacing: 0.5px;
}

.sl-nav {
  display: flex;
  align-items: center;
}

.sl-nav__links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.sl-nav__links li {
  margin: 0;
}

.sl-nav__links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  padding: 4px 0;
  transition: color 0.2s;
}

.sl-nav__links a:hover {
  color: var(--accent-crimson);
  text-decoration: none;
}

.sl-nav-cta {
  display: inline-block;
  background: var(--accent-crimson);
  color: var(--bg-primary) !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none !important;
  transition: background 0.2s;
  white-space: nowrap;
}

.sl-nav-cta:hover {
  background: var(--accent-crimson-hover);
}

/* Hamburger — CSS only */
.sl-menu-toggle {
  display: none;
}

.sl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.sl-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.sl-mobile-nav {
  display: none;
}

.sl-nav-overlay {
  display: none;
}

/* --- Page Body Spacing --- */
.sl-page-body {
  padding-top: var(--header-height);
}

/* --- Hero Section --- */
.sl-hero {
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 48px;
  background: linear-gradient(180deg, var(--bg-header) 0%, var(--bg-primary) 100%);
}

.sl-hero h1 {
  font-size: 38px;
  margin-bottom: 8px;
  max-width: 800px;
}

.sl-hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
}

.sl-hero__highlight {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-crimson);
  display: block;
  margin-bottom: 8px;
}

/* --- Stats Bar --- */
.sl-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 24px 0 16px;
}

.sl-stat-item {
  text-align: center;
  min-width: 100px;
}

.sl-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-crimson);
  display: block;
}

.sl-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Bonus Cards --- */
.sl-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.sl-bonus-card {
  background: var(--bg-card);
  border: 2px solid var(--accent-crimson);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sl-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sl-bonus-card__tier {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.sl-bonus-card__amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.sl-bonus-card__amount span {
  color: var(--accent-crimson);
}

.sl-bonus-card__detail {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.sl-bonus-card__code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 197, 49, 0.1);
  border: 1px dashed var(--accent-crimson);
  border-radius: var(--border-radius-sm);
  padding: 8px 16px;
  font-family: monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-crimson);
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.sl-bonus-card__code:hover {
  background: rgba(255, 197, 49, 0.2);
}

.sl-bonus-card__code .copy-hint {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

.sl-bonus-card__cta {
  display: block;
}

/* --- CTA Buttons --- */
.sl-btn-primary {
  display: inline-block;
  background: var(--accent-crimson);
  color: var(--bg-primary) !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s;
}

.sl-btn-primary:hover {
  background: var(--accent-crimson-hover);
}

.sl-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent-crimson) !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  border: 2px solid var(--accent-crimson);
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}

.sl-btn-secondary:hover {
  background: var(--accent-crimson);
  color: var(--bg-primary) !important;
}

.sl-btn-red {
  display: inline-block;
  background: var(--accent-red);
  color: var(--text-primary) !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s;
}

.sl-btn-red:hover {
  background: var(--accent-red-hover);
}

/* --- Game Cards --- */
.sl-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.sl-game-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.sl-game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sl-game-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: var(--bg-secondary);
}

.sl-game-card__body {
  padding: 14px 16px;
}

.sl-game-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sl-game-card__provider {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sl-game-card__actions {
  display: flex;
  gap: 8px;
}

.sl-game-card__actions .sl-btn-primary {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  font-size: 13px;
}

.sl-game-card__actions .sl-btn-secondary {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  font-size: 13px;
}

/* --- Game Filter --- */
.sl-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.sl-filter-btn {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--text-muted);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.sl-filter-btn:hover,
.sl-filter-btn--active {
  background: var(--accent-crimson);
  color: var(--bg-primary);
  border-color: var(--accent-crimson);
}

/* --- Provider Logos --- */
.sl-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  align-items: center;
}

.sl-provider-logo {
  height: 36px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
  filter: grayscale(50%);
}

.sl-provider-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Payment Icons --- */
.sl-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
  align-items: center;
}

.sl-payment-icon {
  height: 32px;
  width: auto;
  opacity: 0.8;
}

/* --- Tables --- */
.sl-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}

.sl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.sl-table th {
  background: var(--bg-header);
  color: var(--accent-crimson);
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  white-space: nowrap;
  border-bottom: 2px solid var(--accent-crimson);
}

.sl-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.sl-table tr:hover td {
  background: var(--bg-card);
}

.sl-table .code-cell {
  font-family: monospace;
  color: var(--accent-crimson);
  font-weight: 600;
}

/* --- FAQ Accordion --- */
.sl-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}

.sl-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  list-style: none;
}

.sl-faq-item summary::-webkit-details-marker {
  display: none;
}

.sl-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent-crimson);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.sl-faq-item[open] summary::after {
  content: '\2212';
}

.sl-faq-answer {
  padding: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Content Sections --- */
.sl-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px 24px;
}

.sl-section--alt {
  background: var(--bg-secondary);
}

.sl-section__title {
  margin-top: 0;
}

/* --- Info Box (Game Detail Panel) --- */
.sl-info-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 24px;
  margin: 24px 0;
}

.sl-info-box__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.sl-info-box__row:last-child {
  border-bottom: none;
}

.sl-info-box__label {
  color: var(--text-muted);
  font-weight: 500;
}

.sl-info-box__value {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Promo Table (Bonus Codes listing) --- */
.sl-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.sl-promo-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 24px;
  border-left: 4px solid var(--accent-crimson);
}

.sl-promo-card__day {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-crimson);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sl-promo-card__bonus {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.sl-promo-card__code {
  font-family: monospace;
  font-size: 16px;
  color: var(--accent-crimson);
  cursor: pointer;
}

/* --- Review Cards --- */
.sl-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.sl-review-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 24px;
}

.sl-review-card__name {
  font-weight: 600;
  color: var(--accent-crimson);
  margin-bottom: 4px;
}

.sl-review-card__topic {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sl-review-card__text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Steps (How-to) --- */
.sl-steps {
  counter-reset: step;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.sl-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  padding-bottom: 24px;
  margin-bottom: 0;
  border-left: 2px solid rgba(255, 197, 49, 0.2);
  margin-left: 20px;
}

.sl-steps li::before {
  content: counter(step);
  position: absolute;
  left: -15px;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-crimson);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.sl-steps li:last-child {
  border-left: none;
  padding-bottom: 0;
}

/* --- Feature Cards --- */
.sl-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.sl-feature-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  text-align: center;
}

.sl-feature-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.sl-feature-card h3 {
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--accent-crimson);
}

.sl-feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- Pros/Cons Table --- */
.sl-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.sl-pros h3,
.sl-cons h3 {
  font-size: 18px;
  margin-top: 0;
}

.sl-pros h3 {
  color: var(--status-green);
}

.sl-cons h3 {
  color: var(--accent-red);
}

.sl-pros ul,
.sl-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sl-pros li::before {
  content: '\2713 ';
  color: var(--status-green);
  font-weight: 700;
  margin-right: 6px;
}

.sl-cons li::before {
  content: '\2717 ';
  color: var(--accent-red);
  font-weight: 700;
  margin-right: 6px;
}

/* --- Footer --- */
.sl-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 197, 49, 0.1);
  padding: 56px 24px 32px;
  margin-top: 64px;
}

.sl-footer__columns {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.sl-footer__col h4 {
  color: var(--accent-crimson);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.sl-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sl-footer__col li {
  margin-bottom: 10px;
}

.sl-footer__col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.sl-footer__col a:hover {
  color: var(--accent-crimson);
  text-decoration: none;
}

.sl-footer__col .sl-footer__contact {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.sl-footer__social {
  max-width: var(--container-max);
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sl-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 50%;
  transition: background 0.2s;
}

.sl-footer__social a:hover {
  background: var(--bg-card-hover);
}

.sl-footer__social img {
  width: 20px;
  height: 20px;
}

.sl-footer__disclosure {
  max-width: var(--container-max);
  margin: 0 auto 24px;
  padding: 20px 24px;
  background: rgba(255, 197, 49, 0.04);
  border: 1px solid rgba(255, 197, 49, 0.1);
  border-radius: var(--border-radius);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.sl-footer__badges {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.sl-footer__badges img {
  height: 32px;
  width: auto;
  opacity: 0.7;
}

.sl-footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.sl-footer__bottom a {
  color: var(--text-muted);
}

.sl-footer__bottom a:hover {
  color: var(--accent-crimson);
}

/* --- Mobile Sticky Bar --- */
.sl-mobile-bar {
  display: none;
}

/* --- Utility Classes --- */
.sl-hide-mobile {
  display: block;
}

.sl-hide-desktop {
  display: none;
}

.sl-text-center {
  text-align: center;
}

.sl-text-gold {
  color: var(--accent-crimson);
}

.sl-mt-0 {
  margin-top: 0;
}

.sl-mb-0 {
  margin-bottom: 0;
}

.sl-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* --- Copied Feedback --- */
.sl-copied-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--status-green);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  pointer-events: none;
}

.sl-copied-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
  .sl-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sl-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; margin-top: 36px; }
  h3 { font-size: 19px; }

  .sl-hero h1 { font-size: 30px; }
  .sl-hero__highlight { font-size: 38px; }

  .sl-nav { display: none; }
  .sl-nav-cta { display: none; }

  .sl-hamburger {
    display: flex;
  }

  .sl-menu-toggle:checked ~ .sl-mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-header);
    padding: 80px 24px 24px;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .sl-menu-toggle:checked ~ .sl-nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
  }

  .sl-menu-toggle:checked ~ .sl-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .sl-menu-toggle:checked ~ .sl-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .sl-menu-toggle:checked ~ .sl-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .sl-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sl-mobile-nav li {
    margin-bottom: 0;
  }

  .sl-mobile-nav a {
    display: block;
    padding: 14px 0;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .sl-mobile-nav a:hover {
    color: var(--accent-crimson);
    text-decoration: none;
  }

  .sl-bonus-grid {
    grid-template-columns: 1fr;
  }

  .sl-game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sl-promo-grid {
    grid-template-columns: 1fr;
  }

  .sl-review-grid {
    grid-template-columns: 1fr;
  }

  .sl-footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .sl-pros-cons {
    grid-template-columns: 1fr;
  }

  .sl-feature-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile sticky bar */
  .sl-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-header);
    border-top: 2px solid var(--accent-crimson);
    padding: 10px 16px;
    justify-content: space-between;
    align-items: center;
    z-index: 997;
  }

  .sl-mobile-bar__bonus {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-crimson);
  }

  .sl-mobile-bar__cta {
    background: var(--accent-crimson);
    color: var(--bg-primary) !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none !important;
    white-space: nowrap;
  }

  .sl-hide-mobile {
    display: none;
  }

  .sl-hide-desktop {
    display: block;
  }

  .sl-section {
    padding: 32px 16px;
  }

  .sl-footer {
    padding: 40px 16px 100px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }

  .sl-hero h1 { font-size: 26px; }
  .sl-hero__highlight { font-size: 32px; }
  .sl-hero { padding: 40px 16px 36px; min-height: auto; }

  .sl-game-grid {
    grid-template-columns: 1fr;
  }

  .sl-stats-bar {
    gap: 16px;
  }

  .sl-footer__columns {
    grid-template-columns: 1fr;
  }

  .sl-bonus-card__amount {
    font-size: 22px;
  }

  .sl-info-box__row {
    flex-direction: column;
    gap: 4px;
  }
}

/* --- Trustpilot Reviews Section --- */
.sl-trustpilot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.sl-trustpilot-header img {
  height: 28px;
  width: auto;
}

.sl-trustpilot-stars {
  color: #00b67a;
  font-size: 18px;
  letter-spacing: 2px;
}

.sl-trustpilot-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.sl-trustpilot-meta a {
  color: var(--text-muted);
}

.sl-review-card__stars {
  color: #00b67a;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sl-review-card__date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.sl-review-card__source {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.sl-review-card__source a {
  color: var(--text-muted);
}

/* --- Accessibility: focus-visible indicators (WCAG 2.4.7) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-crimson);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Don't show outline on mouse click (only keyboard) */
:focus:not(:focus-visible) { outline: none; }

/* ==========================================================================
   HERO REDESIGN — visual punch for the home page
   ========================================================================== */

/* Animated gradient backdrop on the hero — slow drift gives life without weight */
.sl-hero--punchy {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 56px;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(230, 57, 70, .18), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 197, 49, .12), transparent 55%),
    linear-gradient(180deg, #1c1410 0%, #181311 100%);
  border-bottom: 1px solid rgba(230, 57, 70, .25);
}

.sl-hero--punchy::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 197, 49, .06) 0, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(230, 57, 70, .08) 0, transparent 1px);
  background-size: 32px 32px, 48px 48px;
  opacity: .6;
  pointer-events: none;
}

/* "Live" indicator pill */
.sl-live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 200, 83, .12);
  border: 1px solid rgba(0, 200, 83, .35);
  color: #4ade80;
  font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.sl-live-pill__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
  animation: sl-live-pulse 1.8s ease-out infinite;
}
@keyframes sl-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, .7); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Big-bold bonus headline */
.sl-mega-bonus {
  display: flex; align-items: baseline; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin: 18px 0 8px;
  font-weight: 800;
  letter-spacing: -1px;
}
.sl-mega-bonus__pct {
  font-size: clamp(48px, 9vw, 96px);
  background: linear-gradient(135deg, #ffc531 0%, #ffd666 50%, #e63946 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 32px rgba(255, 197, 49, .25);
  line-height: 1;
}
.sl-mega-bonus__amount {
  font-size: clamp(36px, 7vw, 72px);
  color: #fff;
  line-height: 1;
}
.sl-mega-bonus__plus {
  display: inline-block;
  background: rgba(230, 57, 70, .15);
  color: #ff9eaa;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 1px solid rgba(230, 57, 70, .35);
  margin-top: 10px;
}

/* Pulsing primary CTA — bigger, glowing, irresistible */
.sl-btn-mega {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff4757 0%, #e63946 100%);
  color: #fff !important;
  font-weight: 800; font-size: 17px; letter-spacing: .3px;
  padding: 18px 38px;
  border-radius: 10px;
  text-decoration: none !important;
  text-transform: uppercase;
  box-shadow:
    0 8px 24px rgba(230, 57, 70, .4),
    0 2px 6px rgba(0, 0, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .25);
  position: relative;
  overflow: hidden;
  animation: sl-btn-pulse 2.4s ease-in-out infinite;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sl-btn-mega:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(230, 57, 70, .55),
    0 2px 6px rgba(0, 0, 0, .4),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}
.sl-btn-mega::after {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: sl-btn-shine 3s ease-in-out infinite;
}
@keyframes sl-btn-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}
@keyframes sl-btn-shine {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}

/* Trust band — Anjouan licence + 18+ + responsible-gaming partners */
.sl-trust-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 28px;
  margin: 24px auto 0;
  padding: 14px 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.sl-trust-band__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: #abadb0; font-weight: 500;
  letter-spacing: .3px;
}
.sl-trust-band__icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(230, 57, 70, .15);
  color: #ff9eaa;
  font-size: 11px; font-weight: 800;
}
.sl-trust-band__item strong { color: #fff; }

/* Stat grid — bigger, glowing borders */
.sl-stats-bar--punchy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 28px auto 18px;
  max-width: 760px;
}
.sl-stats-bar--punchy .sl-stat-item {
  background: linear-gradient(180deg, rgba(42, 34, 32, .9) 0%, rgba(34, 27, 24, .9) 100%);
  border: 1px solid rgba(230, 57, 70, .25);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  transition: border-color .2s ease, transform .15s ease;
}
.sl-stats-bar--punchy .sl-stat-item:hover {
  border-color: rgba(230, 57, 70, .55);
  transform: translateY(-2px);
}
.sl-stats-bar--punchy .sl-stat-value {
  display: block;
  font-size: 22px; font-weight: 800; color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.sl-stats-bar--punchy .sl-stat-label {
  display: block;
  font-size: 11px; color: #abadb0;
  letter-spacing: .5px; text-transform: uppercase;
}

/* Hero CTA row — center stack with secondary link */
.sl-hero__ctas {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  margin: 28px 0 8px;
}
.sl-hero__ctas-row {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.sl-hero__terms-line {
  font-size: 11px; color: #6b6d70;
  margin-top: 8px;
}
.sl-hero__terms-line a { color: #abadb0; text-decoration: underline; }

/* Mobile tighten */
@media (max-width: 640px) {
  .sl-hero--punchy { padding: 18px 16px 40px; }
  .sl-trust-band { padding: 10px 12px; gap: 8px 16px; }
  .sl-trust-band__item { font-size: 11px; }
  .sl-btn-mega { padding: 14px 26px; font-size: 15px; width: 100%; max-width: 320px; }
}

/* Mobile stat-grid: force 2 columns instead of 1-row scroll */
@media (max-width: 640px) {
  .sl-stats-bar--punchy { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sl-stats-bar--punchy .sl-stat-value { font-size: 19px; }
  .sl-stats-bar--punchy .sl-stat-label { font-size: 10px; }
  .sl-mega-bonus { gap: 8px; margin: 14px 0 4px; }
  .sl-mega-bonus__pct { font-size: clamp(56px, 16vw, 80px); }
  .sl-mega-bonus__amount { font-size: clamp(28px, 7vw, 48px); }
  /* Mobile sticky bar covers content — pad bottom of body */
  body { padding-bottom: 64px; }
}

/* ==========================================================================
   VEGAS VAULT — full visual identity layer
   Onyx + crimson + 14k gold. Cinzel display, Manrope body.
   ========================================================================== */

:root {
  /* Add new identity tokens (existing crimson/bg vars remain) */
  --vv-bg-onyx:        #120c0a;        /* deepest section */
  --vv-bg-felt:        #1a120e;        /* section alt — green-felt-toned dark */
  --vv-bg-card:        #211611;        /* card surface */
  --vv-bg-card-warm:   #281a13;        /* hover surface */
  --vv-gold-100:       #f4cb6a;        /* primary gold */
  --vv-gold-200:       #ffd97a;        /* highlight gold */
  --vv-gold-300:       #b08a3c;        /* shadow gold */
  --vv-gold-soft:      #6b4d20;        /* line gold (subtle) */
  --vv-crimson:        #e63946;        /* keep existing primary */
  --vv-crimson-deep:   #8a1d27;        /* shadow crimson */
  --vv-mauve:          #4a1f2a;        /* velvet shadow */
  --vv-emerald:        #2ec27e;        /* live/win signal */
  --vv-cream:          #f5e8d6;        /* warm white */
  --vv-cream-dim:      #c9b89c;        /* secondary text on dark */
  --vv-text-mute:      #8a7a66;        /* tertiary */
  --font-display:      'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body:         'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Body typography upgrade */
body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 800px 600px at 50% -10%, rgba(230, 57, 70, .08), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 50%, rgba(244, 203, 106, .04), transparent 70%),
    var(--vv-bg-onyx);
  color: var(--vv-cream);
  font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
}

/* All headings adopt Cinzel display, but keep weight + colour from existing rules where they exist */
h1, h2, h3, h4, h5, h6,
.sl-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h2, .sl-section__title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--vv-cream);
  background: none;
  -webkit-background-clip: initial;
}
h3 { letter-spacing: 0.05em; }
h4 { letter-spacing: 0.06em; text-transform: uppercase; font-size: 14px; color: var(--vv-gold-100); }

/* Bigger H1 (hero) keeps its existing big size from the punchy hero */
h1 { font-family: var(--font-display); font-weight: 700; }

/* Body paragraph copy — slightly more refined */
p { color: var(--vv-cream-dim); font-size: 16px; line-height: 1.75; }
p strong { color: var(--vv-cream); font-weight: 600; }
a { color: var(--vv-crimson); transition: color .15s ease; }
a:hover { color: var(--vv-gold-100); }

/* ----- Section base — broken-grid sectioning with ornaments ---------------- */
.sl-section {
  position: relative;
}
.sl-section--alt {
  background:
    radial-gradient(circle 600px at 0% 50%, rgba(74, 31, 42, .25), transparent 70%),
    var(--vv-bg-felt);
}

/* Section-title decorative wings — small gold rules + diamond glyphs.
   Apply via the .vv-eyebrow markup. */
.vv-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--vv-gold-100);
  margin-bottom: 14px;
}
.vv-eyebrow::before, .vv-eyebrow::after {
  content: '';
  height: 1px;
  width: clamp(20px, 8vw, 80px);
  background: linear-gradient(90deg, transparent, var(--vv-gold-soft));
}
.vv-eyebrow::after {
  background: linear-gradient(90deg, var(--vv-gold-soft), transparent);
}

/* Ornate horizontal divider with a center diamond (use as <hr class="vv-divider">) */
.vv-divider {
  border: 0;
  height: 24px;
  margin: 40px auto;
  max-width: 600px;
  position: relative;
  background: none;
}
.vv-divider::before {
  content: '';
  position: absolute; inset: 50% 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--vv-gold-soft) 20%, var(--vv-gold-100) 50%, var(--vv-gold-soft) 80%, transparent);
}
.vv-divider::after {
  content: '\2666'; /* ♦ */
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--vv-bg-onyx);
  padding: 0 12px;
  color: var(--vv-gold-100);
  font-size: 14px;
  letter-spacing: 0;
}
.sl-section--alt .vv-divider::after { background: var(--vv-bg-felt); }

/* Scroll-reveal — JS toggles .is-revealed */
.vv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.vv-reveal.is-revealed { opacity: 1; transform: translateY(0); }
.vv-reveal--delay-1.is-revealed { transition-delay: .08s; }
.vv-reveal--delay-2.is-revealed { transition-delay: .16s; }
.vv-reveal--delay-3.is-revealed { transition-delay: .24s; }
.vv-reveal--delay-4.is-revealed { transition-delay: .32s; }
.vv-reveal--delay-5.is-revealed { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .vv-reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- Welcome Bonus — chip-bordered showcase card ------------------------ */
.vv-vault-card {
  position: relative;
  margin: 40px auto 0;
  max-width: 640px;
  padding: 56px 32px 40px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 203, 106, .15), transparent 60%),
    linear-gradient(180deg, #2a1d15 0%, #1d1310 100%);
  border-radius: 18px;
  /* Casino-chip double border using outline + ::before rim */
  outline: 1px solid var(--vv-gold-soft);
  outline-offset: -10px;
  box-shadow:
    0 0 0 1px rgba(244, 203, 106, .35),
    0 30px 80px -20px rgba(0, 0, 0, .8),
    0 0 60px rgba(230, 57, 70, .15) inset;
}
.vv-vault-card::before {
  /* Chase lights — 12 dots around the rim (rotating) */
  content: '';
  position: absolute; inset: -10px; border-radius: 24px;
  background:
    radial-gradient(circle 4px at 50% 0%, var(--vv-gold-100), transparent 50%),
    radial-gradient(circle 4px at 100% 50%, var(--vv-gold-100), transparent 50%),
    radial-gradient(circle 4px at 50% 100%, var(--vv-gold-100), transparent 50%),
    radial-gradient(circle 4px at 0% 50%, var(--vv-gold-100), transparent 50%),
    radial-gradient(circle 3px at 85% 14%, var(--vv-gold-200), transparent 50%),
    radial-gradient(circle 3px at 14% 14%, var(--vv-gold-200), transparent 50%),
    radial-gradient(circle 3px at 85% 86%, var(--vv-gold-200), transparent 50%),
    radial-gradient(circle 3px at 14% 86%, var(--vv-gold-200), transparent 50%);
  opacity: .55;
  pointer-events: none;
  animation: vv-chips-rotate 16s linear infinite;
}
.vv-vault-card::after {
  /* Subtle gold dust grain inside */
  content: '';
  position: absolute; inset: 8px; border-radius: 14px;
  background-image:
    radial-gradient(circle 1px at 12% 22%, rgba(244, 203, 106, .25), transparent 100%),
    radial-gradient(circle 1px at 78% 14%, rgba(244, 203, 106, .2), transparent 100%),
    radial-gradient(circle 1px at 35% 84%, rgba(244, 203, 106, .25), transparent 100%),
    radial-gradient(circle 1px at 88% 65%, rgba(244, 203, 106, .2), transparent 100%);
  pointer-events: none;
}
@keyframes vv-chips-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.vv-vault-card__eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 10px;
  color: var(--vv-gold-100);
  margin-bottom: 12px;
}
.vv-vault-card__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(54px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--vv-gold-200) 0%, var(--vv-gold-100) 50%, var(--vv-gold-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 32px rgba(244, 203, 106, .3);
  margin: 6px 0 4px;
}
.vv-vault-card__sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--vv-cream);
  margin: 4px 0 18px;
}
.vv-vault-card__sub em { color: var(--vv-gold-100); font-style: normal; }
.vv-vault-card__terms {
  font-size: 11px;
  color: var(--vv-text-mute);
  margin: 12px 0 22px;
  letter-spacing: .03em;
}
.vv-vault-card__terms a { color: var(--vv-cream-dim); text-decoration: underline; }

/* ----- Promotions ribbon (scarcity / live invitation) -------------------- */
.vv-promo-ribbon {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
  margin: 32px auto 0;
  max-width: 1000px;
  padding: 24px 28px;
  background:
    linear-gradient(135deg, rgba(74, 31, 42, .55) 0%, rgba(33, 22, 17, .9) 60%);
  border: 1px solid rgba(244, 203, 106, .2);
  border-radius: 12px;
  position: relative; overflow: hidden;
}
.vv-promo-ribbon::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--vv-gold-100), var(--vv-crimson));
}
.vv-promo-ribbon h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 22px;
  color: var(--vv-cream);
}
.vv-promo-ribbon p { margin: 0; font-size: 14px; color: var(--vv-cream-dim); }
@media (max-width: 640px) {
  .vv-promo-ribbon { grid-template-columns: 1fr; padding: 20px 18px; }
}

/* ----- Game grid — gold-edged tiles with badges & glow on hover ---------- */
.vv-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.vv-slot-tile {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  background: var(--vv-bg-card);
  border: 1px solid rgba(244, 203, 106, .15);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  isolation: isolate;
}
.vv-slot-tile:hover {
  transform: translateY(-4px);
  border-color: var(--vv-gold-100);
  box-shadow:
    0 20px 40px -10px rgba(244, 203, 106, .25),
    0 0 0 1px rgba(244, 203, 106, .35);
}
.vv-slot-tile img {
  width: 100%; height: auto; aspect-ratio: 2/3;
  display: block;
  transition: transform .35s ease;
}
.vv-slot-tile:hover img { transform: scale(1.04); }
.vv-slot-tile__caption {
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  color: var(--vv-cream);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .35) 100%);
  border-top: 1px solid rgba(244, 203, 106, .12);
  letter-spacing: 0.02em;
  text-align: center;
}
.vv-slot-tile__badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  padding: 3px 8px;
  font-family: var(--font-body);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--vv-cream);
  background: linear-gradient(135deg, var(--vv-crimson), var(--vv-crimson-deep));
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.vv-slot-tile__badge--gold {
  background: linear-gradient(135deg, var(--vv-gold-200), var(--vv-gold-300));
  color: var(--vv-bg-onyx);
}
.vv-slot-tile__badge--emerald {
  background: linear-gradient(135deg, var(--vv-emerald), #1f9a5f);
}

/* ----- VIP Club luxe panel ------------------------------------------------ */
.vv-vip {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px;
  align-items: center;
  margin: 32px auto 0;
  max-width: 1100px;
  padding: 40px;
  background:
    linear-gradient(135deg, #1a0d09 0%, #2a1812 100%);
  border: 1px solid var(--vv-gold-soft);
  border-radius: 14px;
  overflow: hidden;
}
.vv-vip::before {
  /* gold seal corner ornament */
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 203, 106, .25) 0%, transparent 60%);
  pointer-events: none;
}
.vv-vip__seal {
  display: grid; place-items: center;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid var(--vv-gold-100);
  outline: 1px solid var(--vv-gold-soft);
  outline-offset: 8px;
  background: radial-gradient(circle at 40% 40%, #2a1d13, #120906);
  position: relative;
  margin: 0 auto;
}
.vv-vip__seal-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  background: linear-gradient(180deg, var(--vv-gold-200), var(--vv-gold-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.vv-vip__seal-label {
  position: absolute; bottom: 22px;
  font-family: var(--font-display);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--vv-gold-100);
}
.vv-vip__body h2 { margin-top: 0; }
.vv-vip__rewards {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 18px 0 20px;
}
.vv-vip__reward {
  padding: 8px 14px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  background: rgba(244, 203, 106, .08);
  border: 1px solid var(--vv-gold-soft);
  border-radius: 999px;
  color: var(--vv-gold-100);
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .vv-vip { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; text-align: center; }
  .vv-vip__rewards { justify-content: center; }
}

/* ----- Game Providers — infinite marquee --------------------------------- */
.vv-providers-marquee {
  position: relative;
  margin: 28px -24px 0;
  padding: 24px 0;
  overflow: hidden;
  border-block: 1px solid rgba(244, 203, 106, .15);
  background:
    linear-gradient(90deg, var(--vv-bg-onyx) 0%, transparent 5%, transparent 95%, var(--vv-bg-onyx) 100%),
    linear-gradient(180deg, rgba(244, 203, 106, .03), rgba(244, 203, 106, .06));
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.vv-providers-track {
  display: flex; gap: 60px;
  animation: vv-marquee 34s linear infinite;
  width: max-content;
}
.vv-providers-track img {
  flex: 0 0 auto;
  height: 36px; width: auto;
  opacity: .55;
  filter: grayscale(.4) brightness(1.1);
  transition: opacity .2s ease, filter .2s ease;
}
.vv-providers-track img:hover { opacity: 1; filter: grayscale(0) brightness(1.2); }
@keyframes vv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----- Payments chip-board ---------------------------------------------- */
.vv-payments-board {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
  margin: 28px auto 0;
  max-width: 720px;
  padding: 22px;
  background: rgba(0, 0, 0, .25);
  border: 1px dashed rgba(244, 203, 106, .25);
  border-radius: 12px;
}
.vv-payments-board img {
  height: 36px; width: auto;
  padding: 8px 14px;
  background: var(--vv-cream);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
  transition: transform .2s ease;
}
.vv-payments-board img:hover { transform: scale(1.06); }
.vv-payments-eyebrow {
  text-align: center; margin-top: 14px;
  font-family: var(--font-body); font-size: 12px;
  color: var(--vv-cream-dim);
}
.vv-payments-eyebrow strong { color: var(--vv-gold-100); }

/* ----- Why Play feature cards (corner ornaments) ------------------------- */
.vv-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 28px 0 0;
}
.vv-feature {
  position: relative;
  padding: 28px 22px 24px;
  background: linear-gradient(180deg, var(--vv-bg-card) 0%, var(--vv-bg-card-warm) 100%);
  border: 1px solid rgba(244, 203, 106, .14);
  border-radius: 12px;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease;
}
.vv-feature:hover {
  transform: translateY(-3px);
  border-color: var(--vv-gold-100);
}
.vv-feature::before, .vv-feature::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--vv-gold-100);
  opacity: .4;
}
.vv-feature::before { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.vv-feature::after  { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }
.vv-feature__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 36px;
  color: var(--vv-crimson);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 16px rgba(230, 57, 70, .35);
}
.vv-feature h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vv-cream);
  margin: 0 0 8px;
}
.vv-feature p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--vv-cream-dim); }

/* ----- Trust / Reviews — editorial-style -------------------------------- */
.vv-trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.vv-trust-card {
  position: relative;
  padding: 26px 22px 22px 26px;
  background: var(--vv-bg-card);
  border-radius: 12px;
  border-left: 3px solid var(--vv-gold-100);
}
.vv-trust-card::before {
  content: '\201C';     /* opening quote */
  position: absolute; top: -10px; right: 14px;
  font-family: var(--font-display);
  font-size: 80px; line-height: 1;
  color: rgba(244, 203, 106, .15);
  pointer-events: none;
}
.vv-trust-card h3 {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--vv-gold-100);
  margin: 0 0 10px;
  font-weight: 700;
}
.vv-trust-card p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--vv-cream-dim); }
.vv-trust-card p strong { color: var(--vv-cream); }

/* ----- FAQ deluxe — gold-ridge accordion -------------------------------- */
.vv-faq {
  margin: 24px auto 0;
  max-width: 820px;
  border: 1px solid rgba(244, 203, 106, .15);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, .2);
}
.vv-faq details {
  border-bottom: 1px solid rgba(244, 203, 106, .1);
  padding: 0;
}
.vv-faq details:last-child { border-bottom: 0; }
.vv-faq summary {
  list-style: none;
  padding: 18px 22px 18px 24px;
  cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--vv-cream);
  display: flex; align-items: center; gap: 14px;
  position: relative;
  transition: background .15s ease;
}
.vv-faq summary::-webkit-details-marker { display: none; }
.vv-faq summary::before {
  content: '\2666'; /* ♦ */
  color: var(--vv-gold-100);
  font-size: 12px;
  flex-shrink: 0;
}
.vv-faq summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--vv-gold-100);
  transition: transform .2s ease;
}
.vv-faq details[open] summary::after { transform: rotate(45deg); }
.vv-faq summary:hover { background: rgba(244, 203, 106, .04); }
.vv-faq details > div, .vv-faq details > p {
  padding: 0 22px 18px 46px;
  font-size: 14px; line-height: 1.7; color: var(--vv-cream-dim);
}
.vv-faq details > div p { margin: 0; }

/* ----- Long SEO sections — drop caps + better rhythm -------------------- */
.vv-prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vv-gold-100);
  margin: 36px 0 14px;
  padding-left: 18px;
  position: relative;
}
.vv-prose h3::before {
  content: '\2666'; /* ♦ */
  position: absolute; left: 0; top: 4px;
  color: var(--vv-crimson);
  font-size: 12px;
}
.vv-prose p { font-size: 15px; line-height: 1.75; color: var(--vv-cream-dim); }
.vv-prose > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: .9;
  margin: 4px 10px 0 0;
  color: var(--vv-gold-100);
  text-shadow: 0 2px 16px rgba(244, 203, 106, .25);
}

/* ----- Footer ledger ------------------------------------------------------ */
.sl-footer {
  background:
    linear-gradient(180deg, var(--vv-bg-felt) 0%, #0d0806 100%);
  border-top: 1px solid var(--vv-gold-soft);
  margin-top: 40px;
  padding: 48px 24px 24px;
  position: relative;
}
.sl-footer::before {
  content: '';
  position: absolute; left: 0; right: 0; top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vv-gold-100), transparent);
}
.sl-footer__columns {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 32px;
}
.sl-footer__col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vv-gold-100);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--vv-gold-soft);
}
.sl-footer__col ul { list-style: none; padding: 0; margin: 0; }
.sl-footer__col li { margin-bottom: 10px; }
.sl-footer__col a {
  color: var(--vv-cream-dim);
  font-size: 13px;
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
}
.sl-footer__col a:hover { color: var(--vv-gold-100); padding-left: 4px; }
.sl-footer__contact { margin-top: 12px; font-size: 13px; color: var(--vv-cream-dim); }
.sl-footer__contact a { color: var(--vv-gold-100); }
.sl-footer__disclosure {
  max-width: 1200px; margin: 24px auto;
  padding: 18px 22px;
  background: rgba(0, 0, 0, .3);
  border-left: 3px solid var(--vv-crimson);
  border-radius: 6px;
  font-size: 12px; line-height: 1.6; color: var(--vv-cream-dim);
}
.sl-footer__disclosure p { margin: 0; font-size: 12px; }
.sl-footer__badges {
  max-width: 1200px; margin: 0 auto 20px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-block: 1px solid rgba(244, 203, 106, .08);
}
.sl-footer__badges img { height: 28px; width: auto; opacity: .65; filter: brightness(1.2); }
.sl-footer__bottom {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.sl-footer__bottom p {
  font-size: 11px; line-height: 1.7;
  color: var(--vv-text-mute);
  margin: 6px 0;
}
.sl-footer__bottom p:first-child {
  color: var(--vv-cream-dim); font-weight: 500;
  letter-spacing: .04em;
}

/* Mobile sticky bar — luxury treatment */
.sl-mobile-bar {
  background: linear-gradient(180deg, #1d1310 0%, #0d0806 100%);
  border-top: 1px solid var(--vv-gold-100);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .6);
}
.sl-mobile-bar__bonus {
  font-family: var(--font-body); font-weight: 700;
  color: var(--vv-gold-100);
  font-size: 13px;
  letter-spacing: .02em;
}
.sl-mobile-bar__cta {
  background: linear-gradient(135deg, var(--vv-crimson), var(--vv-crimson-deep));
  color: var(--vv-cream) !important;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px rgba(230, 57, 70, .5);
}

/* Mega CTA upgrade — gold border on focus + already pulsing red */
.sl-btn-mega:focus-visible {
  outline: 2px solid var(--vv-gold-100);
  outline-offset: 4px;
}

/* Disclosure banner up top — refined */
.sl-disclosure {
  font-family: var(--font-body) !important;
}
.sl-disclosure strong { color: var(--vv-cream) !important; }
