/* ================================================
   JamSlots Casino — Main Stylesheet
   jamslots-casino.de  |  Brand: Pink + Dark Navy
   ================================================ */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: var(--bg-dark);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ---- CSS VARIABLES ---- */
:root {
  --pink: #ff3da7;
  --pink-hover: #e8228e;
  --pink-mid: #ff65bc;
  --pink-light: #ff90d2;
  --pink-glow: rgba(255, 61, 167, 0.35);
  --pink-glow-soft: rgba(255, 61, 167, 0.12);
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --cyan: #06d6e0;

  --bg-dark: #0c0d1e;
  --bg-base: #111223;
  --bg-section: #0f1020;
  --bg-nav: rgba(11, 12, 24, 0.94);
  --bg-card: #171929;
  --bg-card2: #1d1f34;
  --bg-input: #14162a;
  --bg-overlay: rgba(8, 9, 20, 0.88);

  --text-1: #f0f0ff;
  --text-2: #b4b7d3;
  --text-3: #777a9a;
  --text-muted: #555875;

  --success: #10d98a;
  --success-soft: rgba(16, 217, 138, 0.1);
  --warning: #ffa726;
  --warning-soft: rgba(255, 167, 38, 0.1);
  --danger: #ff4444;
  --danger-soft: rgba(255, 68, 68, 0.1);
  --gold: #ffd700;

  --border-pink: rgba(255, 61, 167, 0.22);
  --border-card: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);

  --grad-pink: linear-gradient(135deg, #ff3da7 0%, #8b5cf6 100%);
  --grad-pink-h: linear-gradient(135deg, #e8228e 0%, #7c3aed 100%);
  --grad-gold: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  --grad-dark: linear-gradient(160deg, #0c0d1e 0%, #130e24 50%, #0c0d1e 100%);

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-pink: 0 4px 24px rgba(255, 61, 167, 0.28);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.55);
  --shadow-nav: 0 4px 30px rgba(0, 0, 0, 0.5);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --container: min(1200px, 94vw);
  --nav-h: 72px;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 20px;
  z-index: 9999;
  background: var(--pink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 0;
}

/* ---- FOCUS VISIBLE ---- */
:focus-visible {
  outline: 2px solid var(--pink-light);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 3px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 800;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-2);
}

.grad-text {
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grad-pink);
  border-radius: 1px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  margin-bottom: 48px;
}

.section-header p {
  margin-top: 12px;
  max-width: 620px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: var(--grad-pink-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--pink-glow);
}

.btn-secondary {
  background: rgba(255, 61, 167, 0.12);
  color: var(--pink-light);
  border: 1px solid var(--border-pink);
}

.btn-secondary:hover {
  background: rgba(255, 61, 167, 0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink-light);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  background: rgba(255, 61, 167, 0.1);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--grad-gold);
  color: #1a1000;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-xl {
  padding: 18px 52px;
  font-size: 1.15rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-pink);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: var(--border-pink);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), var(--shadow-pink);
}

.card:hover::before {
  opacity: 1;
}

.card-sm {
  padding: 20px;
  border-radius: var(--radius-md);
}

.card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.card-glass:hover {
  background: rgba(255, 61, 167, 0.05);
}

.card-pink {
  background: rgba(255, 61, 167, 0.08);
  border: 1px solid rgba(255, 61, 167, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
}

.card-highlight {
  background: linear-gradient(145deg, #1e0d2e, #1a1629);
  border: 1px solid rgba(255, 61, 167, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-pink);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 61, 167, 0.12);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ============================================
   NOTIFICATION STRIP
   ============================================ */
.notif-strip {
  background: linear-gradient(90deg, #0c0d1e 0%, #1a0d2e 35%, #200d1f 65%, #0c0d1e 100%);
  border-bottom: 1px solid var(--border-pink);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.notif-strip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  background: var(--grad-pink);
  opacity: 0.5;
}

.notif-strip a {
  color: var(--pink-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 8px;
}

.notif-strip a:hover {
  color: #fff;
}

/* ============================================
   MOBILE TOP CTA
   ============================================ */
.mobile-cta-bar {
  display: none;
  background: var(--grad-pink);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: var(--shadow-nav);
}

.nav-wrap {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 44px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-1);
  background: rgba(255, 61, 167, 0.1);
}

.nav-links a.active {
  color: var(--pink-light);
}

.nav-links a.active::after {
  /* no pseudo needed – bg handles it */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border-light);
  transition: all 0.2s;
  min-height: 44px;
}

.nav-login:hover {
  color: var(--text-1);
  border-color: var(--border-pink);
}

.nav-cta {
  background: var(--grad-pink);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.87rem;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-pink);
  transition: all 0.25s;
  min-height: 44px;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  background: var(--grad-pink-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--pink-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 1px;
  transition: all 0.3s;
}

.hamburger:hover span {
  background: var(--pink-light);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-card2);
  border-left: 1px solid var(--border-pink);
  z-index: 500;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-card);
}

.drawer-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 61, 167, 0.1);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close:hover {
  background: rgba(255, 61, 167, 0.2);
  color: var(--pink-light);
}

.drawer-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.drawer-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-2);
  transition: all 0.2s;
}

.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--pink-light);
  background: rgba(255, 61, 167, 0.08);
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}

.overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  left: -10%;
  top: -20%;
  background: radial-gradient(circle, rgba(255, 61, 167, 0.12) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 360px;
  height: 360px;
  right: -5%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 240px;
  height: 240px;
  left: 45%;
  top: 10%;
  background: radial-gradient(circle, rgba(255, 61, 167, 0.08) 0%, transparent 70%);
  animation-delay: -5s;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.96);
  }
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 61, 167, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 61, 167, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 61, 167, 0.12);
  border: 1px solid rgba(255, 61, 167, 0.3);
  color: var(--pink-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 var(--pink-glow);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 61, 167, 0);
  }
}

.hero-title {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-sub-dot {
  color: var(--pink);
  margin: 0 4px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border-card);
}

.hstat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hstat span:last-child {
  font-size: 0.82rem;
  color: var(--text-3);
  display: block;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.trust-item .ti-icon {
  font-size: 1.3rem;
}

.trust-item strong {
  color: var(--text-1);
}

.trust-item span {
  color: var(--text-3);
  font-size: 0.8rem;
}

/* ============================================
   PROVIDERS TICKER
   ============================================ */
.providers-section {
  padding: 40px 0;
  overflow: hidden;
}

.providers-track {
  display: flex;
  gap: 32px;
  animation: scroll-left 28s linear infinite;
  white-space: nowrap;
}

.providers-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.provider-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.provider-pill:hover {
  color: var(--pink-light);
  border-color: var(--border-pink);
}

/* ============================================
   FEATURE CARDS / WHY SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.feature-card .f-icon {
  font-size: 2.2rem;
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 61, 167, 0.1);
}

.feature-card h3 {
  font-size: 1rem;
  color: var(--text-1);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-3);
}

/* ============================================
   BONUS SHOWCASE
   ============================================ */
.bonus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bonus-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.3s;
}

.bonus-step:hover {
  border-color: var(--border-pink);
}

.bonus-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-pink);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bonus-step-info h4 {
  color: var(--text-1);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.bonus-step-info p {
  font-size: 0.85rem;
  color: var(--text-3);
}

.bonus-card-big {
  background: linear-gradient(145deg, #1e0d2e, #1a1629);
  border: 1px solid rgba(255, 61, 167, 0.35);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-pink);
  position: relative;
  overflow: hidden;
}

.bonus-card-big::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 61, 167, 0.12) 0%, transparent 70%);
}

.bonus-amount {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin: 16px 0 8px;
}

.bonus-tag {
  display: inline-block;
  background: rgba(255, 61, 167, 0.15);
  border: 1px solid rgba(255, 61, 167, 0.3);
  color: var(--pink-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.bonus-features-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.bonus-feature::before {
  content: '✓';
  color: var(--success);
  font-weight: 900;
}

/* ============================================
   RATING SECTION
   ============================================ */
.rating-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.overall-score {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  min-width: 200px;
}

.score-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-max {
  font-size: 1.5rem;
  color: var(--text-3);
}

.score-stars {
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin: 8px 0;
}

.score-label {
  font-size: 0.85rem;
  color: var(--text-3);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rbar-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rbar-label {
  width: 160px;
  font-size: 0.85rem;
  color: var(--text-2);
  flex-shrink: 0;
}

.rbar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.rbar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--grad-pink);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.rbar-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink-light);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* ============================================
   JACKPOT COUNTER
   ============================================ */
.jackpot-hero {
  background: linear-gradient(135deg, #0a0515 0%, #130a28 50%, #0a0515 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jackpot-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
}

.jackpot-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.jackpot-amount {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  font-variant-numeric: tabular-nums;
}

.jackpot-sub {
  font-size: 0.88rem;
  color: rgba(255, 215, 0, 0.6);
  margin-top: 8px;
}

/* ============================================
   LIVE WINNERS TICKER
   ============================================ */
.winners-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 12px 0;
  overflow: hidden;
}

.winners-track {
  display: flex;
  gap: 40px;
  animation: scroll-left 40s linear infinite;
  white-space: nowrap;
}

.winners-track:hover {
  animation-play-state: paused;
}

.winner-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.winner-item .wi-name {
  font-weight: 700;
  color: var(--text-1);
}

.winner-item .wi-amount {
  font-weight: 700;
  color: var(--success);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-glass {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.table-glass thead tr {
  background: rgba(255, 61, 167, 0.08);
  border-bottom: 2px solid var(--border-pink);
}

.table-glass thead th {
  padding: 16px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink-light);
  text-align: left;
}

.table-glass tbody tr {
  border-bottom: 1px solid var(--border-card);
  transition: background 0.2s;
}

.table-glass tbody tr:hover {
  background: rgba(255, 61, 167, 0.04);
}

.table-glass td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-2);
  vertical-align: middle;
}

.table-glass .jam-row {
  background: rgba(255, 61, 167, 0.07);
}

.table-glass .jam-row td {
  color: var(--text-1);
}

.table-glass .jam-row td:first-child {
  color: var(--pink-light);
  font-weight: 700;
}

.table-glass .highlight {
  color: var(--success) !important;
  font-weight: 700;
}

.table-glass .low {
  color: var(--danger) !important;
}

.check-mark {
  color: var(--success);
  font-weight: 900;
  font-size: 1rem;
}

.cross-mark {
  color: var(--danger);
  font-weight: 900;
}

.partial-mark {
  color: var(--warning);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--border-pink);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-1);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  min-height: 60px;
}

.faq-q:hover {
  color: var(--pink-light);
}

.faq-q .faq-arrow {
  color: var(--pink);
  font-size: 0.8rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* ============================================
   AUTHOR SECTION
   ============================================ */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 800px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--pink);
  flex-shrink: 0;
  overflow: hidden;
  min-width: 80px;
  min-height: 80px;
  object-fit: cover;
  object-position: center top;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-1);
}

.author-title {
  font-size: 0.82rem;
  color: var(--pink-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.author-bio {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.65;
}

.author-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.author-badge {
  background: rgba(255, 61, 167, 0.1);
  border: 1px solid var(--border-pink);
  color: var(--pink-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ============================================
   SEO TEXT BLOCK
   ============================================ */
.seo-block {
  max-width: 860px;
}

.seo-block h2 {
  margin-bottom: 20px;
  margin-top: 36px;
}

.seo-block h2:first-child {
  margin-top: 0;
}

.seo-block h3 {
  margin-bottom: 12px;
  margin-top: 28px;
  font-size: 1.15rem;
  color: var(--text-1);
}

.seo-block p {
  margin-bottom: 16px;
  font-size: 0.96rem;
  line-height: 1.75;
}

.seo-block a {
  color: var(--pink-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-block a:hover {
  color: var(--pink);
}

.seo-block ul,
.seo-block ol {
  margin: 12px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-block li {
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-3);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--pink-light);
}

.breadcrumb .bc-sep {
  color: var(--text-muted);
}

.breadcrumb .bc-current {
  color: var(--text-2);
}

/* ============================================
   PAGE HERO (inner pages - compact)
   ============================================ */
.page-hero {
  background: var(--grad-dark);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-card);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 61, 167, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 61, 167, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero .hero-lead {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 640px;
}

.page-hero-2col {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

/* ============================================
   RESPONSIBLE GAMING BAR
   ============================================ */
.resp-bar {
  background: rgba(255, 61, 167, 0.05);
  border-top: 1px solid rgba(255, 61, 167, 0.1);
  padding: 10px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
}

.resp-bar a {
  color: var(--pink-light);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-card);
}

.footer-brand .fb-logo {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-3);
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--border-pink);
  color: var(--pink-light);
  background: rgba(255, 61, 167, 0.1);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.87rem;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--pink-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal a {
  color: var(--text-3);
}

.footer-legal a:hover {
  color: var(--pink-light);
}

.footer-pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xs);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-3);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--danger-soft);
  border: 1px solid var(--danger);
  color: var(--danger);
  font-size: 0.7rem;
  font-weight: 800;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-pink {
  color: var(--pink-light) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-muted {
  color: var(--text-3) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-pink {
  background: rgba(255, 61, 167, 0.15);
  color: var(--pink-light);
  border: 1px solid rgba(255, 61, 167, 0.3);
}

.badge-success {
  background: var(--success-soft);
  color: var(--success);
}

.badge-warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.badge-gold {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.tag-new {
  background: var(--success-soft);
  color: var(--success);
}

.tag-hot {
  background: rgba(255, 69, 0, 0.12);
  color: #ff6b35;
}

.tag-top {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
}

.divider {
  height: 1px;
  background: var(--border-card);
  margin: 32px 0;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.pill-default {
  background: var(--bg-card2);
  border: 1px solid var(--border-card);
  color: var(--text-2);
}

.pill-default:hover,
.pill-default.active {
  background: rgba(255, 61, 167, 0.12);
  border-color: var(--border-pink);
  color: var(--pink-light);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.icon-box-pink {
  background: rgba(255, 61, 167, 0.1);
  border: 1px solid rgba(255, 61, 167, 0.2);
}

.icon-box-purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-box-gold {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Stars */
.stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.star-full {
  color: var(--gold);
}

.star-half {
  color: var(--warning);
}

.star-empty {
  color: var(--text-muted);
}

/* Form elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}

.form-input,
.form-select {
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-1);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  min-height: 44px;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--pink);
  outline: none;
  box-shadow: 0 0 0 3px var(--pink-glow-soft);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-err {
  font-size: 0.8rem;
  color: var(--danger);
}

/* Game cards */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  border-color: var(--border-pink);
}

.game-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-dark);
}

.game-info {
  padding: 14px 16px;
}

.game-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}

.game-provider {
  font-size: 0.78rem;
  color: var(--text-3);
}

.game-rtp {
  font-size: 0.78rem;
  color: var(--success);
}

.game-overlay-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 13, 30, 0.85);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: var(--radius-md);
}

.game-card:hover .game-overlay-btn {
  opacity: 1;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.game-card:hover .game-thumb img {
  transform: scale(1.05);
}

/* Payout methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
}

.payment-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-3px);
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.payment-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-1);
}

.payment-limit {
  font-size: 0.78rem;
  color: var(--text-3);
}

.payment-speed {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  margin-top: 4px;
}

/* Login/Reg card */
.auth-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.auth-card {
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-pink);
}

.auth-card .auth-logo {
  height: 48px;
  margin: 0 auto 28px;
  display: block;
}

.auth-card h1 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 8px;
}

.auth-card .auth-lead {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-3);
  margin-bottom: 32px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-3);
}

.auth-footer a {
  color: var(--pink-light);
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-card);
}

/* Responsive table */
.resp-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

/* Section divider with wave */
.wave-divider {
  height: 48px;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border-card);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-3);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  min-height: 44px;
}

.tab-btn.active {
  color: var(--pink-light);
  border-bottom-color: var(--pink);
}

.tab-btn:hover {
  color: var(--text-1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ============================================
   TECH PAGES (legal)
   ============================================ */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 32px 0 16px;
  color: var(--text-1);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--text-1);
}

.legal-content p {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 10px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-content li {
  font-size: 0.93rem;
  color: var(--text-2);
}

.legal-content a {
  color: var(--pink-light);
  text-decoration: underline;
}

.legal-content address {
  font-style: normal;
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-login {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
    padding: 48px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    max-width: 100%;
  }

  .bonus-layout {
    grid-template-columns: 1fr;
  }

  .rating-wrap {
    grid-template-columns: 1fr;
  }

  .overall-score {
    min-width: unset;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero-2col {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .author-box {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stats {
    gap: 16px;
  }

  .rbar-label {
    width: 120px;
    font-size: 0.8rem;
  }

  .trust-items {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: 92vw;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .payment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .auth-card {
    padding: 24px 18px;
  }

  .table-glass thead th,
  .table-glass td {
    padding: 12px 14px;
  }

  .app-rating-row {
    gap: 16px;
  }

  .live-stats-row {
    gap: 12px;
  }

  .jp-counters-grid {
    grid-template-columns: 1fr !important;
  }

  .jp-amount {
    font-size: 1.9rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .download-btns {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .app-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .app-hero-phone {
    order: -1;
  }

  .app-hero-phone img {
    max-width: 200px;
  }

  .live-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .live-hero-img {
    order: -1;
    justify-content: center;
  }

  .jp-counters-grid {
    grid-template-columns: 1fr !important;
  }

  .live-games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-btns {
    max-width: 100%;
  }
}

/* ============================================
   APP PAGE STYLES
   ============================================ */
.app-hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.app-hero-phone {
  display: flex;
  justify-content: center;
}

.app-hero-phone img {
  max-width: 240px;
  filter: drop-shadow(0 24px 60px rgba(255, 61, 167, 0.35));
}

.app-hero-text h1 {
  margin-bottom: 16px;
}

.app-rating-row {
  display: flex;
  gap: 32px;
  margin: 20px 0 24px;
}

.app-platform {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-logo {
  font-size: 2rem;
}

.download-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition: all 0.25s;
  min-height: 60px;
}

.download-btn:hover {
  border-color: var(--pink);
  background: rgba(255, 61, 167, 0.08);
  transform: translateX(4px);
}

.dl-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.download-btn span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.download-btn span small {
  font-size: 0.75rem;
  color: var(--text-3);
}

.download-btn span strong {
  font-size: 0.95rem;
  color: var(--text-1);
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all 0.2s;
}

.feature-row:hover {
  border-color: var(--border-pink);
}

.feat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-row strong {
  font-size: 0.92rem;
  color: var(--text-1);
  display: block;
  margin-bottom: 3px;
}

.feature-row p {
  font-size: 0.82rem;
  color: var(--text-3);
  margin: 0;
}

.feat-badge {
  margin-left: auto;
  align-self: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 61, 167, 0.15);
  color: var(--pink-light);
  flex-shrink: 0;
}

.radar-container {
  max-width: 240px;
  margin: 0 auto;
}

.radar-svg {
  width: 100%;
  height: auto;
}

.radar-legend {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-1);
}

/* ============================================
   JACKPOT PAGE STYLES
   ============================================ */
.jackpot-hero-section {
  background: linear-gradient(160deg, #0a0515 0%, #130a28 50%, #0a0515 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.jackpot-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
}

.jp-counter-card {
  background: linear-gradient(160deg, #12090a 0%, #1a0d10 100%);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.jp-counter-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-4px);
}

.jp-counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.jp-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.jp-label-sub {
  font-size: 0.75rem;
  color: rgba(255, 215, 0, 0.5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jp-amount {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.4);
}

.jp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 215, 0, 0.5);
}

.jp-play-btn {
  background: var(--grad-gold);
  color: #1a1000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}

.jp-play-btn:hover {
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
  transform: scale(1.05);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border-card);
}

.timeline-item:last-child::before {
  display: none;
}

.tl-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--grad-pink);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.tl-content h4 {
  font-size: 0.95rem;
  color: var(--text-1);
  margin-bottom: 6px;
}

.tl-content p {
  font-size: 0.88rem;
  color: var(--text-3);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   LIVE CASINO PAGE STYLES
   ============================================ */
.live-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.live-stats-row {
  display: flex;
  gap: 24px;
  margin: 20px 0;
}

.live-stat-item {
  text-align: center;
}

.ls-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-1);
  display: block;
}

.ls-lbl {
  font-size: 0.75rem;
  color: var(--text-3);
}

.live-hero-img {
  display: flex;
  justify-content: flex-end;
}

.live-hero-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border-card);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab-panel {
  display: block;
}

.tab-panel[hidden] {
  display: none;
}

.live-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.live-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: all 0.2s;
  position: relative;
}

.live-game-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-3px);
}

.live-game-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-1);
  margin: 6px 0 4px;
}

.live-game-card p {
  font-size: 0.78rem;
  color: var(--text-3);
  margin: 0;
}

.lg-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 68, 68, 0.15);
  color: #ff6666;
}

.lg-badge--gold {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
}

/* ============================================
   AUTH PAGE STYLES (extended)
   ============================================ */
.auth-section {
  min-height: calc(100vh - var(--nav-h) - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.auth-title {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-3);
  margin-bottom: 28px;
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.auth-form label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-link {
  font-size: 0.78rem;
  color: var(--pink-light);
  font-weight: 400;
}

.password-wrap {
  position: relative;
}

.password-wrap .form-input {
  padding-right: 48px;
}

.pw-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 1rem;
  cursor: pointer;
  min-height: 30px;
  min-width: 30px;
}

.form-check .check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 400;
}

.form-check .check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--pink);
  flex-shrink: 0;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.social-logins {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  min-height: 44px;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--border-pink);
  color: var(--text-1);
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-3);
}

.auth-switch a {
  color: var(--pink-light);
  font-weight: 600;
  text-decoration: underline;
}

.reg-bonus-strip {
  background: linear-gradient(135deg, rgba(255, 61, 167, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--text-1);
}

.reg-progress {
  height: 4px;
  background: var(--border-card);
  border-radius: 2px;
  margin-bottom: 24px;
}

.reg-progress-bar {
  height: 100%;
  background: var(--grad-pink);
  border-radius: 2px;
  transition: width 0.4s;
}

/* ============================================
   LEGAL PAGE STYLES
   ============================================ */
.legal-block {
  max-width: 780px;
}

.legal-block h2 {
  font-size: 1.3rem;
  margin: 36px 0 14px;
  color: var(--text-1);
  padding-top: 16px;
  border-top: 1px solid var(--border-card);
}

.legal-block h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-block p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-block ul {
  margin: 8px 0 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-block li {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.65;
}

.legal-block a {
  color: var(--pink-light);
  text-decoration: underline;
}

/* ============================================
   DONUT CHART EXTRAS (used in jackpot page)
   ============================================ */
.donut-wrap {
  position: relative;
  max-width: 220px;
  margin: 0 auto;
}

.donut-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

.donut-legend {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 12px;
  text-align: center;
  line-height: 2.2;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}

/* ============================================
   GOLD TEXT CLASS
   ============================================ */
.gold-text {
  color: var(--gold) !important;
  font-weight: 700;
}

/* ============================================
   TABLE EXTRAS (method/speed coloring)
   ============================================ */
.method-icon {
  margin-right: 8px;
}

.speed-fast {
  color: var(--success) !important;
  font-weight: 600;
}

.speed-mid {
  color: var(--warning) !important;
}

.speed-slow {
  color: var(--text-3) !important;
}

.fee-free {
  color: var(--success) !important;
  font-weight: 600;
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .providers-track,
  .winners-track {
    animation: none;
  }

  .hero-orb {
    animation: none;
  }
}