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

/* Design tokens: see ./css/tokens.css */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, var(--color-primary-a08), transparent);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
}

h1 { font-size: var(--text-5xl); font-weight: 800; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p {
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* === UTILITIES === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title h2 {
  margin-bottom: var(--spacing-md);
}

.section-title p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--color-text-faint);
  font-size: var(--text-md);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
}

.section-title h2 {
  margin-bottom: var(--spacing-md);
}

.section-title p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-faint);
  font-size: var(--text-md);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 9, 15, 0.72);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(6, 9, 15, 0.97);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.02);
  border-bottom-color: rgba(255,255,255,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  gap: var(--spacing-sm);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  min-height: 44px;
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.logo:hover {
  filter: brightness(1.15);
}

.logo span {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo span.logo-text {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--color-text-primary);
  -webkit-text-fill-color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  padding: 10px 16px 10px 10px;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
}

.logo-icon {
  padding: 10px 10px 10px 14px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  padding: 4px;
  flex-shrink: 1;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu a {
  color: var(--color-text-faint);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.nav-menu a.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-a25), rgba(99,160,255,0.15));
  box-shadow: 0 1px 8px var(--color-primary-a20), inset 0 0 0 1px var(--color-primary-a25);
  font-weight: 600;
  border: none;
}

/* === HEADER BONUS BUTTON === */
.header-bonus-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--gradient-cta);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  box-shadow: 0 2px 12px rgba(22, 163, 74, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.header-bonus-btn::before {
  /* Shine animation: see css/components.css */
}

.header-bonus-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.6), inset 0 1px 0 rgba(255,255,255,0.35);
  color: #ffffff;
}

.btn-text-short {
  display: none;
}

@keyframes btnShine {
  0% { left: -100%; }
  40% { left: 120%; }
  100% { left: 120%; }
}

@keyframes bonusPulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(255,255,255,0.05);
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO === */
.hero {
  padding: calc(64px + var(--spacing-4xl)) 0 var(--spacing-4xl);
  background: linear-gradient(165deg, #0a0f1a 0%, #0d1424 40%, #0f1a2e 100%);
  position: relative;
  overflow-x: clip;
}

.hero::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -150px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-primary-a10) 0%, var(--color-primary-a03) 40%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 25s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 30s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: var(--spacing-lg);
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em; padding-right: 0.05em;
  font-weight: 800;
}

.hero-text h1 span {
  display: inline;
}

.hero-text h1 span.gold-text,
.page-hero h1 span.gold-text {
  display: inline-block;
  color: var(--color-primary-light);
  background-image: linear-gradient(135deg, #93c5fd 0%, #60a5fa 45%, #2563eb 100%);
  background-image: var(--gradient-brand-text-alt);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.05em 0.1em;
}

h1 .gold-text,
h2 .gold-text,
h3 .gold-text,
.hero-text h1 .gold-text,
.page-hero h1 .gold-text {
  display: inline-block;
  color: var(--color-primary-light);
  background-image: linear-gradient(135deg, #93c5fd 0%, #60a5fa 45%, #2563eb 100%);
  background-image: var(--gradient-brand-text-alt);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: var(--spacing-xl);
  max-width: 480px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--spacing-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: background 0.25s ease, transform 0.2s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge:hover {
  border-color: rgba(59,130,246,0.35);
  background: linear-gradient(135deg, var(--color-primary-a10), rgba(59,130,246,0.04));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--color-primary-a15);
}

.badge-icon {
  font-size: var(--text-sm);
  filter: saturate(1.3);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: linear-gradient(160deg, rgba(20, 30, 50, 0.85), rgba(12, 18, 32, 0.95));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.06) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 0 40px var(--color-primary-a08);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-success), var(--color-primary), transparent);
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-card-logo {
  padding: 12px 20px;
  background: var(--gradient-btn-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  font-size: var(--text-3xl);
  color: #fff;
  box-shadow: 0 6px 24px rgba(59,130,246,0.35), 0 2px 6px var(--color-primary-a20);
}

.hero-card-info h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
}

.hero-card-info .rating {
  color: rgba(147,197,253,0.9);
  font-size: var(--text-sm);
  margin-top: 4px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.stat-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

@media (max-width: 640px) {
.stat-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 30px 16px 26px;
  background: linear-gradient(165deg, rgba(12, 20, 38, 0.95), rgba(6, 9, 18, 0.98));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6), rgba(16,185,129,0.4), transparent);
  border-radius: 0 0 4px 4px;
}

.stat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.stat-item:hover {
  border-color: var(--color-primary-a40);
  background: linear-gradient(165deg, rgba(59,130,246,0.12), rgba(16,185,129,0.04));
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 40px var(--color-primary-a10);
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary-soft) 20%, #6ee7b7 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: -0.04em; padding-right: 0.1em;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: none;
}

.stat-label {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  margin-top: 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--color-primary-a25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-primary-a40);
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px var(--color-primary-a20);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--color-text-primary);
}

.btn-secondary:hover {
  border-color: var(--color-text-faint);
  color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
  color: #fff;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(16,185,129,0.3);
  color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* === EXPLORE CARDS === */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 680px) {
.explore-grid {
    grid-template-columns: 1fr;
  }
}

.explore-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 32px 26px 26px;
  background: linear-gradient(165deg, rgba(12, 20, 38, 0.85) 0%, rgba(6, 9, 18, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.explore-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.explore-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -30%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.explore-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 28px 64px rgba(0,0,0,0.45), 0 0 50px var(--color-primary-a03);
  border-color: rgba(255,255,255,0.14);
}

.explore-card:hover::before {
  opacity: 1;
}

.explore-card:hover::after {
  opacity: 0.5;
}

.explore-card--amber::before { background: linear-gradient(135deg, rgba(245,158,11,0.08), transparent 60%); }
.explore-card--amber::after  { background: var(--color-warning); }
.explore-card--blue::before  { background: linear-gradient(135deg, var(--color-primary-a08), transparent 60%); }
.explore-card--blue::after   { background: var(--color-primary); }
.explore-card--green::before { background: linear-gradient(135deg, rgba(16,185,129,0.08), transparent 60%); }
.explore-card--green::after  { background: var(--color-success); }

.explore-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid transparent;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}

.explore-card:hover .explore-card__icon {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.explore-card--amber .explore-card__icon {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--color-warning);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.1);
}

.explore-card--blue .explore-card__icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--color-primary-a25);
  color: var(--color-primary);
  box-shadow: 0 4px 16px var(--color-primary-a10);
}

.explore-card--green .explore-card__icon {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--color-success);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.explore-card__body {
  flex: 1;
  min-width: 0;
  margin-bottom: 18px;
}

.explore-card__body h4 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em; padding-right: 0.05em;
}

.explore-card__body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.explore-card__arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.explore-card--amber .explore-card__arrow { color: rgba(245,158,11,0.7); }
.explore-card--blue.explore-card__arrow { color: rgba(59,130,246,0.7); }
.explore-card--green .explore-card__arrow { color: rgba(16,185,129,0.7); }

.explore-card:hover .explore-card__arrow {
  transform: translateX(6px);
}

.explore-card--amber:hover .explore-card__arrow { color: var(--color-warning); }
.explore-card--blue:hover.explore-card__arrow { color: var(--color-primary); }
.explore-card--green:hover .explore-card__arrow { color: var(--color-success); }

/* === CARDS === */
.card {
  background: linear-gradient(170deg, rgba(12, 20, 38, 0.85) 0%, rgba(6, 9, 18, 0.95) 100%);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 50px var(--color-primary-a03);
  border-color: rgba(255,255,255,0.1);
}

.card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
}

/* === LICENSE CARD === */
.license-card {
  padding: 0 !important;
  overflow: hidden;
}

.license-card:hover {
  transform: translateY(-2px);
}

.license-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.license-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success-light);
  flex-shrink: 0;
}

.license-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.license-card-subtitle {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  margin-top: 2px;
  display: block;
}

.license-status-badge {
  margin-left: auto;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--color-success-light);
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 8px;
}

/* RG tools — solid panels (no blur/scale — avoids scroll/hover sparkle) */
#security .rg-tools-grid,
.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  isolation: isolate;
  background: none;
  border: none;
  box-shadow: none;
}

@media (max-width: 540px) {
  #security .rg-tools-grid,
  .rg-tools-grid {
    grid-template-columns: 1fr;
  }
}

#security .rg-tool-item,
.rg-tool-item {
  --rg-accent: #3b82f6;
  --rg-soft: rgba(59,130,246,0.14);
  --rg-border: rgba(59,130,246,0.32);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 16px;
  padding: 20px 18px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 0% 50%, var(--rg-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transform: translateZ(0);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

#security .rg-tool-item::before,
.rg-tool-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, var(--rg-accent), transparent);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

#security .rg-tool-item::after,
.rg-tool-item::after {
  content: none;
  display: none;
}

#security .rg-tool-item:has(.rg-icon-deposit),
.rg-tool-item:has(.rg-icon-deposit) { --rg-accent: #3b82f6; --rg-soft: rgba(59,130,246,0.16); --rg-border: rgba(59,130,246,0.35); }
#security .rg-tool-item:has(.rg-icon-loss),
.rg-tool-item:has(.rg-icon-loss) { --rg-accent: #f87171; --rg-soft: rgba(239,68,68,0.14); --rg-border: rgba(239,68,68,0.32); }
#security .rg-tool-item:has(.rg-icon-session),
.rg-tool-item:has(.rg-icon-session) { --rg-accent: #facc15; --rg-soft: rgba(234,179,8,0.14); --rg-border: rgba(234,179,8,0.32); }
#security .rg-tool-item:has(.rg-icon-exclusion),
.rg-tool-item:has(.rg-icon-exclusion) { --rg-accent: #fb923c; --rg-soft: rgba(249,115,22,0.14); --rg-border: rgba(249,115,22,0.32); }
#security .rg-tool-item:has(.rg-icon-history),
.rg-tool-item:has(.rg-icon-history) { --rg-accent: #34d399; --rg-soft: rgba(16,185,129,0.14); --rg-border: rgba(16,185,129,0.32); }
#security .rg-tool-item:has(.rg-icon-cooloff),
.rg-tool-item:has(.rg-icon-cooloff) { --rg-accent: #818cf8; --rg-soft: rgba(99,102,241,0.14); --rg-border: rgba(99,102,241,0.32); }

#security .rg-tool-item:hover,
.rg-tool-item:hover {
  border-color: var(--rg-border);
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 14px 32px rgba(0,0,0,0.32), 0 0 0 1px var(--rg-soft);
}

#security .rg-tool-icon,
.rg-tool-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rg-accent);
  background: linear-gradient(145deg, var(--rg-soft), rgba(0,0,0,0.15));
  border: 1px solid var(--rg-border);
  box-shadow: none;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s ease;
}

#security .rg-tool-icon::after,
.rg-tool-icon::after {
  display: none;
}

#security .rg-tool-item:hover .rg-tool-icon,
.rg-tool-item:hover .rg-tool-icon {
  transform: none;
  border-color: color-mix(in srgb, var(--rg-accent) 55%, #fff);
  box-shadow: none;
}

.rg-icon-deposit,
.rg-icon-loss,
.rg-icon-session,
.rg-icon-exclusion,
.rg-icon-history,
.rg-icon-cooloff {
  background: linear-gradient(145deg, var(--rg-soft), rgba(0,0,0,0.15));
  border-color: var(--rg-border);
  color: var(--rg-accent);
}

#security .rg-tool-body,
.rg-tool-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

#security .rg-tool-title,
.rg-tool-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0;
}

#security .rg-tool-desc,
.rg-tool-desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: none;
}

.support-channels-card {
  padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl) !important;
}

/* Support channels — solid panels (no blur/filters — avoids scroll/hover sparkle) */
#security .support-channels-grid,
.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  isolation: isolate;
  background: none;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  #security .support-channels-grid,
  .support-channels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  #security .support-channels-grid,
  .support-channels-grid { grid-template-columns: 1fr; }
}

#security .support-channel-item,
.support-channel-item {
  --sc-accent: #3b82f6;
  --sc-soft: rgba(59,130,246,0.14);
  --sc-border: rgba(59,130,246,0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 18px 22px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 50% 0%, var(--sc-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transform: translateZ(0);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

#security .support-channel-item::before,
.support-channel-item::before {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sc-accent), transparent);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

#security .support-channel-item::after,
.support-channel-item::after {
  content: none;
  display: none;
}

#security .support-channel-item:nth-child(1) { --sc-accent: #3b82f6; --sc-soft: rgba(59,130,246,0.16); --sc-border: rgba(59,130,246,0.35); }
#security .support-channel-item:nth-child(2) { --sc-accent: #10b981; --sc-soft: rgba(16,185,129,0.14); --sc-border: rgba(16,185,129,0.32); }
#security .support-channel-item:nth-child(3) { --sc-accent: #38bdf8; --sc-soft: rgba(56,189,248,0.14); --sc-border: rgba(56,189,248,0.32); }
#security .support-channel-item:nth-child(4) { --sc-accent: #f87171; --sc-soft: rgba(239,68,68,0.14); --sc-border: rgba(239,68,68,0.32); }
#security .support-channel-item:nth-child(5) { --sc-accent: #facc15; --sc-soft: rgba(234,179,8,0.14); --sc-border: rgba(234,179,8,0.32); }
#security .support-channel-item:nth-child(6) { --sc-accent: #c084fc; --sc-soft: rgba(168,85,247,0.14); --sc-border: rgba(168,85,247,0.32); }

#security .support-channel-item:hover,
.support-channel-item:hover {
  border-color: var(--sc-border);
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 14px 32px rgba(0,0,0,0.32), 0 0 0 1px var(--sc-soft);
}

#security .support-channel-icon,
.support-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sc-accent);
  background: linear-gradient(145deg, var(--sc-soft), rgba(0,0,0,0.15));
  border: 1px solid var(--sc-border);
  box-shadow: none;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s ease;
}

#security .support-channel-item:hover .support-channel-icon,
.support-channel-item:hover .support-channel-icon {
  transform: none;
  border-color: color-mix(in srgb, var(--sc-accent) 55%, #fff);
  box-shadow: none;
}

.live-chat-icon,
.email-icon,
.telegram-icon,
.phone-icon,
.lang-icon,
.social-icon {
  background: linear-gradient(145deg, var(--sc-soft), rgba(0,0,0,0.15));
  border-color: var(--sc-border);
  color: var(--sc-accent);
}

#security .support-channel-body,
.support-channel-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

#security .support-channel-label,
.support-channel-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

#security .support-channel-desc,
.support-channel-desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 220px;
  opacity: 1;
}

#security .support-channel-badge,
.support-channel-badge {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s ease, background 0.25s ease;
}

#security .support-channel-item:hover .support-channel-badge,
.support-channel-item:hover .support-channel-badge {
  transform: none;
}

.badge-available {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.28);
  color: #6ee7b7;
  box-shadow: none;
}
.badge-unavailable {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.28);
  color: #fca5a5;
  box-shadow: none;
}
.badge-multilang {
  background: rgba(234,179,8,0.12);
  border: 1px solid rgba(234,179,8,0.28);
  color: #fde047;
  box-shadow: none;
}

.license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.license-item {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s ease;
}

.license-item:nth-child(2n) {
  border-right: none;
}

.license-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.license-item:hover {
  background: var(--color-primary-a03);
}

.license-item-label {
  display: block;
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.license-item-value {
  display: block;
  font-size: var(--text-md);
  font-weight: 600;
  color: #fff;
}

.license-item-active {
  color: var(--color-success-light);
}

@media (max-width: 480px) {
.license-grid {
    grid-template-columns: 1fr;
  }
.license-item {
    border-right: none;
  }
.license-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
.license-item:last-child {
    border-bottom: none;
  }
}

/* === PROVIDERS CARD === */
.providers-card {
  padding: 0 !important;
}

.providers-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.providers-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary-a10);
  border: 1px solid var(--color-primary-a20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.providers-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.providers-subtitle {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  margin-top: 2px;
  display: block;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.03);
  position: relative;
  z-index: 1;
}

.provider-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  background: rgba(15, 20, 35, 0.6);
  transition: all 0.3s ease;
  text-align: center;
}

.provider-chip:hover {
  background: rgba(59,130,246,0.05);
}

.provider-chip-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.provider-chip-count {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  padding: 3px 10px;
  border-radius: 20px;
}

.provider-chip--featured {
  background: rgba(59,130,246,0.04);
}

.provider-chip-tag {
  font-size: var(--text-2xs);
  font-weight: 700;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--color-primary-a10);
  border: 1px solid var(--color-primary-a20);
  padding: 3px 10px;
  border-radius: 6px;
}

/* Game Categories List */
.game-categories-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-cat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(160deg, rgba(15,23,42,0.9), rgba(8,12,28,0.95));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.2,0,0,1);
  position: relative;
  overflow: hidden;
}

.game-cat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0%;
  background: linear-gradient(180deg, var(--color-primary), var(--color-success));
  border-radius: 0 3px 3px 0;
  transition: height 0.3s ease;
}

.game-cat-item:hover::before {
  height: 60%;
}

.game-cat-item:hover {
  border-color: var(--color-primary-a25);
  background: linear-gradient(160deg, var(--color-primary-a06), rgba(16,185,129,0.03));
  transform: translateX(4px);
}

.game-cat-icon {
  font-size: var(--text-3xl);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  flex-shrink: 0;
}

.game-cat-content {
  flex: 1;
  min-width: 0;
}

.game-cat-content > strong {
  display: block;
  font-size: var(--text-md);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.game-cat-content span {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  line-height: 1.4;
  display: block;
}

.game-cat-count {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #6ee7b7;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.15);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Section CTA Link */
.section-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: var(--spacing-lg);
  padding: 14px 28px 14px 24px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2,0,0,1);
  position: relative;
  overflow: hidden;
}

.section-cta-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(16,185,129,0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 100px;
}

.section-cta-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20%;
  width: 40%;
  height: 200%;
  transform: translateY(-50%) rotate(15deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transition: left 0.5s ease;
}

.section-cta-link:hover::after {
  left: 120%;
}

.section-cta-link:hover::before {
  opacity: 1;
}

.section-cta-link:hover {
  color: #fff;
  border-color: rgba(59,130,246,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.12), 0 2px 8px rgba(0,0,0,0.3);
}

.section-cta-link .cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-primary-a25), rgba(16,185,129,0.2));
  border-radius: 50%;
  font-size: var(--text-2xs);
  transition: transform 0.35s cubic-bezier(0.2,0,0,1), background 0.35s ease;
}

.section-cta-link:hover .cta-arrow {
  transform: translateX(4px);
  background: linear-gradient(135deg, rgba(59,130,246,0.45), rgba(16,185,129,0.35));
}

@media (max-width: 560px) {
.providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--spacing-lg);
}

.card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em; padding-right: 0.05em;
}

.card p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-faint);
  margin-bottom: var(--spacing-md);
}

.card a {
  color: rgba(147, 197, 253, 0.9);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.2s ease;
}

.card a:hover {
  color: #fff;
}

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

/* === RATING === */
.rating-display {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.stars {
  color: var(--color-warning);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-number {
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-primary-light);
}

/* === PROS & CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  align-items: stretch;
}

/* Pros & Cons / Bonus advantages — refreshed comparison cards */
#pros-cons .pros-cons-grid,
#bonuses .pros-cons-grid,
#payments .pros-cons-grid,
#mobile .pros-cons-grid {
  gap: 20px;
  margin-bottom: 0;
}
#bonuses .pros-cons-grid,
#payments .pros-cons-grid,
#mobile .pros-cons-grid {
  margin-bottom: var(--spacing-md);
}
#pros-cons .pros-cons-grid .comparison-col,
#bonuses .pros-cons-grid .comparison-col,
#payments .pros-cons-grid .comparison-col,
#mobile .pros-cons-grid .comparison-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(16,185,129,0.1) 0%, transparent 52%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  overflow: hidden;
}
#pros-cons .pros-cons-grid .comparison-col.pros,
#bonuses .pros-cons-grid .comparison-col.pros,
#payments .pros-cons-grid .comparison-col.pros,
#mobile .pros-cons-grid .comparison-col.pros {
  border-color: rgba(16,185,129,0.28);
}
#pros-cons .pros-cons-grid .comparison-col.pros::before,
#bonuses .pros-cons-grid .comparison-col.pros::before,
#payments .pros-cons-grid .comparison-col.pros::before,
#mobile .pros-cons-grid .comparison-col.pros::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52,211,153,0.9), transparent);
}
#pros-cons .pros-cons-grid .comparison-col.pros:hover,
#bonuses .pros-cons-grid .comparison-col.pros:hover,
#payments .pros-cons-grid .comparison-col.pros:hover,
#mobile .pros-cons-grid .comparison-col.pros:hover {
  border-color: rgba(16,185,129,0.45);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 40px rgba(16,185,129,0.1);
}
#pros-cons .pros-cons-grid .comparison-col.cons,
#bonuses .pros-cons-grid .comparison-col.cons,
#payments .pros-cons-grid .comparison-col.cons,
#mobile .pros-cons-grid .comparison-col.cons {
  border-color: rgba(239,68,68,0.28);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(239,68,68,0.12) 0%, transparent 52%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
}
#pros-cons .pros-cons-grid .comparison-col.cons::before,
#bonuses .pros-cons-grid .comparison-col.cons::before,
#payments .pros-cons-grid .comparison-col.cons::before,
#mobile .pros-cons-grid .comparison-col.cons::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(248,113,113,0.9), transparent);
}
#pros-cons .pros-cons-grid .comparison-col.cons .comparison-col-header,
#bonuses .pros-cons-grid .comparison-col.cons .comparison-col-header,
#payments .pros-cons-grid .comparison-col.cons .comparison-col-header,
#mobile .pros-cons-grid .comparison-col.cons .comparison-col-header {
  background: linear-gradient(135deg, rgba(239,68,68,0.14) 0%, rgba(239,68,68,0.02) 100%);
}
#pros-cons .pros-cons-grid .comparison-col.cons .comparison-col-icon,
#bonuses .pros-cons-grid .comparison-col.cons .comparison-col-icon,
#payments .pros-cons-grid .comparison-col.cons .comparison-col-icon,
#mobile .pros-cons-grid .comparison-col.cons .comparison-col-icon {
  background: linear-gradient(135deg, rgba(239,68,68,0.32), rgba(185,28,28,0.12));
  border: 1px solid rgba(248,113,113,0.42);
  color: #fca5a5;
  box-shadow: 0 4px 16px rgba(239,68,68,0.2), inset 0 1px 0 rgba(248,113,113,0.22);
}
#pros-cons .pros-cons-grid .comparison-col.cons h4,
#bonuses .pros-cons-grid .comparison-col.cons h4,
#payments .pros-cons-grid .comparison-col.cons h4,
#mobile .pros-cons-grid .comparison-col.cons h4 {
  color: #fff1f2;
}
#pros-cons .pros-cons-grid .comparison-col.cons h4 small,
#bonuses .pros-cons-grid .comparison-col.cons h4 small,
#payments .pros-cons-grid .comparison-col.cons h4 small,
#mobile .pros-cons-grid .comparison-col.cons h4 small {
  color: rgba(252,165,165,0.72);
}
#pros-cons .pros-cons-grid .comparison-col.cons:hover,
#bonuses .pros-cons-grid .comparison-col.cons:hover,
#payments .pros-cons-grid .comparison-col.cons:hover,
#mobile .pros-cons-grid .comparison-col.cons:hover {
  border-color: rgba(239,68,68,0.45);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 40px rgba(239,68,68,0.1);
}
#pros-cons .pros-cons-grid .comparison-col-header,
#bonuses .pros-cons-grid .comparison-col-header,
#payments .pros-cons-grid .comparison-col-header,
#mobile .pros-cons-grid .comparison-col-header {
  padding: 20px 22px 18px;
}
#pros-cons .pros-cons-grid .comparison-col-icon,
#bonuses .pros-cons-grid .comparison-col-icon,
#payments .pros-cons-grid .comparison-col-icon,
#mobile .pros-cons-grid .comparison-col-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}
#pros-cons .pros-cons-grid .comparison-col h4,
#bonuses .pros-cons-grid .comparison-col h4,
#payments .pros-cons-grid .comparison-col h4,
#mobile .pros-cons-grid .comparison-col h4 {
  font-size: 1.15rem;
}
/* Kill review-section list bullets that override comparison markers */
#pros-cons .pros-cons-grid .comparison-col ul,
#bonuses .pros-cons-grid .comparison-col ul,
#payments .pros-cons-grid .comparison-col ul,
#mobile .pros-cons-grid .comparison-col ul {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 8px 0 10px;
}
#pros-cons .pros-cons-grid .comparison-col ul li,
#bonuses .pros-cons-grid .comparison-col ul li,
#payments .pros-cons-grid .comparison-col ul li,
#mobile .pros-cons-grid .comparison-col ul li {
  margin: 0;
  padding: 12px 22px 12px 56px;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
#pros-cons .pros-cons-grid .comparison-col ul li:last-child,
#bonuses .pros-cons-grid .comparison-col ul li:last-child,
#payments .pros-cons-grid .comparison-col ul li:last-child,
#mobile .pros-cons-grid .comparison-col ul li:last-child {
  border-bottom: none;
  padding-bottom: 18px;
}
#pros-cons .pros-cons-grid .comparison-col ul li:hover,
#bonuses .pros-cons-grid .comparison-col ul li:hover,
#payments .pros-cons-grid .comparison-col ul li:hover,
#mobile .pros-cons-grid .comparison-col ul li:hover {
  color: rgba(255,255,255,0.96);
  background: rgba(255,255,255,0.03);
}
#pros-cons .pros-cons-grid .comparison-col ul li::before,
#bonuses .pros-cons-grid .comparison-col ul li::before,
#payments .pros-cons-grid .comparison-col ul li::before,
#mobile .pros-cons-grid .comparison-col ul li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: none;
}
#pros-cons .pros-cons-grid .comparison-col.pros ul li::before,
#bonuses .pros-cons-grid .comparison-col.pros ul li::before,
#payments .pros-cons-grid .comparison-col.pros ul li::before,
#mobile .pros-cons-grid .comparison-col.pros ul li::before {
  background-color: rgba(52,211,153,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpolyline points='2.5,7 6,10.5 11.5,3.5' fill='none' stroke='%2334d399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  border: 1px solid rgba(52,211,153,0.28);
}
#pros-cons .pros-cons-grid .comparison-col.pros ul li:hover::before,
#bonuses .pros-cons-grid .comparison-col.pros ul li:hover::before,
#payments .pros-cons-grid .comparison-col.pros ul li:hover::before,
#mobile .pros-cons-grid .comparison-col.pros ul li:hover::before {
  background-color: rgba(52,211,153,0.24);
  border-color: rgba(52,211,153,0.45);
}
#pros-cons .pros-cons-grid .comparison-col.cons ul li::before,
#bonuses .pros-cons-grid .comparison-col.cons ul li::before,
#payments .pros-cons-grid .comparison-col.cons ul li::before,
#mobile .pros-cons-grid .comparison-col.cons ul li::before {
  background-color: rgba(239,68,68,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cline x1='3.5' y1='3.5' x2='10.5' y2='10.5' stroke='%23f87171' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='10.5' y1='3.5' x2='3.5' y2='10.5' stroke='%23f87171' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  border: 1px solid rgba(248,113,113,0.3);
}
#pros-cons .pros-cons-grid .comparison-col.cons ul li:hover::before,
#bonuses .pros-cons-grid .comparison-col.cons ul li:hover::before,
#payments .pros-cons-grid .comparison-col.cons ul li:hover::before,
#mobile .pros-cons-grid .comparison-col.cons ul li:hover::before {
  background-color: rgba(239,68,68,0.24);
  border-color: rgba(248,113,113,0.48);
}
/* Keep 2 columns on tablets; stack only on phones */
@media (max-width: 560px) {#pros-cons .pros-cons-grid, #bonuses .pros-cons-grid, #payments .pros-cons-grid, #mobile .pros-cons-grid, #compare-1win .pros-cons-grid, #compare-stake .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 561px) and (max-width: 1024px) {#pros-cons .pros-cons-grid, #bonuses .pros-cons-grid, #payments .pros-cons-grid, #mobile .pros-cons-grid, #compare-1win .pros-cons-grid, #compare-stake .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }#pros-cons .pros-cons-grid .comparison-col-header, #bonuses .pros-cons-grid .comparison-col-header, #payments .pros-cons-grid .comparison-col-header, #mobile .pros-cons-grid .comparison-col-header, #compare-1win .pros-cons-grid .comparison-col-header, #compare-stake .pros-cons-grid .comparison-col-header {
    padding: 16px 14px 14px;
  }#pros-cons .pros-cons-grid .comparison-col ul li, #bonuses .pros-cons-grid .comparison-col ul li, #payments .pros-cons-grid .comparison-col ul li, #mobile .pros-cons-grid .comparison-col ul li, #compare-1win .pros-cons-grid .comparison-col ul li, #compare-stake .pros-cons-grid .comparison-col ul li {
    padding: 10px 14px 10px 48px;
    font-size: 0.82rem;
  }#pros-cons .pros-cons-grid .comparison-col ul li::before, #bonuses .pros-cons-grid .comparison-col ul li::before, #payments .pros-cons-grid .comparison-col ul li::before, #mobile .pros-cons-grid .comparison-col ul li::before, #compare-1win .pros-cons-grid .comparison-col ul li::before, #compare-stake .pros-cons-grid .comparison-col ul li::before {
    left: 14px;
  }
}

/* Brand vs 1win / 1win vs Stake chooser — 2 cols (≥561px), 1 col phones */
#compare-1win .pros-cons-grid,
#compare-stake .pros-cons-grid {
  gap: 20px;
  margin-bottom: var(--spacing-lg);
  align-items: stretch;
}#compare-1win .pros-cons-grid .comparison-col, #compare-stake .pros-cons-grid .comparison-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(59,130,246,0.12) 0%, transparent 52%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  overflow: hidden;
}#compare-1win .pros-cons-grid .comparison-col.pros, #compare-stake .pros-cons-grid .comparison-col.pros {
  border-color: rgba(59,130,246,0.3);
}#compare-1win .pros-cons-grid .comparison-col.pros::before, #compare-stake .pros-cons-grid .comparison-col.pros::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.9), transparent);
}#compare-1win .pros-cons-grid .comparison-col.pros .comparison-col-header, #compare-stake .pros-cons-grid .comparison-col.pros .comparison-col-header {
  background: linear-gradient(135deg, rgba(59,130,246,0.14) 0%, rgba(59,130,246,0.02) 100%);
}#compare-1win .pros-cons-grid .comparison-col.pros .comparison-col-icon, #compare-stake .pros-cons-grid .comparison-col.pros .comparison-col-icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.32), rgba(37,99,235,0.12));
  border: 1px solid rgba(96,165,250,0.42);
  color: #93c5fd;
  box-shadow: 0 4px 16px rgba(59,130,246,0.2), inset 0 1px 0 rgba(147,197,253,0.2);
}#compare-1win .pros-cons-grid .comparison-col.pros h4, #compare-stake .pros-cons-grid .comparison-col.pros h4 {
  color: #eff6ff;
}#compare-1win .pros-cons-grid .comparison-col.pros h4 small, #compare-stake .pros-cons-grid .comparison-col.pros h4 small {
  color: rgba(147,197,253,0.7);
}#compare-1win .pros-cons-grid .comparison-col.pros:hover, #compare-stake .pros-cons-grid .comparison-col.pros:hover {
  border-color: rgba(59,130,246,0.48);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 40px rgba(59,130,246,0.1);
}#compare-1win .pros-cons-grid .comparison-col.cons, #compare-stake .pros-cons-grid .comparison-col.cons {
  border-color: rgba(245,158,11,0.3);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(245,158,11,0.12) 0%, transparent 52%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
}#compare-1win .pros-cons-grid .comparison-col.cons::before, #compare-stake .pros-cons-grid .comparison-col.cons::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251,191,36,0.9), transparent);
}#compare-1win .pros-cons-grid .comparison-col.cons .comparison-col-header, #compare-stake .pros-cons-grid .comparison-col.cons .comparison-col-header {
  background: linear-gradient(135deg, rgba(245,158,11,0.14) 0%, rgba(245,158,11,0.02) 100%);
}#compare-1win .pros-cons-grid .comparison-col.cons .comparison-col-icon, #compare-stake .pros-cons-grid .comparison-col.cons .comparison-col-icon {
  background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(217,119,6,0.12));
  border: 1px solid rgba(251,191,36,0.42);
  color: #fbbf24;
  box-shadow: 0 4px 16px rgba(245,158,11,0.2), inset 0 1px 0 rgba(251,191,36,0.2);
}#compare-1win .pros-cons-grid .comparison-col.cons h4, #compare-stake .pros-cons-grid .comparison-col.cons h4 {
  color: #fffbeb;
}#compare-1win .pros-cons-grid .comparison-col.cons h4 small, #compare-stake .pros-cons-grid .comparison-col.cons h4 small {
  color: rgba(251,191,36,0.7);
}#compare-1win .pros-cons-grid .comparison-col.cons:hover, #compare-stake .pros-cons-grid .comparison-col.cons:hover {
  border-color: rgba(245,158,11,0.48);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 40px rgba(245,158,11,0.1);
}#compare-1win .pros-cons-grid .comparison-col-header, #compare-stake .pros-cons-grid .comparison-col-header {
  padding: 20px 22px 18px;
}#compare-1win .pros-cons-grid .comparison-col-icon, #compare-stake .pros-cons-grid .comparison-col-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}#compare-1win .pros-cons-grid .comparison-col h4, #compare-stake .pros-cons-grid .comparison-col h4 {
  font-size: 1.1rem;
}#compare-1win .pros-cons-grid .comparison-col ul, #compare-stake .pros-cons-grid .comparison-col ul {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 8px 0 10px;
}#compare-1win .pros-cons-grid .comparison-col ul li, #compare-stake .pros-cons-grid .comparison-col ul li {
  margin: 0;
  padding: 12px 22px 12px 56px;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}#compare-1win .pros-cons-grid .comparison-col ul li:last-child, #compare-stake .pros-cons-grid .comparison-col ul li:last-child {
  border-bottom: none;
  padding-bottom: 18px;
}#compare-1win .pros-cons-grid .comparison-col ul li:hover, #compare-stake .pros-cons-grid .comparison-col ul li:hover {
  color: rgba(255,255,255,0.96);
  background: rgba(255,255,255,0.03);
}#compare-1win .pros-cons-grid .comparison-col ul li::before, #compare-stake .pros-cons-grid .comparison-col ul li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: none;
}#compare-1win .pros-cons-grid .comparison-col.pros ul li::before, #compare-stake .pros-cons-grid .comparison-col.pros ul li::before {
  background-color: rgba(59,130,246,0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpolyline points='2.5,7 6,10.5 11.5,3.5' fill='none' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  border: 1px solid rgba(96,165,250,0.3);
}#compare-1win .pros-cons-grid .comparison-col.pros ul li:hover::before, #compare-stake .pros-cons-grid .comparison-col.pros ul li:hover::before {
  background-color: rgba(59,130,246,0.26);
  border-color: rgba(96,165,250,0.5);
}#compare-1win .pros-cons-grid .comparison-col.cons ul li::before, #compare-stake .pros-cons-grid .comparison-col.cons ul li::before {
  background-color: rgba(245,158,11,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpolygon points='7,2 8.6,5.4 12.4,5.8 9.5,8.3 10.3,12 7,10.1 3.7,12 4.5,8.3 1.6,5.8 5.4,5.4' fill='%23fbbf24'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  border: 1px solid rgba(251,191,36,0.3);
}#compare-1win .pros-cons-grid .comparison-col.cons ul li:hover::before, #compare-stake .pros-cons-grid .comparison-col.cons ul li:hover::before {
  background-color: rgba(245,158,11,0.24);
  border-color: rgba(251,191,36,0.5);
}

/* Compare chooser only: 2 cards/row desktop+tablet, 1 card/row phones */
@media (min-width: 561px) {
  #compare-1win .pros-cons-grid,
  #compare-stake .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  #compare-1win .pros-cons-grid,
  #compare-stake .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

.pros-list, .cons-list {
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.pros-list {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cons-list {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-list h3 {
  color: var(--color-success);
  margin-bottom: var(--spacing-md);
}

.cons-list h3 {
  color: var(--color-error);
  margin-bottom: var(--spacing-md);
}

.pros-list li, .cons-list li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--color-text-secondary);
  font-size: var(--text-md);
}

.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.cons-list li::before {
  content: '-';
  position: absolute;
  left: 4px;
  color: var(--color-error);
  font-weight: 700;
}

/* === TABLES === */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
}

/* Under a card header: square top corners, keep bottom rounding */
.card > div + .info-table {
  border-radius: 0 0 16px 16px;
}

.card > div + .info-table tr:first-child th,
.card > div + .info-table tr:first-child td {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.info-table th,
.info-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-table th {
  background: linear-gradient(135deg, var(--color-primary-a15), var(--color-primary-a06));
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
  position: relative;
}

.info-table th::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(59,130,246,0.12);
}

.info-table td {
  background: rgba(8, 12, 24, 0.55);
  color: rgba(226, 232, 240, 0.88);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
  border-left: 2px solid transparent;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td {
  background: rgba(59, 130, 246, 0.08);
  color: #ffffff;
  border-left-color: rgba(96, 165, 250, 0.65);
}

.info-table tr:hover th {
  color: #ffffff;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(59, 130, 246, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(16, 185, 129, 0.05), transparent 50%),
    linear-gradient(170deg, rgba(12, 20, 38, 0.92) 0%, rgba(6, 9, 18, 0.97) 100%);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.table-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, #60a5fa, var(--color-primary), #34d399);
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.table-wrapper:hover {
  border-color: rgba(59,130,246,0.18);
  box-shadow:
    0 20px 56px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 0 40px var(--color-primary-a03);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
.info-table,
.info-table tbody,
.info-table tr,
.info-table th,
.info-table td {
    display: block;
    width: 100%;
  }

.info-table {
    border-radius: 0;
  }

.info-table thead {
    display: none;
  }

.info-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

.info-table tr:last-child {
    border-bottom: none;
  }

.info-table th {
    background: none;
    padding: 0;
    font-size: var(--text-2xs);
    color: var(--color-text-faint);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

.info-table th::after {
    display: none;
  }

.info-table td {
    background: transparent;
    padding: 0;
    border-left: none;
    color: rgba(241, 245, 249, 0.95);
  }

.info-table tr:hover td,
.info-table tr:hover th {
    background: transparent;
    border-left-color: transparent;
  }

.table-wrapper {
    border-radius: 16px;
  }

.table-wrapper::before {
    display: none;
  }

.table-wrapper:hover {
    transform: none;
  }

  /* Payments deposit/withdrawal tables — mobile cards */
  #payments .table-wrapper:has(.info-table) {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
  }
  #payments .table-wrapper:has(.info-table)::before {
    display: none;
  }
  #payments .info-table,
  #payments .info-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  #payments .info-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px !important;
    overflow: hidden;
    clip-path: inset(0 round 16px);
    -webkit-clip-path: inset(0 round 16px);
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59,130,246,0.1) 0%, transparent 55%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.95) 0%, rgba(8, 12, 24, 0.98) 100%);
    background-clip: padding-box;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  }
  #payments .info-table tbody tr:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  #payments .info-table tbody tr:hover td,
  #payments .info-table tbody tr:hover th {
    background: rgba(255,255,255,0.045);
    border-left-color: transparent;
    color: inherit;
  }
  #payments .info-table tbody tr:hover td:first-child {
    background: transparent;
  }
  #payments .info-table tbody tr:hover {
    border-color: rgba(59,130,246,0.28);
  }
  #payments .info-table tbody td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
  }
  #payments .info-table tbody td::before {
    content: attr(data-label);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.88);
  }
  #payments .info-table tbody td:first-child {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0 0 10px;
    margin-bottom: 2px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #f8fafc;
  }
  #payments .info-table tbody td:first-child::before {
    content: none;
  }
  #payments .info-table tbody td:first-child .pay-method {
    width: 100%;
    gap: 12px;
  }
  #payments .info-table tbody td:first-child .pay-method-icon {
    width: 32px;
    height: 32px;
  }
  #payments .info-table tbody td:first-child .pay-method-icon img,
  #payments .info-table tbody td:first-child .pay-method-icon svg {
    width: 32px !important;
    height: 32px !important;
  }
  #payments .info-table tbody td:first-child .pay-method-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  #payments .info-table tbody td:last-child {
    grid-column: 1 / -1;
  }
  #payments .info-table tbody td:last-child::before {
    color: rgba(96, 165, 250, 0.85);
  }

  #bonuses .card {
    border-radius: 14px;
  }

  /* Deposit/header cards only — do not target .card-icon promo tiles */
  #bonuses .card > div:first-child:not(.card-icon) {
    padding: 14px 16px !important;
    gap: 10px !important;
  }

  #bonuses .card > div:first-child:not(.card-icon) > div:first-child {
    width: 30px !important;
    height: 30px !important;
  }

  #bonuses .card > div:first-child:not(.card-icon) h4 {
    font-size: var(--text-sm) !important;
  }

  #bonuses .card > div:last-child {
    padding: 8px 10px !important;
  }
}

/* === PAYMENTS TABLE === */
.payments-table thead th {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.04));
  color: var(--color-text-faint);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(16,185,129,0.1);
}

.payments-table thead th::after {
  background: rgba(16,185,129,0.15);
}

.payments-table tbody th {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.payments-table tbody td {
  font-weight: 500;
}

.payments-table tbody tr:hover th {
  color: var(--color-success);
}

@media (max-width: 640px) {
.payments-table,
.payments-table thead,
.payments-table tbody,
.payments-table tr,
.payments-table th,
.payments-table td {
    display: block;
    width: 100%;
  }

.payments-table thead {
    display: none;
  }

.payments-table tbody tr {
    padding: 16px;
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    background: rgba(10, 14, 28, 0.4);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.payments-table tbody tr:last-child {
    margin-bottom: 0;
  }

.payments-table tbody tr:hover {
    border-color: rgba(16,185,129,0.15);
    background: rgba(16,185,129,0.03);
  }

.payments-table tbody th {
    background: none;
    padding: 0;
    font-size: var(--text-md);
    font-weight: 700;
    color: #ffffff;
    border-bottom: none;
  }

.payments-table tbody th::after {
    display: none;
  }

.payments-table tbody td {
    background: none;
    padding: 0;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.payments-table tbody td::before {
    content: attr(data-label);
    font-size: var(--text-2xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-faint);
  }

  #payments .card > div:first-child:not(.card-icon) {
    padding: 14px 16px !important;
    gap: 10px !important;
  }

  #payments .card > div:first-child:not(.card-icon) > div:first-child {
    width: 30px !important;
    height: 30px !important;
  }

  #payments .card > div:first-child:not(.card-icon) h4 {
    font-size: var(--text-sm) !important;
  }

  #payments .card > div:last-child {
    padding: 12px !important;
  }
}

/* === SPORT CARDS === */
.sport-card {
  background: linear-gradient(165deg, rgba(12, 20, 38, 0.85) 0%, rgba(6, 9, 18, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 22px;
  padding: 32px 20px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.sport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: opacity 0.35s ease;
}

.sport-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse at 50% -20%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.sport-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 50px rgba(59,130,246,0.04);
}

.sport-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
}

.sport-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}

.sport-card:hover .sport-card-icon {
  transform: scale(1.15) rotate(3deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.sport-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.sport-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  margin-bottom: 14px;
  line-height: 1.5;
}

.sport-card-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
.sports-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

.sport-card {
    padding: 20px 12px 16px;
    border-radius: 16px;
  }

.sport-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

.sport-card-icon span {
    font-size: 1.3rem !important;
  }

.sport-card-title {
    font-size: var(--text-sm);
  }

.sport-card-desc {
    font-size: var(--text-2xs);
    margin-bottom: 10px;
  }

.sport-card-tag {
    font-size: var(--text-2xs);
    padding: 3px 8px;
  }
}

/* === CTA SECTION === */
.cta-section {
  border-radius: var(--radius-xl);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #080e1e 0%, #0b1428 40%, #091222 70%, #060c1a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  isolation: isolate;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.cta-section-inner {
  padding: var(--spacing-4xl) var(--spacing-3xl);
  position: relative;
  z-index: 2;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.cta-orb-left {
  position: absolute;
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, rgba(59,130,246,0.04) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: ctaOrbPulse 7s ease-in-out infinite alternate;
}
.cta-orb-right {
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(16,185,129,0.03) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: ctaOrbPulse 9s ease-in-out infinite alternate-reverse;
}
.cta-orb-top {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, var(--color-primary-a10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: ctaOrbPulse 5s ease-in-out infinite alternate;
}
@keyframes ctaOrbPulse {
  0% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  100% { opacity: 1; transform: translateY(-50%) scale(1.12); }
}
.cta-glow-line {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6) 30%, rgba(16,185,129,0.5) 70%, transparent);
  z-index: 2;
}
.cta-glow-line-bottom {
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-a20) 50%, transparent);
  z-index: 2;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-a15), rgba(59,130,246,0.05));
  border: 1px solid var(--color-primary-a25);
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary-soft);
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px var(--color-primary-a10);
}
.cta-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(16,185,129,0.7);
  animation: ctaDotPulse 2s ease-in-out infinite;
}
@keyframes ctaDotPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
.cta-section .cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2;
}
.cta-headline strong {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-soft) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.cta-subtext {
  margin: 0 auto var(--spacing-2xl);
  max-width: 500px;
  font-size: var(--text-lg);
  color: var(--color-text-faint);
  line-height: 1.75;
  position: relative;
  z-index: 2;
}
.cta-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: var(--gradient-btn-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-md);
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px var(--color-primary-a40), 0 0 0 1px var(--color-primary-a30), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.cta-btn-main::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}

.cta-btn-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.cta-btn-main:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(59,130,246,0.55), 0 0 0 1px var(--color-primary-a40), inset 0 1px 0 rgba(255,255,255,0.25);
  filter: brightness(1.06);
  color: #fff;
}

.cta-btn-main:hover::after {
  transform: translateX(100%);
}

.cta-btn-main svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text-faint);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  white-space: nowrap;
}

.cta-btn-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}
.cta-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cta-feature-chip:hover { border-color: var(--color-primary-a25); color: var(--color-text-faint); }
.cta-feature-chip-icon { color: var(--color-success); font-size: var(--text-sm); }
@media (max-width: 768px) {
.cta-section-inner { padding: var(--spacing-2xl) var(--spacing-lg); }
.cta-orb-left, .cta-orb-right { display: none; }
.cta-headline { font-size: clamp(1.6rem, 6vw, 2.2rem); }
.cta-btn-main, .cta-btn-secondary { padding: 14px 28px; font-size: var(--text-sm); }
}

/* === FOOTER === */
.site-footer {
  background: #030509;
  border-top: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(59,130,246,0.35) 30%, rgba(16,185,129,0.2) 50%, rgba(59,130,246,0.35) 70%, transparent 95%);
}

.site-footer .container {
  padding-top: 72px;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer-brand .logo {
  display: inline-flex;
  align-items: stretch;
  align-self: flex-start;
  width: fit-content;
  gap: 0;
  min-height: 44px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 320px;
  color: var(--color-text-faint);
  font-weight: 400;
}

.footer-stats {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: all 0.25s ease;
  flex: 1;
  position: relative;
}

.footer-stat:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--color-primary-a20);
  transform: translateY(-1px);
}

.footer-stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-stat strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.footer-stat span {
  font-size: var(--text-2xs);
  color: rgba(148,163,184,0.6);
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-links h4 {
  font-size: var(--text-2xs);
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em;
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.footer-badge {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.footer-badge:hover {
  border-color: var(--color-primary-a30);
  color: rgba(255,255,255,0.7);
}

/* === RESPONSIBLE GAMBLING BANNER === */
.rg-banner {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  margin: var(--spacing-2xl) 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.rg-banner-icon {
  font-size: var(--text-3xl);
  flex-shrink: 0;
}

.rg-banner p {
  font-size: var(--text-sm);
}

.rg-banner a {
  font-weight: 600;
}

/* === PAGE HERO === */
.page-hero {
  padding: calc(72px + var(--spacing-2xl)) 0 var(--spacing-2xl);
  background:
    linear-gradient(155deg, rgba(30, 58, 110, 0.22) 0%, transparent 42%),
    linear-gradient(180deg, rgba(14, 22, 40, 0.96) 0%, rgba(8, 12, 22, 0.98) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  display: none;
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, rgba(59,130,246,0.04) 35%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 20s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.03); }
}

.page-hero::after {
  display: none;
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.page-hero h1 {
  margin-bottom: var(--spacing-md);
  position: relative;
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  line-height: 1.15;
}

.page-hero p {
  position: relative;
  font-size: 0.92rem;
  line-height: 1.65;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--color-primary-a08);
  border: 1px solid var(--color-primary-a20);
  border-radius: var(--radius-full);
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary-light);
  margin-bottom: var(--spacing-lg);
  position: relative;
}
.page-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: eyebrowPulse 2s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.page-hero-chips {
  border: none;
  outline: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--spacing-xl);
  position: relative;
}
.page-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.page-hero-chip:hover {
  background: linear-gradient(135deg, var(--color-primary-a10), var(--color-primary-a03));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--color-primary-a15);
  color: #fff;
}
.chip-icon { font-size: var(--text-lg); filter: saturate(1.2); }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  font-size: var(--text-sm);
  position: relative;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--color-primary-light);
}

.breadcrumb span {
  color: var(--color-text-muted);
}

/* === REVIEW HERO BADGE === */
.review-hero-badge {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  background: linear-gradient(165deg, rgba(12, 22, 45, 0.85) 0%, rgba(6, 9, 15, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 32px;
  padding: 0;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(30px);
  box-shadow: 
    0 30px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 1px 0 rgba(255,255,255,0.06) inset;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
}

.review-hero-badge:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.6),
    0 0 0 1px var(--color-primary-a15) inset,
    0 0 80px rgba(59,130,246,0.04);
}

.review-hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.7) 30%, rgba(16,185,129,0.6) 70%, transparent);
  opacity: 0.8;
}

.review-hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(59,130,246,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 50%, rgba(16,185,129,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.review-hero-score {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 22px 22px 22px 26px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-self: stretch;
}

.review-hero-score::before,
.review-hero-score::after {
  content: '';
  position: absolute;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(148, 163, 184, 0.28) 20%,
    rgba(148, 163, 184, 0.28) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.review-hero-score::before {
  left: calc(26px + 118px + 18px);
}

.review-hero-score::after {
  right: 0;
}

.review-hero-ring {
  position: relative;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-hero-ring::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.14) 0%, rgba(59,130,246,0.06) 45%, transparent 72%);
  animation: ringPulseHero 3s ease-in-out infinite;
}

@keyframes ringPulseHero {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.06); opacity: 1; }
}

.review-hero-ring svg {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 0 10px rgba(16,185,129,0.35)) drop-shadow(0 0 22px var(--color-primary-a20));
  animation: ringGlow 4s ease-in-out infinite;
}

@keyframes ringGlow {
  0%, 100% { filter: drop-shadow(0 0 8px var(--color-primary-a30)) drop-shadow(0 0 18px rgba(16,185,129,0.15)); }
  50% { filter: drop-shadow(0 0 12px rgba(59,130,246,0.45)) drop-shadow(0 0 26px rgba(16,185,129,0.22)); }
}

.review-hero-ring-value {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(160deg, #ffffff 35%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 2;
}

.review-hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  padding: 4px 8px 4px 22px;
  margin-left: 18px;
  align-self: stretch;
  position: relative;
}

.review-hero-logo {
  height: 32px;
  width: auto;
  max-width: 148px;
  max-height: 36px;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: 0 0 2px;
}

.review-hero-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(186, 198, 216, 0.72);
  font-weight: 700;
  line-height: 1.2;
}

.review-hero-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fbbf24;
  line-height: 1;
}

.review-hero-stars svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(251,191,36,0.35));
}

.review-hero-updated {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.625rem;
  letter-spacing: 0.02em;
  color: rgba(186, 198, 216, 0.7);
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.review-hero-highlights {
  display: flex;
  flex: 1 1 auto;
  gap: 0;
  margin-left: 0;
  border-left: none;
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: stretch;
}

.review-hero-highlight {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 20px 10px;
  position: relative;
  transition: background 0.3s ease;
}

.review-hero-highlight:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(148, 163, 184, 0.28) 20%,
    rgba(148, 163, 184, 0.28) 80%,
    transparent 100%
  );
}

.review-hero-highlight:hover {
  background: rgba(255,255,255,0.03);
}

.review-hero-highlight-value {
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, rgba(59,130,246,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1.15;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.review-hero-highlight-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
.review-hero-badge {
    flex-direction: column;
    border-radius: 20px;
  }
.review-hero-score {
    padding: 24px 20px 18px;
    justify-content: center;
  }
.review-hero-score::before {
    display: none;
  }
.review-hero-score::after {
    display: none;
  }
.review-hero-meta {
    padding-left: 8px;
    margin-left: 0;
  }
.review-hero-highlights {
    border-left: none;
    border-top: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
  }
.review-hero-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(148, 163, 184, 0.28) 20%,
      rgba(148, 163, 184, 0.28) 80%,
      transparent 100%
    );
  }
.review-hero-highlight {
    padding: 16px 12px;
  }
.review-hero-highlight::after {
    display: none;
  }
}

.breadcrumb .current {
  color: var(--color-primary-light);
}

/* === BONUS CARDS === */
.bonus-card {
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-primary-a30);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-success));
}

.bonus-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(59,130,246,0.12);
  color: var(--color-primary-light);
  border: 1px solid var(--color-primary-a20);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.bonus-amount {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-text-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.bonus-card p {
  margin-bottom: var(--spacing-md);
}

/* === GAME CATEGORIES === */
.game-card {
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-light);
}

.game-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--color-primary-a08), rgba(16,185,129,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.game-card-body {
  padding: var(--spacing-lg);
}

.game-card-body h3 {
  margin-bottom: var(--spacing-sm);
  font-size: var(--text-xl);
}

.game-card-body p {
  font-size: var(--text-sm);
  margin-bottom: var(--spacing-md);
}

/* === PAYMENT METHOD GRID === */
.payment-card {
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.payment-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-a30);
  box-shadow: var(--shadow-glow);
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.payment-card h4 {
  font-size: var(--text-md);
  margin-bottom: var(--spacing-xs);
}

.payment-card p {
  font-size: var(--text-sm);
}

/* === MOBILE MOCKUP === */
.mobile-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.mobile-mockup {
  width: 280px;
  height: 560px;
  background: var(--color-bg-card);
  border: 2px solid var(--color-border-light);
  border-radius: 36px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px var(--color-primary-a10);
}

.mobile-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: var(--color-bg-primary);
  border-radius: 0 0 16px 16px;
  z-index: 1;
}

.mobile-mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) var(--spacing-lg);
}

.mobile-mockup-screen .logo-icon-1win {
    padding: 8px 11px;
    font-size: var(--text-md);
  }

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
}

.faq-item:hover {
  border-color: var(--color-border-light);
}

.faq-item.active {
  border-color: var(--color-primary-a30);
  box-shadow: 0 4px 20px var(--color-primary-a10);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-xl);
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  font-family: var(--font-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-icon {
  font-size: var(--text-2xl);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  color: var(--color-primary-light);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-a10);
  border-radius: var(--radius-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary-a20);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 var(--spacing-xl) var(--spacing-lg);
}

.faq-answer-inner p {
  font-size: var(--text-md);
  line-height: 1.7;
}

/* === SCORE BAR === */
.score-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s ease;
}

.score-bar:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.score-bar:first-child {
  padding-top: 0;
}

.score-bar-header {
  display: contents;
}

.score-bar-label {
  font-size: var(--text-md);
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.score-bar-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary-light);
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px var(--color-primary-a30);
}

.score-bar-track {
  grid-column: 1 / -1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  margin-top: -2px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-success-light) 100%);
  border-radius: 100px;
  width: 0;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  box-shadow: 0 0 16px var(--color-primary-a30), 0 0 6px rgba(16,185,129,0.2);
}

.score-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: rgba(255,255,255,0.35);
  border-radius: 100px;
  filter: blur(3px);
}

/* === CASINO CARDS === */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--spacing-lg);
}

.casino-card {
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-success));
}

.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-primary-a30);
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.casino-card-rank {
  width: 36px;
  height: 36px;
  background: var(--gradient-btn-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--text-md);
  color: #fff;
  flex-shrink: 0;
}

.casino-card-name h3 {
  font-size: var(--text-2xl);
  margin-bottom: 2px;
}

.casino-card-rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.casino-card-rating .stars {
  font-size: var(--text-sm);
}

.casino-card-desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.casino-card-bonus {
  background: var(--color-primary-a06);
  border: 1px solid var(--color-primary-a15);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bonus-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.bonus-value {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-primary-light);
}

.casino-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.feature-tag {
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-2xs);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.casino-card-payments {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-xs);
  border-top: 1px solid var(--color-border);
}

.casino-card-payments span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.casino-card .btn {
  margin-top: auto;
}

/* === CASINO REVIEW PAGE === */
.review-content {
  max-width: 820px;
  margin: 0 auto;
}

/* === REVIEW NAV === */
.review-nav {
  background: linear-gradient(165deg, rgba(12, 18, 35, 0.97), rgba(8, 12, 25, 0.99));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.review-nav:hover {
  border-color: rgba(59,130,246,0.12);
  box-shadow: 0 16px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 50px var(--color-primary-a03);
  transform: translateY(-2px);
}

.review-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6), rgba(16,185,129,0.4), transparent);
}

.review-nav::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.04), transparent 70%);
  pointer-events: none;
}

.review-nav-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.review-nav-header svg {
  padding: 10px;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(59,130,246,0.05));
  border: 1px solid var(--color-primary-a20);
  border-radius: 14px;
  width: 38px;
  height: 38px;
}

.review-nav-header h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.review-nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px var(--spacing-lg);
}

.review-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  border: 1px solid transparent;
}

.review-nav-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-a08), rgba(59,130,246,0.02));
  border-color: rgba(59,130,246,0.12);
  transform: translateX(4px);
  box-shadow: 0 4px 16px var(--color-primary-a06);
}

.review-nav-links a:hover .review-nav-num {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(59,130,246,0.5), var(--color-primary-a30));
  border-color: rgba(59,130,246,0.6);
  box-shadow: 0 0 16px var(--color-primary-a25);
  transform: scale(1.1);
}

.review-nav-num {
  font-size: var(--text-2xs);
  font-weight: 800;
  color: var(--color-primary-light);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.07);
  border: 1px solid var(--color-primary-a15);
  border-radius: 9px;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  flex-shrink: 0;
}

@media (max-width: 480px) {
.review-nav-links {
    grid-template-columns: 1fr;
  }
}

/* === REVIEW SECTIONS === */
.review-section {
  margin-bottom: var(--spacing-3xl);
  /* Skip style/layout for offscreen sections (big win on long review pages).
     Initial size must be close to real height — 720px made TOC jump past #sections
     (~8k px with game cards + new releases) until that section had painted once. */
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* Heavy review blocks — keep placeholder height near measured layout */
#bonuses.review-section { contain-intrinsic-size: auto 4000px; }
#payments.review-section { contain-intrinsic-size: auto 7300px; }
#sections.review-section { contain-intrinsic-size: auto 8500px; }
#mobile.review-section { contain-intrinsic-size: auto 6800px; }
#security.review-section { contain-intrinsic-size: auto 7700px; }
#faq.review-section { contain-intrinsic-size: auto 1650px; }#compare-1win.review-section, #compare-stake.review-section { contain-intrinsic-size: auto 1100px; }

.review-section h2 {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-sm);
  border-bottom: none;
  position: relative;
  padding-left: 28px;
  font-size: var(--text-3xl);
  letter-spacing: -0.02em; padding-right: 0.05em;
}

.review-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-success));
  box-shadow: 0 0 12px var(--color-primary-a30);
}

.review-section p {
  margin-bottom: var(--spacing-md);
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.review-section ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.review-section ul li {
  padding: 6px 0;
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  position: relative;
  padding-left: var(--spacing-lg);
  line-height: 1.7;
}

.review-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-success));
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-primary-a20);
}

.review-info-box {
  background: linear-gradient(170deg, rgba(12, 20, 38, 0.85) 0%, rgba(6, 9, 18, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 28px;
  padding: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.review-info-box:hover {
  border-color: rgba(59,130,246,0.12);
  transform: translateY(-3px);
}

.review-info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-success));
}

.review-info-box h3 {
  margin-bottom: var(--spacing-md);
  font-size: var(--text-xl);
}

/* Security detailed scores — grid, no outer box */
#security .score-bars-grid--security {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  max-width: none;
}
#security .score-bars-grid--security .score-bar {
  --score-accent: #3b82f6;
  --score-soft: rgba(59,130,246,0.14);
  --score-border: rgba(59,130,246,0.32);
  background:
    radial-gradient(ellipse at 0% 0%, var(--score-soft) 0%, transparent 60%),
    linear-gradient(160deg, rgba(15,22,40,0.85) 0%, rgba(9,13,26,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom-color: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: stretch;
  gap: 12px;
  margin: 0;
  height: 100%;
  min-height: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
#security .score-bars-grid--security .score-bar:first-child,
#security .score-bars-grid--security .score-bar:last-child {
  padding: 18px 16px;
}
#security .score-bars-grid--security .score-bar:nth-child(1) { --score-accent: #3b82f6; --score-soft: rgba(59,130,246,0.16); --score-border: rgba(59,130,246,0.35); }
#security .score-bars-grid--security .score-bar:nth-child(2) { --score-accent: #38bdf8; --score-soft: rgba(56,189,248,0.14); --score-border: rgba(56,189,248,0.32); }
#security .score-bars-grid--security .score-bar:nth-child(3) { --score-accent: #10b981; --score-soft: rgba(16,185,129,0.14); --score-border: rgba(16,185,129,0.32); }
#security .score-bars-grid--security .score-bar:nth-child(4) { --score-accent: #34d399; --score-soft: rgba(52,211,153,0.14); --score-border: rgba(52,211,153,0.32); }
#security .score-bars-grid--security .score-bar:nth-child(5) { --score-accent: #22d3ee; --score-soft: rgba(34,211,238,0.14); --score-border: rgba(34,211,238,0.32); }
#security .score-bars-grid--security .score-bar:nth-child(6) { --score-accent: #f59e0b; --score-soft: rgba(245,158,11,0.14); --score-border: rgba(245,158,11,0.32); }
#security .score-bars-grid--security .score-bar:nth-child(7) { --score-accent: #fbbf24; --score-soft: rgba(251,191,36,0.14); --score-border: rgba(251,191,36,0.32); }
#security .score-bars-grid--security .score-bar:nth-child(8) { --score-accent: #60a5fa; --score-soft: rgba(96,165,250,0.14); --score-border: rgba(96,165,250,0.32); }
#security .score-bars-grid--security .score-bar:nth-child(9) { --score-accent: #2dd4bf; --score-soft: rgba(45,212,191,0.14); --score-border: rgba(45,212,191,0.32); }
#security .score-bars-grid--security .score-bar:hover {
  border-color: var(--score-border);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28), 0 0 0 1px var(--score-soft);
}
#security .score-bars-grid--security .score-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
#security .score-bars-grid--security .score-bar-label-group {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
#security .score-bars-grid--security .score-bar-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--score-soft), rgba(0,0,0,0.15));
  border: 1px solid var(--score-border);
  box-shadow: 0 0 16px var(--score-soft);
  color: var(--score-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#security .score-bars-grid--security .score-bar-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}
#security .score-bars-grid--security .score-bar-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: normal;
}
#security .score-bars-grid--security .score-bar-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--score-accent);
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: none;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  line-height: 1;
}
#security .score-bars-grid--security .score-bar-track {
  height: 7px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.35);
}
#security .score-bars-grid--security .score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--score-accent), color-mix(in srgb, var(--score-accent) 55%, #fff));
  border-radius: 999px;
  width: 0;
  box-shadow: 0 0 12px var(--score-soft);
  animation: fillScoreBar 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
@media (max-width: 768px) {
  #security .score-bars-grid--security {
    grid-template-columns: 1fr;
  }
  #security .score-bars-grid--security .score-bar,
  #security .score-bars-grid--security .score-bar:first-child,
  #security .score-bars-grid--security .score-bar:last-child {
    padding: 16px;
  }
  #security .score-bars-grid--security .score-bar-header {
    align-items: center;
  }
  #security .score-bars-grid--security .score-bar-label-group {
    align-items: center;
  }
  #security .score-bars-grid--security .score-bar-value {
    font-size: 1.1rem;
    padding-top: 0;
  }
}

/* === VERDICT === */
.verdict-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.verdict-paragraph {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  background: rgba(8, 12, 24, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  border-left: 3px solid rgba(245, 158, 11, 0.65);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.verdict-paragraph:hover {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.2);
  transform: none;
  box-shadow: none;
}

.verdict-paragraph:has(.verdict-icon--neutral) {
  border-left-color: rgba(96, 165, 250, 0.7);
}

.verdict-paragraph:has(.verdict-icon--success) {
  border-left-color: rgba(52, 211, 153, 0.7);
}

.verdict-paragraph p {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.88);
}

.verdict-paragraph p strong {
  color: #f8fafc;
  font-weight: 600;
}

.verdict-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.verdict-paragraph:hover .verdict-icon {
  transform: none;
  box-shadow: none;
  background: rgba(245, 158, 11, 0.14);
}

.verdict-icon--neutral {
  background: rgba(59, 130, 246, 0.1);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: none;
}

.verdict-paragraph:hover .verdict-icon--neutral {
  background: rgba(59, 130, 246, 0.16);
  box-shadow: none;
}

.verdict-icon--success {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: none;
}

.verdict-paragraph:hover .verdict-icon--success {
  background: rgba(16, 185, 129, 0.16);
}

.related-casinos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.related-casino-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 22px 20px 18px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
    rgba(10, 15, 28, 0.92);
  box-shadow: none;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.related-casino-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: transparent;
  transition: background 0.22s ease;
}

.related-casino-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary-a40);
  background: linear-gradient(165deg, var(--color-primary-a10) 0%, transparent 48%),
    rgba(14, 20, 36, 0.98);
}

.related-casino-card:hover::before {
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-a25));
}

.related-casino-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.related-casino-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.98;
}

.related-casino-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.related-casino-score {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  padding: 5px 10px 4px;
  min-width: auto;
  background: var(--color-primary-a10);
  border: 1px solid var(--color-primary-a25);
  border-radius: 999px;
  box-shadow: none;
}

.related-casino-score::before {
  display: none;
}

.related-casino-score-value {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(248, 250, 252, 0.98);
  font-variant-numeric: tabular-nums;
}

.related-casino-score-max {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(148, 163, 184, 0.62);
}

.related-casino-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  color: rgba(251, 191, 36, 0.88);
}

.related-casino-stars svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.related-casino-stars svg.is-empty {
  color: rgba(148, 163, 184, 0.24);
}

.related-casino-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.25;
  color: #f8fafc;
}

.related-casino-card h3 .win-brand {
  display: inline-block;
  background-image: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-soft) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 900;
  padding: 0.05em 0.1em;
}

.related-casino-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.related-casino-highlight {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(203, 213, 225, 0.88);
  font-weight: 400;
}

.review-section .related-casino-meta,
.related-casino-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  border: none;
  border-radius: 0;
  position: relative;
  isolation: isolate;
  background: transparent;
}

.review-section .related-casino-meta::before,
.related-casino-meta::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 35%, rgba(255, 255, 255, 0.12) 65%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.review-section .related-casino-meta::after,
.related-casino-meta::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.12) 35%, rgba(255, 255, 255, 0.12) 65%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.review-section .related-casino-meta li,
.related-casino-meta li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  margin: 0;
  padding: 10px 12px 10px 0;
  font-size: 0.875rem;
  line-height: 1.35;
  color: inherit;
  position: relative;
  border: none;
}

.review-section .related-casino-meta li:nth-child(2n),
.related-casino-meta li:nth-child(2n) {
  padding-right: 0;
  padding-left: 12px;
}

.review-section .related-casino-meta li:nth-child(n+3),
.related-casino-meta li:nth-child(n+3) {
  border-bottom: none;
}

.review-section .related-casino-meta li::before,
.related-casino-meta li::before {
  content: none;
  display: none;
}

.related-casino-meta-label {
  flex-shrink: 0;
  color: rgba(148, 163, 184, 0.5);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-casino-meta-value {
  color: rgba(241, 245, 249, 0.96);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  word-break: break-word;
}

.related-casino-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 8px;
  margin-top: auto;
  padding: 11px 16px;
  border: none;
  border-radius: 10px;
  background: var(--color-primary-a08);
  color: rgba(248, 250, 252, 0.92);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, gap 0.2s ease, background 0.2s ease;
}

.related-casino-cta svg {
  width: 14px;
  height: 14px;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.related-casino-card:hover .related-casino-cta {
  color: #fff;
  background: var(--color-primary-a20);
  gap: 11px;
}

.related-casino-card:hover .related-casino-cta svg {
  transform: translateX(3px);
  opacity: 1;
}

/* === INFOGRAPHIC SECTION === */
.infographic-section {
  margin-bottom: var(--spacing-3xl);
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.infographic-card {
  background: linear-gradient(170deg, rgba(16,32,60,0.5) 0%, rgba(8,12,28,0.8) 100%);
  border: 1px solid var(--color-primary-a08);
  border-radius: 28px;
  padding: 40px 28px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease, box-shadow 0.45s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.infographic-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-primary-a10), transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.infographic-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.45), transparent);
}

.infographic-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 60px var(--color-primary-a08);
}

.infographic-card:hover::before {
  opacity: 1.5;
}

.infographic-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infographic-ring svg {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 0 10px rgba(59,130,246,0.35)) drop-shadow(0 0 20px rgba(16,185,129,0.15));
  animation: ringGlow 4s ease-in-out infinite;
}

@keyframes ringGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(59,130,246,0.35)) drop-shadow(0 0 20px rgba(16,185,129,0.15)); }
  50% { filter: drop-shadow(0 0 16px rgba(59,130,246,0.55)) drop-shadow(0 0 30px rgba(16,185,129,0.25)); }
}

.infographic-ring-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px var(--color-primary-a20);
  z-index: 1;
}

.infographic-card h4 {
  font-size: var(--text-lg);
  margin-bottom: 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em; padding-right: 0.05em;
}

.infographic-card p {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.infographic-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 768px) {
.infographic-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
.infographic-timeline {
    grid-template-columns: 1fr;
  }
}

.infographic-timeline::before {
  display: none;
}

.timeline-item {
  position: relative;
  background: linear-gradient(170deg, rgba(30,58,95,0.4) 0%, rgba(15,23,42,0.6) 100%);
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.timeline-item::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80px;
  background: radial-gradient(ellipse, var(--color-primary-a08), transparent 70%);
  pointer-events: none;
}

.timeline-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary-a40);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px var(--color-primary-a08);
}

.timeline-item:last-child {
  padding-bottom: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.timeline-item:hover::before {
  opacity: 1;
}

.timeline-item h4 {
  font-size: var(--text-md);
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em; padding-right: 0.05em;
  position: relative;
}

.timeline-item p {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  line-height: 1.65;
  position: relative;
}

.timeline-item .timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  color: #fff;
  background: var(--gradient-btn-primary);
  border-radius: 10px;
  padding: 6px 18px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px var(--color-primary-a30), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
}

.infographic-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comparison-col {
  background: linear-gradient(160deg, rgba(13,24,50,0.92) 0%, rgba(6,10,22,0.97) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease, box-shadow 0.35s ease;
}

.comparison-col-header {
  padding: 24px 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.comparison-col.pros .comparison-col-header {
  background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(16,185,129,0.02) 100%);
}

.comparison-col.cons .comparison-col-header {
  background: linear-gradient(135deg, var(--color-primary-a10) 0%, rgba(59,130,246,0.02) 100%);
}

.comparison-col-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-col.pros .comparison-col-icon {
  background: linear-gradient(135deg, rgba(16,185,129,0.3), rgba(5,150,105,0.12));
  border: 1px solid rgba(52,211,153,0.4);
  color: var(--color-success-light);
  box-shadow: 0 4px 16px rgba(16,185,129,0.18), inset 0 1px 0 rgba(52,211,153,0.2);
}

.comparison-col.cons .comparison-col-icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.28), rgba(37,99,235,0.1));
  border: 1px solid rgba(99,179,237,0.4);
  color: var(--color-primary-soft);
  box-shadow: 0 4px 16px rgba(59,130,246,0.18), inset 0 1px 0 rgba(99,179,237,0.2);
}

.comparison-col h4 {
  font-size: var(--text-xl);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.comparison-col.pros h4 {
  color: #e8fff7;
}

.comparison-col.cons h4 {
  color: #eff6ff;
}

.comparison-col h4 small {
  display: block;
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

.comparison-col.pros h4 small {
  color: rgba(52,211,153,0.65);
}

.comparison-col.cons h4 small {
  color: rgba(147,197,253,0.6);
}

.comparison-col.pros {
  border-color: rgba(16,185,129,0.15);
}

.comparison-col.pros::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, rgba(52,211,153,0.85) 50%, transparent 90%);
}

.comparison-col.cons {
  border-color: rgba(99,179,237,0.15);
}

.comparison-col.cons::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, rgba(99,179,237,0.85) 50%, transparent 90%);
}

.comparison-col:hover {
  transform: translateY(-6px);
}

.comparison-col.pros:hover {
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 40px rgba(16,185,129,0.08);
}

.comparison-col.cons:hover {
  border-color: rgba(99,179,237,0.35);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 40px var(--color-primary-a08);
}

.comparison-col ul {
  list-style: none;
  padding: 10px 0 6px;
  margin: 0;
}

.comparison-col ul li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.68);
  padding: 12px 24px 12px 60px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s ease, background 0.2s ease;
}

.comparison-col ul li:last-child {
  border-bottom: none;
  padding-bottom: 18px;
}

.comparison-col ul li:hover {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.03);
}

.comparison-col ul li::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.comparison-col.pros ul li::before {
  background-color: rgba(52,211,153,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpolyline points='2.5,7 6,10.5 11.5,3.5' fill='none' stroke='%2334d399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  border: 1px solid rgba(52,211,153,0.2);
}

.comparison-col.pros ul li:hover::before {
  background-color: rgba(52,211,153,0.22);
  border-color: rgba(52,211,153,0.4);
}

.comparison-col.cons ul li::before {
  background-color: rgba(99,179,237,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='2' fill='%2393c5fd'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  border: 1px solid rgba(99,179,237,0.2);
}

.comparison-col.cons ul li:hover::before {
  background-color: rgba(99,179,237,0.18);
  border-color: rgba(99,179,237,0.38);
}

/* Security strengths/weaknesses — proper cons = warning, not info-blue */
#security .infographic-comparison {
  align-items: stretch;
  margin-bottom: var(--spacing-xl);
}
#security .infographic-comparison .comparison-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#security .infographic-comparison .comparison-col ul {
  flex: 1;
}
#security .infographic-comparison .comparison-col.cons {
  border-color: rgba(245,158,11,0.18);
}
#security .infographic-comparison .comparison-col.cons::before {
  background: linear-gradient(90deg, transparent 10%, rgba(245,158,11,0.85) 50%, transparent 90%);
}
#security .infographic-comparison .comparison-col.cons .comparison-col-header {
  background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(245,158,11,0.02) 100%);
}
#security .infographic-comparison .comparison-col.cons .comparison-col-icon {
  background: linear-gradient(135deg, rgba(245,158,11,0.28), rgba(217,119,6,0.1));
  border: 1px solid rgba(251,191,36,0.4);
  color: #fbbf24;
  box-shadow: 0 4px 16px rgba(245,158,11,0.18), inset 0 1px 0 rgba(251,191,36,0.2);
}
#security .infographic-comparison .comparison-col.cons h4 {
  color: #fffbeb;
}
#security .infographic-comparison .comparison-col.cons h4 small {
  color: rgba(251,191,36,0.65);
}
#security .infographic-comparison .comparison-col.cons:hover {
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 40px rgba(245,158,11,0.08);
}
#security .infographic-comparison .comparison-col.cons ul li::before {
  background-color: rgba(245,158,11,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cline x1='3.5' y1='3.5' x2='10.5' y2='10.5' stroke='%23fbbf24' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='10.5' y1='3.5' x2='3.5' y2='10.5' stroke='%23fbbf24' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  border: 1px solid rgba(251,191,36,0.25);
}
#security .infographic-comparison .comparison-col.cons ul li:hover::before {
  background-color: rgba(245,158,11,0.22);
  border-color: rgba(251,191,36,0.45);
}

.infographic-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}
.infographic-stat-desc {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  line-height: 1.5;
  margin-top: var(--spacing-xs);
  text-align: center;
}

.infographic-stat {
  background: linear-gradient(165deg, rgba(30,58,95,0.35) 0%, rgba(15,23,42,0.55) 100%);
  border: 1px solid var(--color-primary-a10);
  border-radius: 20px;
  padding: 32px 20px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.infographic-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-a40), transparent);
}

.infographic-stat::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--color-primary-a06), transparent 70%);
  pointer-events: none;
}

.infographic-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px var(--color-primary-a08);
}

.infographic-stat-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary-a15), rgba(59,130,246,0.05));
  border: 1px solid var(--color-primary-a15);
  position: relative;
}

.infographic-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}

.infographic-stat-license-number {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-top: 6px;
  position: relative;
  word-break: break-word;
}

/* When value is a license id (primary under "License Number"), keep it readable */
.infographic-stat:has(.infographic-stat-license-number) .infographic-stat-value {
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  letter-spacing: -0.01em;
  word-break: break-word;
}

.infographic-stat-label {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  font-weight: 600;
  position: relative;
}

.infographic-bar-chart {
  margin-bottom: var(--spacing-xl);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: var(--spacing-lg) var(--spacing-xl);
}

.bar-chart-item {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: center;
  column-gap: var(--spacing-lg);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s ease;
}

.bar-chart-item:last-child {
  border-bottom: none;
}

.bar-chart-item:hover {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}

.bar-chart-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  width: 100%;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-chart-track {
  width: 100%;
  min-width: 0;
  height: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.bar-chart-fill {
  height: 100%;
  border-radius: 14px;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  position: relative;
  box-shadow: 0 0 12px rgba(255,255,255,0.1);
}

.bar-chart-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  border-radius: 14px 14px 0 0;
  pointer-events: none;
}

.bar-chart-fill span {
  font-size: var(--text-xs);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .bar-chart-item {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 14px 0;
  }
  .bar-chart-label {
    white-space: normal;
  }
}

/* Security safety category bars — refreshed */
#security .infographic-bar-chart {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(59,130,246,0.12) 0%, transparent 50%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
#security .infographic-bar-chart::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.55), rgba(16,185,129,0.35), transparent);
  pointer-events: none;
}
#security .infographic-bar-chart .bar-chart-item {
  --bar-accent: #3b82f6;
  --bar-soft: rgba(59,130,246,0.16);
  --bar-border: rgba(59,130,246,0.35);
  grid-template-columns: 176px minmax(0, 1fr);
  column-gap: 18px;
  padding: 10px 12px;
  margin: 0 -4px;
  border-bottom: none;
  border-radius: 12px;
  transition: background 0.25s ease, transform 0.25s ease;
}
#security .infographic-bar-chart .bar-chart-item:nth-child(1) { --bar-accent: #10b981; --bar-soft: rgba(16,185,129,0.16); --bar-border: rgba(16,185,129,0.35); }
#security .infographic-bar-chart .bar-chart-item:nth-child(2) { --bar-accent: #3b82f6; --bar-soft: rgba(59,130,246,0.16); --bar-border: rgba(59,130,246,0.35); }
#security .infographic-bar-chart .bar-chart-item:nth-child(3) { --bar-accent: #f59e0b; --bar-soft: rgba(245,158,11,0.16); --bar-border: rgba(245,158,11,0.35); }
#security .infographic-bar-chart .bar-chart-item:nth-child(4) { --bar-accent: #8b5cf6; --bar-soft: rgba(139,92,246,0.16); --bar-border: rgba(139,92,246,0.35); }
#security .infographic-bar-chart .bar-chart-item:nth-child(5) { --bar-accent: #ec4899; --bar-soft: rgba(236,72,153,0.16); --bar-border: rgba(236,72,153,0.35); }
#security .infographic-bar-chart .bar-chart-item:nth-child(6) { --bar-accent: #22d3ee; --bar-soft: rgba(34,211,238,0.16); --bar-border: rgba(34,211,238,0.35); }
#security .infographic-bar-chart .bar-chart-item:nth-child(7) { --bar-accent: #14b8a6; --bar-soft: rgba(20,184,166,0.16); --bar-border: rgba(20,184,166,0.35); }
#security .infographic-bar-chart .bar-chart-item:hover {
  background: rgba(255,255,255,0.03);
  transform: translateX(2px);
}
#security .infographic-bar-chart .bar-chart-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}
#security .infographic-bar-chart .bar-chart-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bar-accent);
  box-shadow: 0 0 12px var(--bar-soft);
}
#security .infographic-bar-chart .bar-chart-track {
  height: 32px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.35);
}
#security .infographic-bar-chart .bar-chart-fill {
  border-radius: 11px;
  padding-right: 14px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--bar-accent) 78%, #0b1220), var(--bar-accent));
  box-shadow: 0 0 16px var(--bar-soft);
}
#security .infographic-bar-chart .bar-chart-fill::after {
  display: none;
}
#security .infographic-bar-chart .bar-chart-fill span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
@media (max-width: 640px) {
  #security .infographic-bar-chart {
    padding: 18px 14px;
  }
  #security .infographic-bar-chart::before {
    left: 14px;
    right: 14px;
  }
  #security .infographic-bar-chart .bar-chart-item {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
.infographic-grid {
    grid-template-columns: 1fr;
  }
.infographic-stats-row {
    grid-template-columns: 1fr 1fr;
  }
.infographic-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
.infographic-stats-row {
    grid-template-columns: 1fr;
  }
}

/* === COMPARISON TABLE === */
.comparison-table-wrapper {
  overflow-x: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(16, 185, 129, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(59, 130, 246, 0.1), transparent 50%),
    linear-gradient(175deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 18, 0.99));
  backdrop-filter: blur(24px);
  padding: 12px 12px 14px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  position: relative;
}

.comparison-table-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, #34d399, var(--color-primary), #60a5fa);
  opacity: 0.9;
  pointer-events: none;
}

.comparison-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.comparison-table thead th {
  padding: 14px 10px 8px;
  font-size: var(--text-2xs);
  font-weight: 700;
  color: rgba(148, 163, 184, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  border-bottom: none;
  background: transparent;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.comparison-table tbody td {
  padding: 14px 10px;
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.95);
  border: none;
  background: rgba(10, 15, 30, 0.72);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  vertical-align: middle;
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}/* 3-col brand vs brand tables only (e.g. 1win vs Stake) */
#compare-1win .comparison-table th:nth-child(1), /* 3-col brand vs brand tables only (e.g. 1win vs Stake) */
#compare-stake .comparison-table th:nth-child(1), #compare-1win .comparison-table td:nth-child(1), #compare-stake .comparison-table td:nth-child(1) {
  width: 28%;
}#compare-1win .comparison-table th:nth-child(n+2), #compare-stake .comparison-table th:nth-child(n+2), #compare-1win .comparison-table td:nth-child(n+2), #compare-stake .comparison-table td:nth-child(n+2) {
  width: 36%;
}

/* Payments method comparison — 6 columns must fit without overlap */
#payments .comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#payments .comparison-table {
  min-width: 720px;
  table-layout: fixed;
}
#payments .comparison-table thead th {
  padding: 12px 8px 10px;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  hyphens: none;
  overflow-wrap: normal;
}
#payments .comparison-table tbody td {
  padding: 12px 8px;
  font-size: 0.8rem;
  line-height: 1.35;
  overflow: hidden;
}
#payments .comparison-table th:nth-child(1),
#payments .comparison-table td:nth-child(1) { width: 22%; }
#payments .comparison-table th:nth-child(2),
#payments .comparison-table td:nth-child(2) { width: 12%; }
#payments .comparison-table th:nth-child(3),
#payments .comparison-table td:nth-child(3) { width: 16%; }
#payments .comparison-table th:nth-child(4),
#payments .comparison-table td:nth-child(4) { width: 14%; }
#payments .comparison-table th:nth-child(5),
#payments .comparison-table td:nth-child(5) { width: 12%; }
#payments .comparison-table th:nth-child(6),
#payments .comparison-table td:nth-child(6) { width: 24%; }
#payments .pay-method {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}
#payments .pay-method-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
#payments .pay-method-icon img,
#payments .pay-method-icon svg {
  width: 22px !important;
  height: 22px !important;
}
#payments .pay-method-name {
  font-size: 0.8rem;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
#payments .pay-pill {
  max-width: 100%;
  padding: 4px 8px;
  font-size: 0.68rem;
  white-space: nowrap;
}
#payments .pay-fees,
#payments .pay-limits,
#payments .pay-best {
  display: block;
  max-width: 100%;
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: normal;
}

.comparison-table tbody tr td:first-child {
  border-radius: 16px 0 0 16px;
  border-left: 2px solid transparent;
}

.comparison-table tbody tr td:last-child {
  border-radius: 0 16px 16px 0;
  border-right: 1px solid transparent;
}

.comparison-table tbody tr:hover td {
  background: rgba(18, 26, 44, 0.95);
  color: rgba(226, 232, 240, 0.95);
}

.comparison-table tbody tr:hover td:first-child {
  border-left-color: rgba(96, 165, 250, 0.55);
}

.comparison-table .highlighted-row td {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.07));
  border-top-color: rgba(16, 185, 129, 0.18);
  border-bottom-color: rgba(16, 185, 129, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: rgba(241, 245, 249, 0.98);
  font-weight: 600;
}

.comparison-table .highlighted-row td:first-child {
  border-left-color: #34d399;
}

.comparison-table .highlighted-row td:last-child {
  border-right-color: rgba(16, 185, 129, 0.22);
}

.comparison-table .highlighted-row:hover td {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(59, 130, 246, 0.1));
}

.table-rating {
  font-weight: 700;
  color: var(--color-primary-light);
}

@media (max-width: 768px) {
.comparison-table-wrapper {
    overflow-x: visible;
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }

.comparison-table-wrapper::before {
    display: none;
  }

.comparison-table {
    min-width: 0;
    table-layout: auto;
    border-spacing: 0;
  }

.comparison-table thead {
    display: none;
  }

.comparison-table,
.comparison-table tbody,
.comparison-table tr,
.comparison-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  /* Beat desktop nth-child width % (28%/36%) — middle brand cell is not :last-child */
.comparison-table th:nth-child(1),
.comparison-table td:nth-child(1),
.comparison-table th:nth-child(n+2),
.comparison-table td:nth-child(n+2) {
    width: auto;
  }

.comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.comparison-table tbody tr {
    background: linear-gradient(160deg, rgba(15, 22, 40, 0.92) 0%, rgba(9, 13, 26, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    padding: 14px 14px 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }

.comparison-table tbody tr.highlighted-row {
    border-color: rgba(16, 185, 129, 0.35);
    background: linear-gradient(160deg, rgba(16, 185, 129, 0.14) 0%, rgba(9, 13, 26, 0.96) 100%);
    box-shadow: 0 4px 32px rgba(16, 185, 129, 0.12);
  }

.comparison-table tbody tr td,
.comparison-table tbody tr td:first-child,
.comparison-table tbody tr td:last-child {
    border: none !important;
    border-top: none !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    white-space: normal;
    width: auto;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

.comparison-table tbody tr:hover td,
.comparison-table .highlighted-row td,
.comparison-table .highlighted-row:hover td {
    background: transparent !important;
    box-shadow: none !important;
  }

.comparison-table tbody tr:hover td[data-label],
.comparison-table .highlighted-row td[data-label],
.comparison-table .highlighted-row:hover td[data-label] {
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }

.comparison-table td {
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.92);
    line-height: 1.45;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

.comparison-table td:first-child {
    grid-column: 1 / -1;
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
    padding-bottom: 12px;
    margin-bottom: 2px;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: none !important;
  }

.comparison-table td:first-child::before {
    display: none;
  }

.comparison-table tbody tr td[data-label] {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 14px;
    overflow: hidden;
    padding: 10px 12px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: normal;
  }

.comparison-table td[data-label]::before {
    content: attr(data-label);
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(113, 142, 178, 0.95);
    white-space: nowrap;
  }

.comparison-table td[data-label="1win"]::before {
    color: rgba(251, 191, 36, 0.92);
  }

.comparison-table tbody tr.highlighted-row td[data-label="1win"] {
    border-color: rgba(251, 191, 36, 0.24) !important;
    background: rgba(251, 191, 36, 0.06) !important;
  }

.comparison-table .table-rating {
    font-size: 1rem;
    white-space: nowrap;
  }/* 1win vs Stake — mobile comparison cards */
  #compare-1win .comparison-table th:nth-child(1), /* 1win vs Stake — mobile comparison cards */
  #compare-stake .comparison-table th:nth-child(1), #compare-1win .comparison-table td:nth-child(1), #compare-stake .comparison-table td:nth-child(1), #compare-1win .comparison-table th:nth-child(n+2), #compare-stake .comparison-table th:nth-child(n+2), #compare-1win .comparison-table td:nth-child(n+2), #compare-stake .comparison-table td:nth-child(n+2) {
    width: auto;
  }#compare-1win .comparison-table-wrapper, #compare-stake .comparison-table-wrapper {
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }#compare-1win .comparison-table-wrapper::before, #compare-stake .comparison-table-wrapper::before {
    display: none;
  }#compare-1win .comparison-table, #compare-stake .comparison-table, #compare-1win .comparison-table tbody, #compare-stake .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }#compare-1win .comparison-table tbody tr, #compare-stake .comparison-table tbody tr {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 0;
    padding: 16px;
    margin: 0;
    border-radius: 16px !important;
    overflow: hidden;
    clip-path: inset(0 round 16px);
    -webkit-clip-path: inset(0 round 16px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 52%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }#compare-1win .comparison-table tbody tr::before, #compare-stake .comparison-table tbody tr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.55), transparent);
    pointer-events: none;
  }#compare-1win .comparison-table tbody tr:hover, #compare-stake .comparison-table tbody tr:hover {
    border-color: rgba(96, 165, 250, 0.28);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  }#compare-1win .comparison-table tbody tr.highlighted-row, #compare-stake .comparison-table tbody tr.highlighted-row {
    border-color: rgba(251, 191, 36, 0.38);
    background:
      radial-gradient(ellipse at 0% 0%, rgba(251, 191, 36, 0.16) 0%, transparent 52%),
      radial-gradient(ellipse at 100% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 48%),
      linear-gradient(165deg, rgba(20, 28, 48, 0.98) 0%, rgba(8, 12, 24, 0.99) 100%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32), 0 0 28px rgba(251, 191, 36, 0.08);
  }#compare-1win .comparison-table tbody tr.highlighted-row::before, #compare-stake .comparison-table tbody tr.highlighted-row::before {
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.85), rgba(96, 165, 250, 0.55), transparent);
  }#compare-1win .comparison-table tbody td:first-child, #compare-stake .comparison-table tbody td:first-child {
    grid-column: 1 / -1;
    padding: 2px 0 12px;
    margin: 0 0 12px;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #f8fafc;
    box-shadow: none !important;
  }#compare-1win .comparison-table tbody tr td[data-label], #compare-stake .comparison-table tbody tr td[data-label] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    width: auto;
    padding: 12px;
    border-radius: 12px !important;
    overflow: hidden;
    clip-path: inset(0 round 12px);
    -webkit-clip-path: inset(0 round 12px);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.4;
    color: #f1f5f9;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    box-shadow: none !important;
  }#compare-1win .comparison-table tbody tr td[data-label="1win"], #compare-stake .comparison-table tbody tr td[data-label="1win"] {
    background: linear-gradient(
      165deg,
      rgba(251, 191, 36, 0.12) 0%,
      rgba(255, 255, 255, 0.025) 100%
    ) !important;
    border: 1px solid rgba(251, 191, 36, 0.22) !important;
  }#compare-1win .comparison-table tbody tr td[data-label="Stake"], #compare-stake .comparison-table tbody tr td[data-label="Stake"] {
    background: linear-gradient(
      165deg,
      rgba(59, 130, 246, 0.1) 0%,
      rgba(255, 255, 255, 0.025) 100%
    ) !important;
    border: 1px solid rgba(96, 165, 250, 0.2) !important;
  }#compare-1win .comparison-table tbody tr.highlighted-row td[data-label="1win"], #compare-stake .comparison-table tbody tr.highlighted-row td[data-label="1win"] {
    background: linear-gradient(
      165deg,
      rgba(251, 191, 36, 0.16) 0%,
      rgba(255, 255, 255, 0.03) 100%
    ) !important;
    border: 1px solid rgba(251, 191, 36, 0.32) !important;
  }#compare-1win .comparison-table tbody tr.highlighted-row td[data-label="Stake"], #compare-stake .comparison-table tbody tr.highlighted-row td[data-label="Stake"] {
    background: linear-gradient(
      165deg,
      rgba(59, 130, 246, 0.1) 0%,
      rgba(255, 255, 255, 0.025) 100%
    ) !important;
    border: 1px solid rgba(96, 165, 250, 0.2) !important;
  }#compare-1win .comparison-table td[data-label]::before, #compare-stake .comparison-table td[data-label]::before {
    display: block !important;
    content: attr(data-label);
    margin: 0;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
  }#compare-1win .comparison-table td[data-label="1win"]::before, #compare-stake .comparison-table td[data-label="1win"]::before {
    color: #fbbf24;
  }#compare-1win .comparison-table td[data-label="Stake"]::before, #compare-stake .comparison-table td[data-label="Stake"]::before {
    color: #93c5fd;
  }#compare-1win .comparison-table .table-rating, #compare-stake .comparison-table .table-rating {
    white-space: normal;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #93c5fd;
    line-height: 1.15;
  }#compare-1win .comparison-table tbody tr.highlighted-row td[data-label="1win"] .table-rating, #compare-stake .comparison-table tbody tr.highlighted-row td[data-label="1win"] .table-rating, #compare-1win .comparison-table td[data-label="1win"] .table-rating, #compare-stake .comparison-table td[data-label="1win"] .table-rating {
    color: #fbbf24;
  }

  @media (max-width: 380px) {#compare-1win .comparison-table tbody tr, #compare-stake .comparison-table tbody tr {
      padding: 14px;
      column-gap: 8px;
    }#compare-1win .comparison-table tbody td:first-child, #compare-stake .comparison-table tbody td:first-child {
      font-size: 0.95rem;
      padding-bottom: 10px;
      margin-bottom: 10px;
    }#compare-1win .comparison-table tbody tr td[data-label], #compare-stake .comparison-table tbody tr td[data-label] {
      padding: 10px;
      font-size: 0.8rem;
    }
  }

  /* Payments method comparison — fix desktop width locks breaking the card grid */
  #payments .comparison-table-wrapper {
    overflow: visible;
    -webkit-overflow-scrolling: auto;
  }
  #payments .comparison-table {
    min-width: 0;
    width: 100%;
    table-layout: auto;
  }
  #payments .comparison-table th:nth-child(1),
  #payments .comparison-table td:nth-child(1),
  #payments .comparison-table th:nth-child(2),
  #payments .comparison-table td:nth-child(2),
  #payments .comparison-table th:nth-child(3),
  #payments .comparison-table td:nth-child(3),
  #payments .comparison-table th:nth-child(4),
  #payments .comparison-table td:nth-child(4),
  #payments .comparison-table th:nth-child(5),
  #payments .comparison-table td:nth-child(5),
  #payments .comparison-table th:nth-child(6),
  #payments .comparison-table td:nth-child(6) {
    width: auto;
  }
  #payments .comparison-table tbody td {
    overflow: visible;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
  }
  #payments .comparison-table tbody tr {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
  }
  #payments .comparison-table tbody tr td[data-label] {
    overflow: visible;
    height: auto;
    min-height: 64px;
    padding: 10px 12px;
    justify-content: flex-start;
  }
  #payments .comparison-table td[data-label]::before {
    white-space: normal;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  #payments .comparison-table tbody td:first-child {
    grid-column: 1 / -1;
    min-height: 0;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 0;
    padding: 0 0 12px;
    margin-bottom: 2px;
  }
  #payments .comparison-table tbody td:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
  #payments .comparison-table tbody tr.highlighted-row td:first-child {
    border-bottom-color: rgba(16, 185, 129, 0.22) !important;
  }
  #payments .pay-method {
    gap: 10px;
  }
  #payments .pay-method-icon {
    width: 32px;
    height: 32px;
  }
  #payments .pay-method-name {
    font-size: 1rem;
    font-weight: 800;
    color: #f8fafc;
  }
  #payments .pay-pill {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
  #payments .pay-fees,
  #payments .pay-limits,
  #payments .pay-best {
    font-size: 0.88rem;
    font-weight: 700;
    color: #f1f5f9;
  }
}

@media (max-width: 560px) {
  #payments .comparison-table tbody tr {
    gap: 8px;
    padding: 12px;
  }
  #payments .comparison-table tbody tr td[data-label] {
    min-height: 0;
    padding: 10px 11px;
  }
}

/* === STEPS GRID === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
}

/* Bonuses / Mobile / Payments steps: 2 per row desktop, 1 on mobile */
#bonuses .steps-grid,
#mobile .steps-grid,
#payments .steps-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  #bonuses .steps-grid,
  #mobile .steps-grid,
  #payments .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-a30);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary-a15);
  line-height: 1;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-display);
}

.step-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: var(--text-xl);
}

.step-card p {
  font-size: var(--text-sm);
}

/* Bonuses / Mobile / Payments steps — refreshed card design */
#bonuses .steps-grid,
#mobile .steps-grid,
#payments .steps-grid {
  gap: var(--spacing-md);
}
#bonuses .step-card,
#mobile .step-card,
#payments .step-card {
  --step-accent: var(--color-primary);
  --step-accent-soft: rgba(59,130,246,0.14);
  --step-accent-border: rgba(59,130,246,0.32);
  background:
    radial-gradient(ellipse at 0% 0%, var(--step-accent-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 22px 24px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
#bonuses .step-card:nth-child(1),
#mobile .step-card:nth-child(1),
#payments .step-card:nth-child(1) { --step-accent: #3b82f6; --step-accent-soft: rgba(59,130,246,0.16); --step-accent-border: rgba(59,130,246,0.35); }
#bonuses .step-card:nth-child(2),
#mobile .step-card:nth-child(2),
#payments .step-card:nth-child(2) { --step-accent: #38bdf8; --step-accent-soft: rgba(56,189,248,0.14); --step-accent-border: rgba(56,189,248,0.32); }
#bonuses .step-card:nth-child(3),
#mobile .step-card:nth-child(3),
#payments .step-card:nth-child(3) { --step-accent: #10b981; --step-accent-soft: rgba(16,185,129,0.14); --step-accent-border: rgba(16,185,129,0.32); }
#bonuses .step-card:nth-child(4),
#mobile .step-card:nth-child(4),
#payments .step-card:nth-child(4) { --step-accent: #f59e0b; --step-accent-soft: rgba(245,158,11,0.14); --step-accent-border: rgba(245,158,11,0.32); }
#payments .step-card:nth-child(5) { --step-accent: #22d3ee; --step-accent-soft: rgba(34,211,238,0.14); --step-accent-border: rgba(34,211,238,0.32); }
#payments .step-card:nth-child(6) { --step-accent: #34d399; --step-accent-soft: rgba(52,211,153,0.14); --step-accent-border: rgba(52,211,153,0.32); }
#bonuses .step-card::before,
#mobile .step-card::before,
#payments .step-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--step-accent), transparent);
  border-radius: 16px 0 0 16px;
}
#bonuses .step-card:hover,
#mobile .step-card:hover,
#payments .step-card:hover {
  transform: translateY(-3px);
  border-color: var(--step-accent-border);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px var(--step-accent-soft);
}
#bonuses .step-card .step-number,
#mobile .step-card .step-number,
#payments .step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--step-accent-soft), rgba(0,0,0,0.2));
  border: 1px solid var(--step-accent-border);
  box-shadow: 0 0 18px var(--step-accent-soft);
}
#bonuses .step-card h3,
#mobile .step-card h3,
#payments .step-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}
#bonuses .step-card p,
#mobile .step-card p,
#payments .step-card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-a20);
}

.testimonial-stars {
  color: var(--color-warning);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-md);
}

.testimonial-card > p {
  font-size: var(--text-md);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-btn-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-md);
  color: #fff;
}

.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* === UPDATES GRID === */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.update-card {
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.update-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-a20);
}

.update-date {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-primary-a10);
  border: 1px solid var(--color-primary-a20);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary-light);
  margin-bottom: var(--spacing-md);
}

.update-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.update-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--spacing-md);
}

.update-card a {
  font-size: var(--text-sm);
  font-weight: 600;
}

/* === GETTING STARTED === */
.getting-started-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.getting-started-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xl);
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.getting-started-step:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-a30);
  box-shadow: var(--shadow-glow);
}

.getting-started-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-btn-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--text-2xl);
  color: #fff;
  font-family: var(--font-display);
}

.getting-started-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-xs);
}

.getting-started-content p {
  font-size: var(--text-md);
  line-height: 1.7;
}

/* === GAME CATEGORIES GRID (INDEX) === */
.game-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.game-category-card {
  background: var(--color-glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: block;
  text-decoration: none;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.game-category-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-a30);
  box-shadow: var(--shadow-glow);
}

.game-category-card:hover h3 {
  color: var(--color-primary-light);
}

.game-category-icon {
  font-size: 2.2rem;
  margin-bottom: var(--spacing-md);
}

.game-category-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

.game-category-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.game-category-count {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-primary-a10);
  border: 1px solid var(--color-primary-a20);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary-light);
}

/* === FAQ TOGGLE (INDEX) === */
.faq-toggle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary-light);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-a10);
  border-radius: var(--radius-sm);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--color-primary-a20);
}

.faq-answer p {
  padding: 0 var(--spacing-xl) var(--spacing-lg);
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 var(--color-primary-a40); }
  50% { box-shadow: 0 0 0 12px rgba(59,130,246,0); }
}

.pulse {
  animation: pulse-blue 2s infinite;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {.header-inner {
    padding: 0 var(--spacing-md);
  }

.nav-menu a {
    font-size: var(--text-xs);
        padding: 6px 10px;
  }

.header-bonus-btn {
    padding: 12px 22px;
        font-size: var(--text-sm);
  }

.hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

.hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

.hero-buttons {
    justify-content: center;
  }

.hero-badges {
    justify-content: center;
  }

.footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }

.footer-brand {
    grid-column: 1 / -1;
  }

.footer-stats {
    flex-direction: row;
  }

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

@media (max-width: 768px) {.header-inner {
    height: 64px;
        padding: 0 var(--spacing-lg);
  }

.header-bonus-btn {
    padding: 11px 20px;
        font-size: var(--text-xs);
        letter-spacing: 0.5px;
  }

.casino-grid {
    grid-template-columns: 1fr;
  }

.related-casinos {
    grid-template-columns: 1fr;
    gap: 12px;
  }

.related-casino-card {
    padding: 18px 16px 16px;
  }

.related-casino-score {
    padding: 4px 9px 3px;
  }

.related-casino-score-value {
    font-size: 1.125rem;
  }

.related-casino-card h3 {
    font-size: 0.9rem;
  }

.related-casino-highlight {
    font-size: 0.875rem;
  }

.related-casino-meta li {
    padding-top: 9px;
    padding-bottom: 9px;
  }

.related-casino-cta {
    padding: 10px 14px;
  }

.nav-menu {
    position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(10,15,26,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0;
        border: none;
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-xs);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-normal), opacity var(--transition-normal);
        overflow-x: visible;
        overflow-y: auto;
        max-height: calc(100vh - 64px);
  }

.nav-menu.active {
    transform: translateY(0);
        opacity: 1;
        pointer-events: all;
  }

.nav-menu a {
    width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: var(--radius-sm);
        font-size: var(--text-sm);
  }

.mobile-toggle {
    display: flex;
  }

.hero {
    padding: calc(56px + var(--spacing-2xl)) 0 var(--spacing-2xl);
  }

.hero-card {
    max-width: 100%;
  }

.site-footer .container {
    padding-top: 40px;
  }

.footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
    padding-bottom: 32px;
    margin-bottom: 0;
  }

.footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

.footer-brand p {
    max-width: 100%;
    text-align: left;
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-top: 16px;
  }

.footer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }

.footer-stat {
    padding: 14px 16px;
    gap: 6px;
  }

.footer-stat strong {
    font-size: var(--text-xl);
  }

.footer-stat span {
    font-size: var(--text-2xs);
  }

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

.footer-links h4 {
    margin-bottom: 14px;
  }

.footer-links h4::after {
    left: 0;
    transform: none;
  }

.footer-links a {
    text-align: left;
    padding: 5px 0;
  }

.footer-links a:hover {
    padding-left: 0;
    transform: translateX(4px);
  }

.footer-links a::before {
    display: none;
  }

.footer-bottom {
    grid-column: 1 / -1;
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 20px 0;
  }

.footer-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

.cta-section {
    padding: 48px 24px;
    border-radius: 20px;
  }
.cta-section h2 {
    font-size: var(--text-3xl);
  }

.section {
    padding: var(--spacing-2xl) 0;
  }

.hero-card-stats {
    grid-template-columns: 1fr 1fr;
  }

.container {
    padding: 0 var(--spacing-md);
  }
}

@media (max-width: 480px) {.header-inner {
    height: 60px;
        padding: 0 var(--spacing-md);
  }

.logo-icon {
    padding: 8px 8px 8px 12px;
    font-size: var(--text-md);
  }

.logo span.logo-text {
    padding: 8px 12px 8px 8px;
    font-size: var(--text-md);
  }

.header-bonus-btn {
    padding: 10px 18px;
        font-size: var(--text-2xs);
  }

.hero-card-stats {
    grid-template-columns: 1fr;
  }

.btn-lg {
    padding: 14px 24px;
    font-size: var(--text-lg);
  }

.hero-buttons {
    flex-direction: column;
    width: 100%;
  }

.hero-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

.faq-question {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--text-md);
  }

.faq-answer-inner {
    padding: 0 var(--spacing-lg) var(--spacing-md);
  }

.getting-started-step {
    flex-direction: column;
    gap: var(--spacing-md);
  }

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

.footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

.footer-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

.footer-stat {
    padding: 10px 12px;
    gap: 4px;
  }

.footer-stat strong {
    font-size: var(--text-lg);
  }

.footer-stat span {
    font-size: var(--text-2xs);
  }

.footer-bottom {
    gap: 16px;
    padding: 18px 0;
  }

.footer-badges {
    gap: 8px;
  }

.btn-text-full {
    display: none;
  }

.btn-text-short {
    display: inline;
  }
.nav-menu {
    top: 60px;
        max-height: calc(100vh - 60px);
  }
}
.win-brand {
  display: inline-block;
  background-image: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-soft) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 900;
  padding: 0.05em 0.1em;
}
/* === NEW RELEASES (casino review) === */
.new-release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-md);
}

@media (max-width: 768px) {
  .new-release-grid {
    grid-template-columns: 1fr;
  }
}

.new-release-card {
  --nr-accent: rgba(96, 165, 250, 0.5);
  --nr-accent-soft: rgba(59, 130, 246, 0.12);
  --nr-glow: rgba(59, 130, 246, 0.16);
  --nr-thumb-bg: #0b1220;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: radial-gradient(ellipse 90% 55% at 50% 0%, var(--nr-accent-soft), transparent 60%),
    linear-gradient(165deg, rgba(18, 26, 48, 0.98) 0%, rgba(8, 10, 18, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}

.new-release-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, var(--nr-accent), transparent);
  opacity: 0.75;
  z-index: 4;
  pointer-events: none;
}

.new-release-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--nr-accent) 55%, transparent), transparent 42%, transparent 58%, rgba(255, 255, 255, 0.06));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 0.7;
}

.new-release-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 28px var(--nr-glow);
}

.new-release-thumb {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--nr-thumb-bg);
}

.new-release-thumb::before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.new-release-thumb::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(8, 10, 18, 0.92));
  pointer-events: none;
  z-index: 1;
}

.new-release-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  z-index: 0;
}

.new-release-card:hover .new-release-logo {
  transform: scale(1.06);
}

.new-release-card--slots { --nr-accent: rgba(251, 191, 36, 0.5); --nr-accent-soft: rgba(251, 191, 36, 0.12); --nr-glow: rgba(251, 191, 36, 0.16); --nr-thumb-bg: #1a1033; }
.new-release-card--live { --nr-accent: rgba(244, 114, 182, 0.5); --nr-accent-soft: rgba(244, 114, 182, 0.14); --nr-glow: rgba(244, 114, 182, 0.16); --nr-thumb-bg: #1e1035; }
.new-release-card--crash { --nr-accent: rgba(239, 68, 68, 0.48); --nr-accent-soft: rgba(239, 68, 68, 0.12); --nr-glow: rgba(239, 68, 68, 0.16); --nr-thumb-bg: #140a12; }
.new-release-card--table { --nr-accent: rgba(59, 130, 246, 0.5); --nr-accent-soft: rgba(59, 130, 246, 0.12); --nr-glow: rgba(59, 130, 246, 0.16); --nr-thumb-bg: #0f172a; }
.new-release-card--originals { --nr-accent: rgba(16, 185, 129, 0.5); --nr-accent-soft: rgba(16, 185, 129, 0.12); --nr-glow: rgba(16, 185, 129, 0.16); --nr-thumb-bg: #0a1f18; }

.new-release-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.36);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #6ee7b7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.new-release-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding: 12px 14px 14px;
  position: relative;
  z-index: 2;
  text-align: center;
  align-items: center;
}

.new-release-body h4 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: #f8fafc;
}

.new-release-body p {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
}

.new-release-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.new-release-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(148, 163, 184, 0.85);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.new-release-stats .stat strong {
  display: block;
  margin-top: 0;
  color: #f1f5f9;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

/* === CWV: defer offscreen layout work without visual change === */
.site-footer,
.cta-section,
.related-casinos {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.page-hero,
.site-header,
.review-hero-badge {
  content-visibility: visible;
}


/* === BONUSES HUB STYLES (merged into /1win) === */
/* === DEPOSIT TIER CARDS (NEW) === */
.deposit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}
@media (min-width: 600px) and (max-width: 1023px) { .deposit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .deposit-grid { grid-template-columns: 1fr; } }

.deposit-card {
  background: linear-gradient(170deg, rgba(20, 30, 52, 0.7) 0%, rgba(10, 16, 30, 0.9) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-sm);
}
.deposit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-success));
  opacity: 0.5;
  transition: opacity var(--transition-normal);
}
.deposit-card:nth-child(1)::before { background: linear-gradient(90deg, var(--color-primary-hover), var(--color-primary-light)); }
.deposit-card:nth-child(2)::before { background: linear-gradient(90deg, var(--color-primary), var(--color-primary-soft)); }
.deposit-card:nth-child(3)::before { background: linear-gradient(90deg, var(--color-success-dark), var(--color-success-light)); }
.deposit-card:nth-child(4)::before { background: linear-gradient(90deg, var(--color-success), #6ee7b7); }
.deposit-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-primary-a06) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.deposit-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.35); }
.deposit-card:hover::before { opacity: 1; }
.deposit-card:hover::after { opacity: 1; }

.deposit-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: #fff;
  flex-shrink: 0;
  margin-bottom: var(--spacing-sm);
}
.deposit-card:nth-child(1) .deposit-step-num { background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary-light)); box-shadow: 0 4px 16px var(--color-primary-a30); }
.deposit-card:nth-child(2) .deposit-step-num { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft)); box-shadow: 0 4px 16px rgba(96,165,250,0.3); }
.deposit-card:nth-child(3) .deposit-step-num { background: linear-gradient(135deg, var(--color-success-dark), var(--color-success-light)); box-shadow: 0 4px 16px rgba(16,185,129,0.3); }
.deposit-card:nth-child(4) .deposit-step-num { background: linear-gradient(135deg, var(--color-success), #6ee7b7); box-shadow: 0 4px 16px rgba(52,211,153,0.3); }

.deposit-percent {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #dbeafe, var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.deposit-card:nth-child(3) .deposit-percent, .deposit-card:nth-child(4) .deposit-percent {
  background: linear-gradient(135deg, #d1fae5, var(--color-success-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.deposit-card h3 { font-size: var(--text-xl); margin-bottom: 2px; }
.deposit-card p { font-size: var(--text-sm); line-height: 1.6; color: var(--color-text-faint); }

.deposit-progress {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
  margin-top: var(--spacing-sm);
}
.deposit-progress-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.deposit-card:nth-child(1) .deposit-progress-fill { background: linear-gradient(90deg, var(--color-primary-hover), var(--color-primary-light)); box-shadow: 0 0 8px var(--color-primary-a40); }
.deposit-card:nth-child(2) .deposit-progress-fill { background: linear-gradient(90deg, var(--color-primary), var(--color-primary-soft)); box-shadow: 0 0 8px rgba(96,165,250,0.3); }
.deposit-card:nth-child(3) .deposit-progress-fill { background: linear-gradient(90deg, var(--color-success-dark), var(--color-success-light)); box-shadow: 0 0 8px rgba(16,185,129,0.35); }
.deposit-card:nth-child(4) .deposit-progress-fill { background: linear-gradient(90deg, var(--color-success), #6ee7b7); box-shadow: 0 0 8px rgba(52,211,153,0.3); }

/* === STATS STRIP (NEW) === */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}
@media (max-width: 900px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stat-tile-content h4 { letter-spacing: 0.06em; white-space: normal; overflow-wrap: break-word; }
}

/* Bonus snapshot on brand reviews (not /1win): 2 per row → 1 on mobile */
.stats-strip.stats-strip--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-md);
}
@media (max-width: 900px) {
  .stats-strip.stats-strip--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .stats-strip.stats-strip--2col {
    grid-template-columns: 1fr;
  }
}

/* Headline offer banner (brand reviews, not /1win) */
.headline-offer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: var(--spacing-xl);
  padding: 18px 20px 18px 18px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(75, 143, 248, 0.28);
  background:
    linear-gradient(115deg, rgba(37, 99, 235, 0.22) 0%, rgba(14, 22, 42, 0.94) 38%, rgba(8, 12, 24, 0.98) 100%);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.headline-offer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary-light), var(--color-success));
}
.headline-offer::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -48px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 143, 248, 0.16) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.headline-offer-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  line-height: 1;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(75, 143, 248, 0.14));
  border: 1px solid rgba(147, 197, 253, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.headline-offer-body {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.headline-offer-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
  background: rgba(75, 143, 248, 0.12);
  border: 1px solid rgba(75, 143, 248, 0.26);
}
.headline-offer-value,
.review-section .headline-offer-value,
#bonuses .headline-offer-value {
  margin: 0;
  font-family: var(--font-display);
  /* Match Welcome Offer Snapshot .stat-tile-value (tile 1) */
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}
.headline-offer-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: var(--gradient-btn-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  box-shadow: 0 4px 18px var(--color-primary-a40), 0 0 0 1px var(--color-primary-a30), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, filter 0.2s ease;
}
.headline-offer-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.headline-offer-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(59,130,246,0.55), 0 0 0 1px var(--color-primary-a40), inset 0 1px 0 rgba(255,255,255,0.25);
  filter: brightness(1.06);
  color: #fff;
}
@media (max-width: 560px) {
  .headline-offer {
    padding: 16px 14px 16px 14px;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .headline-offer-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    border-radius: 12px;
  }
  .headline-offer-body {
    flex: 1 1 calc(100% - 70px);
  }
  .headline-offer-cta {
    margin-left: 0;
    width: 100%;
    padding: 12px 18px;
  }
}

.stat-tile {
  background: linear-gradient(160deg, rgba(13, 20, 38, 0.8), rgba(8, 12, 24, 0.95));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(59,130,246,0.04) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.stat-tile:hover::after { opacity: 1; }
.stat-tile:nth-child(1) { border-left: 2px solid rgba(59,130,246,0.5); }
.stat-tile:nth-child(2) { border-left: 2px solid rgba(16,185,129,0.5); }
.stat-tile:nth-child(3) { border-left: 2px solid rgba(245,158,11,0.5); }
.stat-tile:nth-child(4) { border-left: 2px solid rgba(56,189,248,0.55); }
.stat-tile:hover { border-color: var(--color-primary-a20); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 0 1px var(--color-primary-a10); }

.stat-tile-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.stat-tile-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.stat-tile:nth-child(1) .stat-tile-icon { background: rgba(59,130,246,0.12); border: 1.5px solid var(--color-primary-a25); box-shadow: 0 0 16px rgba(59,130,246,0.12); color: var(--color-primary-soft); }
.stat-tile:nth-child(2) .stat-tile-icon { background: rgba(16,185,129,0.1); border: 1.5px solid rgba(16,185,129,0.25); box-shadow: 0 0 16px rgba(16,185,129,0.1); color: var(--color-success-light); }
.stat-tile:nth-child(3) .stat-tile-icon { background: rgba(245,158,11,0.1); border: 1.5px solid rgba(245,158,11,0.22); box-shadow: 0 0 16px rgba(245,158,11,0.1); color: #fcd34d; }
.stat-tile:nth-child(4) .stat-tile-icon { background: rgba(56,189,248,0.1); border: 1.5px solid rgba(56,189,248,0.28); box-shadow: 0 0 16px rgba(56,189,248,0.12); color: #7dd3fc; }

.stat-tile-content h4 {
  font-size: var(--text-2xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  margin-bottom: 3px;
}
.stat-tile-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
}
.stat-tile:nth-child(1) .stat-tile-value { background: linear-gradient(135deg, var(--color-primary-soft), var(--color-primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-tile:nth-child(2) .stat-tile-value { background: linear-gradient(135deg, var(--color-success-light), var(--color-success)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-tile:nth-child(3) .stat-tile-value { background: linear-gradient(135deg, #fcd34d, var(--color-warning)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Promo-code tile — keep “Optional” fully inside the frame */
.stat-tile--status {
  overflow: visible;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(56,189,248,0.1) 0%, transparent 55%),
    linear-gradient(160deg, rgba(13, 20, 38, 0.88), rgba(8, 12, 24, 0.96));
}
.stat-tile--status::after {
  background: radial-gradient(ellipse at 0% 50%, rgba(56,189,248,0.08) 0%, transparent 60%);
}
.stat-tile--status .stat-tile-content {
  min-width: 0;
  flex: 1;
  overflow: visible;
}
.stat-tile--status .stat-tile-content h4 {
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.stat-tile-badge {
  display: block;
  margin-top: 2px;
  padding: 0;
  max-width: 100%;
  /* Fixed size — matches .stat-tile-value; do not scale with viewport */
  font-size: var(--text-3xl);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: none;
  color: #7dd3fc;
  background: none;
  border: none;
  box-shadow: none;
  white-space: nowrap;
  overflow: visible;
}

/* === IMPORTANT NOTE === */
.important-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(245, 158, 11, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-left: 3px solid #f59e0b;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.important-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.7), transparent);
  opacity: 0.85;
  pointer-events: none;
}
.important-note:hover {
  border-color: rgba(245, 158, 11, 0.38);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.important-note-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(251, 191, 36, 0.32);
  color: #fcd34d;
  flex-shrink: 0;
}
.important-note-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.important-note-content { flex: 1; min-width: 0; }
.important-note-content h4 {
  color: #fcd34d;
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.important-note-content p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Security / 2FA callout */
.important-note--security {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.14) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
  border-color: rgba(59, 130, 246, 0.24);
  border-left-color: #3b82f6;
}
.important-note--security::before {
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.75), transparent);
}
.important-note--security:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28), 0 0 28px rgba(59, 130, 246, 0.08);
}
.important-note--security .important-note-icon {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.28), rgba(37, 99, 235, 0.1));
  border-color: rgba(96, 165, 250, 0.4);
  color: #93c5fd;
}
.important-note--security .important-note-content h4 {
  color: #bfdbfe;
}
@media (max-width: 560px) {
  .important-note {
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
  }
  .important-note-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .important-note-icon svg {
    width: 17px;
    height: 17px;
  }
  .important-note-content h4 {
    font-size: 0.95rem;
  }
  .important-note-content p {
    font-size: 0.84rem;
  }
}

.feature-grid-3col { display: grid; gap: var(--spacing-lg); grid-template-columns: 1fr; }
@media (min-width: 600px) and (max-width: 1023px) { .feature-grid-3col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid-3col { grid-template-columns: repeat(3, 1fr); } }

/* Bonuses / Mobile feature grids: 2 per row desktop, 1 on mobile */
#bonuses .feature-grid-3col,
#mobile .feature-grid-3col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  #bonuses .feature-grid-3col,
  #mobile .feature-grid-3col {
    grid-template-columns: 1fr;
  }
}

/* Promo / metrics feature cards — refreshed */
#bonuses .feature-grid--promo,
#mobile .feature-grid--promo,
#sections .feature-grid--promo {
  gap: var(--spacing-md);
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  #bonuses .feature-grid--promo,
  #mobile .feature-grid--promo,
  #sections .feature-grid--promo {
    grid-template-columns: 1fr;
  }
}
#bonuses .feature-grid--promo .card,
#mobile .feature-grid--promo .card,
#sections .feature-grid--promo .card {
  --promo-accent: #3b82f6;
  --promo-soft: rgba(59,130,246,0.14);
  --promo-border: rgba(59,130,246,0.32);
  background:
    radial-gradient(ellipse at 0% 0%, var(--promo-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 22px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
#bonuses .feature-grid--promo .card:nth-child(1),
#mobile .feature-grid--promo .card:nth-child(1),
#sections .feature-grid--promo .card:nth-child(1) { --promo-accent: #3b82f6; --promo-soft: rgba(59,130,246,0.16); --promo-border: rgba(59,130,246,0.35); }
#bonuses .feature-grid--promo .card:nth-child(2),
#mobile .feature-grid--promo .card:nth-child(2),
#sections .feature-grid--promo .card:nth-child(2) { --promo-accent: #38bdf8; --promo-soft: rgba(56,189,248,0.14); --promo-border: rgba(56,189,248,0.32); }
#bonuses .feature-grid--promo .card:nth-child(3),
#mobile .feature-grid--promo .card:nth-child(3),
#sections .feature-grid--promo .card:nth-child(3) { --promo-accent: #10b981; --promo-soft: rgba(16,185,129,0.14); --promo-border: rgba(16,185,129,0.32); }
#bonuses .feature-grid--promo .card:nth-child(4),
#mobile .feature-grid--promo .card:nth-child(4),
#sections .feature-grid--promo .card:nth-child(4) { --promo-accent: #f59e0b; --promo-soft: rgba(245,158,11,0.14); --promo-border: rgba(245,158,11,0.32); }
#bonuses .feature-grid--promo .card:nth-child(5),
#mobile .feature-grid--promo .card:nth-child(5),
#sections .feature-grid--promo .card:nth-child(5) { --promo-accent: #22d3ee; --promo-soft: rgba(34,211,238,0.14); --promo-border: rgba(34,211,238,0.32); }
#bonuses .feature-grid--promo .card:nth-child(6),
#mobile .feature-grid--promo .card:nth-child(6),
#sections .feature-grid--promo .card:nth-child(6) { --promo-accent: #60a5fa; --promo-soft: rgba(96,165,250,0.14); --promo-border: rgba(96,165,250,0.32); }
#bonuses .feature-grid--promo .card::before,
#mobile .feature-grid--promo .card::before,
#sections .feature-grid--promo .card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  height: auto;
  right: auto;
  background: linear-gradient(180deg, var(--promo-accent), transparent);
  opacity: 1;
  border-radius: 16px 0 0 16px;
}
#bonuses .feature-grid--promo .card:hover,
#mobile .feature-grid--promo .card:hover,
#sections .feature-grid--promo .card:hover {
  transform: translateY(-3px);
  border-color: var(--promo-border);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px var(--promo-soft);
}
#bonuses .feature-grid--promo .card-icon,
#mobile .feature-grid--promo .card-icon,
#sections .feature-grid--promo .card-icon {
  width: 42px;
  height: 42px;
  padding: 0 !important;
  margin-bottom: 14px;
  border-radius: 12px;
  color: var(--promo-accent);
  background: linear-gradient(145deg, var(--promo-soft), rgba(0,0,0,0.15));
  border: 1px solid var(--promo-border);
  box-shadow: 0 0 18px var(--promo-soft);
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#bonuses .feature-grid--promo .card:hover .card-icon,
#mobile .feature-grid--promo .card:hover .card-icon,
#sections .feature-grid--promo .card:hover .card-icon {
  transform: scale(1.06);
  box-shadow: 0 0 26px var(--promo-soft);
}
#bonuses .feature-grid--promo .card-icon svg,
#mobile .feature-grid--promo .card-icon svg,
#sections .feature-grid--promo .card-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
#bonuses .feature-grid--promo .card h3,
#mobile .feature-grid--promo .card h3,
#sections .feature-grid--promo .card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}
#bonuses .feature-grid--promo .card p,
#mobile .feature-grid--promo .card p,
#sections .feature-grid--promo .card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* === TIPS === */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}
@media (min-width: 600px) and (max-width: 1023px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tips-grid { grid-template-columns: repeat(4, 1fr); } }

/* Bonuses tips: 2 per row desktop, 1 on mobile — refreshed cards */
#bonuses .tips-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}
@media (max-width: 640px) {
  #bonuses .tips-grid {
    grid-template-columns: 1fr;
  }
}
#bonuses .tip-card {
  --tip-accent: #3b82f6;
  --tip-soft: rgba(59,130,246,0.16);
  --tip-border: rgba(59,130,246,0.35);
  background:
    radial-gradient(ellipse at 0% 0%, var(--tip-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 22px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#bonuses .tip-card:nth-child(1) { --tip-accent: #3b82f6; --tip-soft: rgba(59,130,246,0.16); --tip-border: rgba(59,130,246,0.35); }
#bonuses .tip-card:nth-child(2) { --tip-accent: #38bdf8; --tip-soft: rgba(56,189,248,0.14); --tip-border: rgba(56,189,248,0.32); }
#bonuses .tip-card:nth-child(3) { --tip-accent: #10b981; --tip-soft: rgba(16,185,129,0.14); --tip-border: rgba(16,185,129,0.32); }
#bonuses .tip-card:nth-child(4) { --tip-accent: #f59e0b; --tip-soft: rgba(245,158,11,0.14); --tip-border: rgba(245,158,11,0.32); }
#bonuses .tip-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  height: auto;
  right: auto;
  background: linear-gradient(180deg, var(--tip-accent), transparent);
  opacity: 1;
  border-radius: 16px 0 0 16px;
  transition: none;
}
#bonuses .tip-card::after {
  display: none;
}
#bonuses .tip-card:hover {
  transform: translateY(-3px);
  border-color: var(--tip-border);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px var(--tip-soft);
}
#bonuses .tip-card:hover::before,
#bonuses .tip-card:hover::after {
  opacity: 1;
}
#bonuses .tip-number {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--tip-accent);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  min-width: 42px;
  height: 42px;
  padding: 0;
  background: linear-gradient(145deg, var(--tip-soft), rgba(0,0,0,0.15));
  border: 1px solid var(--tip-border);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  box-shadow: 0 0 18px var(--tip-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#bonuses .tip-card:hover .tip-number {
  transform: scale(1.06);
  background: linear-gradient(145deg, var(--tip-soft), rgba(0,0,0,0.15));
  box-shadow: 0 0 26px var(--tip-soft);
}
#bonuses .tip-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0;
  transition: color 0.2s ease;
}
#bonuses .tip-card:hover h4 { color: var(--color-text-primary); }
#bonuses .tip-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
  transition: none;
}
#bonuses .tip-card:hover p { color: var(--color-text-secondary); }

.tip-card {
  background: linear-gradient(160deg, rgba(20, 30, 56, 0.72) 0%, rgba(9, 13, 28, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary), var(--color-success));
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 0 2px 2px 0;
}
.tip-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(59,130,246,0.6), rgba(16,185,129,0.3), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.tip-card:hover { transform: translateY(-8px); border-color: var(--color-primary-a20); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 24px var(--color-primary-a08); }
.tip-card:hover::before, .tip-card:hover::after { opacity: 1; }
.tip-number {
  font-size: var(--text-2xs);
  font-weight: 800;
  color: var(--color-primary-light);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(59,130,246,0.18) 0%, var(--color-primary-a06) 100%);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: var(--radius-sm);
  display: inline-block;
  align-self: flex-start;
  box-shadow: 0 2px 10px rgba(59,130,246,0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.tip-card:hover .tip-number { background: linear-gradient(135deg, rgba(59,130,246,0.28) 0%, var(--color-primary-a10) 100%); box-shadow: 0 4px 16px var(--color-primary-a20); }
.tip-card h4 { font-size: 1.08rem; font-weight: 700; color: var(--color-text-primary); letter-spacing: -0.01em; padding-right: 0.05em; line-height: 1.35; transition: color 0.25s ease; margin: 0; }
.tip-card:hover h4 { color: var(--color-primary-light); }
.tip-card p { font-size: var(--text-sm); color: var(--color-text-faint); line-height: 1.75; margin: 0; transition: color 0.25s ease; }
.tip-card:hover p { color: rgba(255,255,255,0.68); }


/* === PAYMENTS HUB STYLES (merged into /1win) === */
.payment-methods-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

/* === PAYMENT METHOD GRID === */
.payment-card {
  background: linear-gradient(160deg, rgba(59,130,246,0.13) 0%, rgba(59,130,246,0.04) 60%),
    rgba(10,12,20,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-shadow: 0 8px 28px var(--color-primary-a10), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.currency-grid .payment-card {
  min-height: 100%;
}
.currency-grid .payment-card p {
  margin: 0;
}

.payment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(96,165,250,0.1) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.payment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96,165,250,0.65);
  background: linear-gradient(160deg, var(--color-primary-a20) 0%, var(--color-primary-a06) 60%),
    rgba(10,12,20,0.55);
  box-shadow: 0 14px 40px rgba(59,130,246,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}

.payment-card:hover::before {
  opacity: 1;
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(96,165,250,0.28), var(--color-primary-a08) 70%);
  border: 1px solid rgba(96,165,250,0.45);
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(59,130,246,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: background var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.payment-card:hover .payment-icon {
  background: radial-gradient(circle at 50% 35%, rgba(96,165,250,0.42), rgba(59,130,246,0.16) 70%);
  border-color: rgba(147,197,253,0.65);
  box-shadow: 0 0 26px rgba(59,130,246,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: scale(1.08);
}

.payment-card h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: #fff;
  letter-spacing: 0.01em;
}

.payment-card p {
  font-size: var(--text-xs);
  color: rgba(147,197,253,0.65);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Payments method grid — refreshed */
#payments .payment-methods-grid {
  gap: var(--spacing-md);
}
#payments .payment-methods-grid .payment-card {
  --pay-accent: #3b82f6;
  --pay-soft: rgba(59,130,246,0.16);
  --pay-border: rgba(59,130,246,0.35);
  background:
    radial-gradient(ellipse at 50% 0%, var(--pay-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 16px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#payments .payment-methods-grid .payment-card:nth-child(1) { --pay-accent: #3b82f6; --pay-soft: rgba(59,130,246,0.16); --pay-border: rgba(59,130,246,0.35); }
#payments .payment-methods-grid .payment-card:nth-child(2) { --pay-accent: #f7931a; --pay-soft: rgba(247,147,26,0.16); --pay-border: rgba(247,147,26,0.35); }
#payments .payment-methods-grid .payment-card:nth-child(3) { --pay-accent: #627eea; --pay-soft: rgba(98,126,234,0.16); --pay-border: rgba(98,126,234,0.35); }
#payments .payment-methods-grid .payment-card:nth-child(4) { --pay-accent: #26a17b; --pay-soft: rgba(38,161,123,0.16); --pay-border: rgba(38,161,123,0.35); }
#payments .payment-methods-grid .payment-card:nth-child(5) { --pay-accent: #6366f1; --pay-soft: rgba(99,102,241,0.16); --pay-border: rgba(99,102,241,0.35); }
#payments .payment-methods-grid .payment-card:nth-child(6) { --pay-accent: #94a3b8; --pay-soft: rgba(148,163,184,0.14); --pay-border: rgba(148,163,184,0.32); }
#payments .payment-methods-grid .payment-card:nth-child(7) { --pay-accent: #0ea5e9; --pay-soft: rgba(14,165,233,0.16); --pay-border: rgba(14,165,233,0.35); }
#payments .payment-methods-grid .payment-card:nth-child(8) { --pay-accent: #345d9d; --pay-soft: rgba(52,93,157,0.18); --pay-border: rgba(52,93,157,0.38); }
#payments .payment-methods-grid .payment-card::before {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  bottom: auto;
  width: auto;
  height: 2px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, var(--pay-accent), transparent);
  opacity: 0.85;
  pointer-events: none;
}
#payments .payment-methods-grid .payment-card:hover {
  transform: translateY(-3px);
  border-color: var(--pay-border);
  background:
    radial-gradient(ellipse at 50% 0%, var(--pay-soft) 0%, transparent 60%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px var(--pay-soft);
}
#payments .payment-methods-grid .payment-card:hover::before {
  opacity: 1;
}
#payments .payment-methods-grid .payment-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 0;
  color: var(--pay-accent);
  background: linear-gradient(145deg, var(--pay-soft), rgba(0,0,0,0.18));
  border: 1px solid var(--pay-border);
  box-shadow: 0 0 18px var(--pay-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
#payments .payment-methods-grid .payment-icon svg,
#payments .payment-methods-grid .payment-icon img {
  width: 30px;
  height: 30px;
  display: block;
}
#payments .payment-methods-grid .payment-card:hover .payment-icon {
  transform: scale(1.06);
  box-shadow: 0 0 26px var(--pay-soft);
  background: linear-gradient(145deg, var(--pay-soft), rgba(0,0,0,0.12));
  border-color: var(--pay-border);
}
#payments .payment-methods-grid .payment-card h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}
#payments .payment-methods-grid .payment-card p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

/* Supported currencies grid — refreshed */
#payments .currency-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
}
#payments .currency-grid .payment-card {
  --pay-accent: #3b82f6;
  --pay-soft: rgba(59,130,246,0.16);
  --pay-border: rgba(59,130,246,0.35);
  background:
    radial-gradient(ellipse at 50% 0%, var(--pay-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 12px 16px;
  height: 100%;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#payments .currency-grid .payment-card:nth-child(1) { --pay-accent: #3b82f6; --pay-soft: rgba(59,130,246,0.16); --pay-border: rgba(59,130,246,0.35); }
#payments .currency-grid .payment-card:nth-child(2) { --pay-accent: #60a5fa; --pay-soft: rgba(96,165,250,0.16); --pay-border: rgba(96,165,250,0.35); }
#payments .currency-grid .payment-card:nth-child(3) { --pay-accent: #38bdf8; --pay-soft: rgba(56,189,248,0.14); --pay-border: rgba(56,189,248,0.32); }
#payments .currency-grid .payment-card:nth-child(4) { --pay-accent: #22d3ee; --pay-soft: rgba(34,211,238,0.14); --pay-border: rgba(34,211,238,0.32); }
#payments .currency-grid .payment-card:nth-child(5) { --pay-accent: #10b981; --pay-soft: rgba(16,185,129,0.14); --pay-border: rgba(16,185,129,0.32); }
#payments .currency-grid .payment-card:nth-child(6) { --pay-accent: #f59e0b; --pay-soft: rgba(245,158,11,0.14); --pay-border: rgba(245,158,11,0.32); }
#payments .currency-grid .payment-card:nth-child(7) { --pay-accent: #f7931a; --pay-soft: rgba(247,147,26,0.16); --pay-border: rgba(247,147,26,0.35); }
#payments .currency-grid .payment-card:nth-child(8) { --pay-accent: #627eea; --pay-soft: rgba(98,126,234,0.16); --pay-border: rgba(98,126,234,0.35); }
#payments .currency-grid .payment-card:nth-child(9) { --pay-accent: #345d9d; --pay-soft: rgba(52,93,157,0.18); --pay-border: rgba(52,93,157,0.38); }
#payments .currency-grid .payment-card:nth-child(10) { --pay-accent: #26a17b; --pay-soft: rgba(38,161,123,0.16); --pay-border: rgba(38,161,123,0.35); }
#payments .currency-grid .payment-card::before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  bottom: auto;
  width: auto;
  height: 2px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, var(--pay-accent), transparent);
  opacity: 0.85;
  pointer-events: none;
}
#payments .currency-grid .payment-card:hover {
  transform: translateY(-3px);
  border-color: var(--pay-border);
  background:
    radial-gradient(ellipse at 50% 0%, var(--pay-soft) 0%, transparent 60%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px var(--pay-soft);
}
#payments .currency-grid .payment-card:hover::before {
  opacity: 1;
}
#payments .currency-grid .payment-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(145deg, var(--pay-soft), rgba(0,0,0,0.18));
  border: 1px solid var(--pay-border);
  box-shadow: 0 0 16px var(--pay-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
#payments .currency-grid .payment-icon svg,
#payments .currency-grid .payment-icon img {
  width: 28px;
  height: 28px;
  display: block;
}
#payments .currency-grid .payment-card:hover .payment-icon {
  transform: scale(1.06);
  box-shadow: 0 0 24px var(--pay-soft);
  background: linear-gradient(145deg, var(--pay-soft), rgba(0,0,0,0.12));
  border-color: var(--pay-border);
}
#payments .currency-grid .payment-card h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}
#payments .currency-grid .payment-card p {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}
/* Tablet: keep 5 cards per row, denser cards */
@media (min-width: 561px) and (max-width: 1100px) {
  #payments .currency-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  #payments .currency-grid .payment-card {
    padding: 14px 8px;
  }
  #payments .currency-grid .payment-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 1rem;
  }
  #payments .currency-grid .payment-icon svg,
  #payments .currency-grid .payment-icon img {
    width: 22px;
    height: 22px;
  }
  #payments .currency-grid .payment-card h4 {
    font-size: 0.82rem;
  }
  #payments .currency-grid .payment-card p {
    font-size: 0.52rem;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 560px) {
  #payments .currency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === CRYPTO BENEFITS === */
.crypto-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.crypto-benefit {
  --crypto-accent: var(--color-primary);
  --crypto-accent-soft: var(--color-primary-a10);
  --crypto-accent-border: rgba(59, 130, 246, 0.35);
  --crypto-accent-glow: rgba(59, 130, 246, 0.18);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: 28px 24px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(ellipse 80% 55% at 0% 0%, var(--crypto-accent-soft), transparent 55%),
    linear-gradient(165deg, rgba(14, 22, 42, 0.95) 0%, rgba(7, 10, 20, 0.98) 100%);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}

.crypto-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crypto-accent), transparent 75%);
  opacity: 0.85;
}

.crypto-benefit::after {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 2px;
  background: var(--crypto-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.crypto-benefit:hover {
  transform: translateY(-6px);
  border-color: var(--crypto-accent-border);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 28px var(--crypto-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.crypto-benefit:hover::after {
  opacity: 0.9;
}

.crypto-benefit[data-accent="warning"] {
  --crypto-accent: #f59e0b;
  --crypto-accent-soft: rgba(245, 158, 11, 0.12);
  --crypto-accent-border: rgba(245, 158, 11, 0.4);
  --crypto-accent-glow: rgba(245, 158, 11, 0.16);
}

.crypto-benefit[data-accent="success"] {
  --crypto-accent: #10b981;
  --crypto-accent-soft: rgba(16, 185, 129, 0.12);
  --crypto-accent-border: rgba(16, 185, 129, 0.4);
  --crypto-accent-glow: rgba(16, 185, 129, 0.16);
}

.crypto-benefit[data-accent="cyan"] {
  --crypto-accent: #22d3ee;
  --crypto-accent-soft: rgba(34, 211, 238, 0.1);
  --crypto-accent-border: rgba(34, 211, 238, 0.35);
  --crypto-accent-glow: rgba(34, 211, 238, 0.14);
}

.crypto-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crypto-accent);
  background: radial-gradient(circle at 50% 35%, rgba(96, 165, 250, 0.28), rgba(59, 130, 246, 0.08) 72%);
  border: 1px solid rgba(96, 165, 250, 0.42);
  box-shadow:
    0 0 18px var(--crypto-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.crypto-benefit[data-accent="warning"] .crypto-benefit-icon {
  background: radial-gradient(circle at 50% 35%, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.08) 72%);
  border-color: rgba(251, 191, 36, 0.45);
}

.crypto-benefit[data-accent="success"] .crypto-benefit-icon {
  background: radial-gradient(circle at 50% 35%, rgba(52, 211, 153, 0.28), rgba(16, 185, 129, 0.08) 72%);
  border-color: rgba(52, 211, 153, 0.42);
}

.crypto-benefit[data-accent="cyan"] .crypto-benefit-icon {
  background: radial-gradient(circle at 50% 35%, rgba(34, 211, 238, 0.28), rgba(6, 182, 212, 0.08) 72%);
  border-color: rgba(34, 211, 238, 0.42);
}

.crypto-benefit:hover .crypto-benefit-icon {
  transform: scale(1.08);
  box-shadow:
    0 0 26px var(--crypto-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.crypto-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.crypto-benefit h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-text-primary);
  transition: color 0.25s ease;
}

.crypto-benefit:hover h3 {
  color: #fff;
}

.crypto-benefit p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-faint);
  transition: color 0.25s ease;
}

.crypto-benefit:hover p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1023px) {
  .crypto-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pay-method {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pay-method-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  overflow: hidden;
}

.pay-method-icon img,
.pay-method-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.pay-method-icon--btc {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.pay-method-icon--btc img,
.pay-method-icon--btc svg {
  width: 30px;
  height: 30px;
}

.pay-method-icon--eth {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.pay-method-icon--eth img,
.pay-method-icon--eth svg {
  width: 30px;
  height: 30px;
}

.pay-method-icon--usdt {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.pay-method-icon--usdt img,
.pay-method-icon--usdt svg {
  width: 30px;
  height: 30px;
}

.pay-method-icon--card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.pay-method-icon--card img,
.pay-method-icon--card svg {
  width: 30px;
  height: 30px;
}

.pay-method-icon--wallet {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.pay-method-icon--wallet img,
.pay-method-icon--wallet svg {
  width: 30px;
  height: 30px;
}

.pay-method-icon--bank {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.pay-method-icon--bank img,
.pay-method-icon--bank svg {
  width: 30px;
  height: 30px;
}

.pay-method-icon--mobile {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.pay-method-icon--mobile img,
.pay-method-icon--mobile svg {
  width: 30px;
  height: 30px;
}

.pay-method-name {
  font-weight: 700;
  color: rgba(241, 245, 249, 0.96);
  letter-spacing: -0.01em;
}

.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  line-height: 1;
}

.pay-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}

.pay-pill--fast,
.pay-pill--instant {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.28);
}

.pay-pill--slow {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}

.pay-pill--high {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.22);
}

.pay-pill--medium {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.22);
}

.pay-pill--low {
  color: #fda4af;
  background: rgba(244, 63, 94, 0.1);
  border-color: rgba(244, 63, 94, 0.22);
}

.pay-fees,
.pay-limits,
.pay-best {
  color: rgba(203, 213, 225, 0.92);
}

.highlighted-row .pay-method-name {
  color: #fff;
}

/* === INFOGRAPHIC === */
.infographic-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

/* Payments cashier stats: 2 per row desktop, 1 on mobile */
#payments .infographic-stats {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}
@media (max-width: 640px) {
  #payments .infographic-stats {
    grid-template-columns: 1fr;
  }
}

/* Payments stats — refreshed card design */
#payments .inf-stat:nth-child(4) .inf-stat-inner {
  --accent: #38bdf8;
  --accent-glow: rgba(56,189,248,0.16);
  --accent-border: rgba(56,189,248,0.32);
}
#payments .inf-stat-inner {
  text-align: left;
  padding: 22px 22px 20px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 100% 0%, var(--accent-glow) 0%, transparent 50%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
#payments .inf-stat-inner::before {
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  width: 3px;
  height: auto;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 1;
  border-radius: 16px 0 0 16px;
}
#payments .inf-stat-inner::after {
  bottom: -30px;
  right: -20px;
  width: 110px;
  height: 110px;
  opacity: 0.55;
}
#payments .inf-stat-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
#payments .inf-stat-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  margin: 0;
  border-radius: 12px;
  color: var(--accent);
}
#payments .inf-stat-icon-wrap svg {
  width: 22px;
  height: 22px;
  display: block;
}
#payments .inf-stat-icon {
  font-size: 0;
  line-height: 0;
}
#payments .inf-stat-number {
  font-size: 2.35rem;
  margin: 0;
  letter-spacing: -0.03em;
}
#payments .inf-stat-label {
  margin-top: 2px;
  letter-spacing: 0.08em;
}
#payments .inf-stat-desc {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--color-text-secondary);
}
#payments .inf-stat-tags {
  justify-content: flex-start;
  gap: 6px;
  margin-top: 0;
}
#payments .inf-tag {
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.inf-stat {
  border-radius: 20px;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.inf-stat:nth-child(1) .inf-stat-inner { --accent: var(--color-primary); --accent-glow: rgba(59,130,246,0.18); --accent-border: var(--color-primary-a30); }
.inf-stat:nth-child(2) .inf-stat-inner { --accent: var(--color-success); --accent-glow: rgba(16,185,129,0.15); --accent-border: rgba(16,185,129,0.3); }
.inf-stat:nth-child(3) .inf-stat-inner { --accent: var(--color-warning); --accent-glow: rgba(245,158,11,0.15); --accent-border: rgba(245,158,11,0.3); }
.inf-stat:nth-child(4) .inf-stat-inner { --accent: #a855f7; --accent-glow: rgba(168,85,247,0.15); --accent-border: rgba(168,85,247,0.3); }

.inf-stat-inner {
  --accent: var(--color-primary);
  --accent-glow: rgba(59,130,246,0.18);
  --accent-border: var(--color-primary-a30);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: border-color var(--transition-normal), background var(--transition-normal);
}

.inf-stat-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.inf-stat-inner::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  opacity: 0.7;
}

.inf-stat:hover {
  transform: translateY(-5px);
}

.inf-stat:hover .inf-stat-inner {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent-border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--accent-border);
}

.inf-stat:hover .inf-stat-inner::after {
  transform: scale(1.4);
  opacity: 1;
}

.inf-stat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.inf-stat:hover .inf-stat-icon-wrap {
  box-shadow: 0 0 24px var(--accent-glow);
  transform: scale(1.08);
}

.inf-stat-icon {
  font-size: 1.6rem;
  line-height: 1;
  display: block;
}

.inf-stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}

.inf-stat-divider {
  display: none;
}

.inf-stat-label {
  font-size: var(--text-2xs);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.inf-stat-desc {
  margin-top: 14px;
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.inf-stat-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.inf-tag {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 6px;
  padding: 3px 10px;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.inf-stat:hover .inf-tag {
  box-shadow: 0 0 8px var(--accent-glow);
}

.infographic-chart {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.infographic-chart::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-a40), transparent);
}

.infographic-chart-title {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--spacing-xl);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Bar chart */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.bar-row {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.bar-label {
  flex: 0 0 140px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bar-icon {
  font-size: 1rem;
}

.bar-track {
  flex: 1;
  height: 34px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 17px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--spacing-md);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0;
}

.bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  border-radius: 17px;
  pointer-events: none;
}

.bar-fill.bar-fast {
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
  box-shadow: 0 0 24px var(--color-primary-a30), inset 0 1px 0 rgba(255,255,255,0.2);
}

.bar-fill.bar-quick {
  background: linear-gradient(90deg, var(--color-success-dark), var(--color-success));
  box-shadow: 0 0 24px rgba(16,185,129,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.bar-fill.bar-medium {
  background: linear-gradient(90deg, #d97706, var(--color-warning));
  box-shadow: 0 0 24px rgba(245,158,11,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.bar-value {
  font-size: var(--text-2xs);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--color-text-faint);
  font-weight: 500;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}

.legend-dot.bar-fast { background: var(--color-primary); }
.legend-dot.bar-quick { background: var(--color-success-light); }
.legend-dot.bar-medium { background: var(--color-warning-light); }
.legend-dot.donut-free { background: var(--color-primary); }
.legend-dot.donut-low { background: var(--color-warning-light); }
.legend-dot.donut-network { background: #f97316; }

/* Payments speed chart — refreshed */
#payments .infographic-chart--speed {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(59,130,246,0.12) 0%, transparent 50%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  backdrop-filter: none;
}
#payments .infographic-chart--speed::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.55), rgba(16,185,129,0.35), transparent);
}
#payments .infographic-chart--speed .infographic-chart-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--spacing-lg);
}
#payments .infographic-chart--speed .bar-chart {
  gap: 14px;
}
#payments .infographic-chart--speed .bar-row {
  gap: 14px;
}
#payments .infographic-chart--speed .bar-label {
  flex: 0 0 148px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  gap: 10px;
}
#payments .infographic-chart--speed .bar-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0;
  color: var(--bar-accent, #3b82f6);
  background: linear-gradient(145deg, var(--bar-soft, rgba(59,130,246,0.16)), rgba(0,0,0,0.15));
  border: 1px solid var(--bar-border, rgba(59,130,246,0.32));
  box-shadow: 0 0 14px var(--bar-soft, rgba(59,130,246,0.16));
}
#payments .infographic-chart--speed .bar-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
#payments .infographic-chart--speed .bar-row:nth-child(1) { --bar-accent: #3b82f6; --bar-soft: rgba(59,130,246,0.16); --bar-border: rgba(59,130,246,0.35); }
#payments .infographic-chart--speed .bar-row:nth-child(2) { --bar-accent: #10b981; --bar-soft: rgba(16,185,129,0.14); --bar-border: rgba(16,185,129,0.32); }
#payments .infographic-chart--speed .bar-row:nth-child(3) { --bar-accent: #34d399; --bar-soft: rgba(52,211,153,0.14); --bar-border: rgba(52,211,153,0.32); }
#payments .infographic-chart--speed .bar-row:nth-child(4) { --bar-accent: #f59e0b; --bar-soft: rgba(245,158,11,0.14); --bar-border: rgba(245,158,11,0.32); }
#payments .infographic-chart--speed .bar-row:nth-child(5) { --bar-accent: #22d3ee; --bar-soft: rgba(34,211,238,0.14); --bar-border: rgba(34,211,238,0.32); }
#payments .infographic-chart--speed .bar-track {
  height: 36px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.35);
}
#payments .infographic-chart--speed .bar-fill {
  border-radius: 11px;
  padding-right: 14px;
}
#payments .infographic-chart--speed .bar-value {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
#payments .infographic-chart--speed .chart-legend {
  gap: 10px;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top-color: rgba(255,255,255,0.06);
}
#payments .infographic-chart--speed .legend-item {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: var(--color-text-secondary);
}
/* Tablet: 2 processing-time cards per row */
@media (min-width: 561px) and (max-width: 1023px) {
  #payments .infographic-chart--speed {
    padding: 22px 18px 18px;
  }
  #payments .infographic-chart--speed .infographic-chart-title {
    margin-bottom: 16px;
  }
  #payments .infographic-chart--speed .bar-chart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  #payments .infographic-chart--speed .bar-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-width: 0;
    padding: 12px 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
  }
  #payments .infographic-chart--speed .bar-label {
    flex: none;
    font-size: 0.82rem;
    gap: 8px;
  }
  #payments .infographic-chart--speed .bar-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  #payments .infographic-chart--speed .bar-icon svg {
    width: 14px;
    height: 14px;
  }
  #payments .infographic-chart--speed .bar-track {
    height: 32px;
    border-radius: 10px;
  }
  #payments .infographic-chart--speed .bar-fill {
    border-radius: 9px;
    padding-right: 10px;
  }
  #payments .infographic-chart--speed .bar-value {
    font-size: 0.68rem;
  }
  #payments .infographic-chart--speed .chart-legend {
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
  }
  #payments .infographic-chart--speed .legend-item {
    padding: 5px 10px;
    font-size: 0.68rem;
  }
}
/* Phone: single column */
@media (max-width: 560px) {
  #payments .infographic-chart--speed {
    padding: 20px 16px 18px;
  }
  #payments .infographic-chart--speed .bar-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  #payments .infographic-chart--speed .bar-label {
    flex: none;
  }
}

/* Flow diagram */
.infographic-flow {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.infographic-flow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,153,0.4), transparent);
}

.flow-diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: linear-gradient(160deg, var(--color-primary-a10) 0%, var(--color-primary-a03) 70%),
    rgba(10,12,20,0.4);
  border: 1px solid var(--color-primary-a40);
  border-radius: 16px;
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
  min-width: 110px;
  flex: 1;
  position: relative;
  box-shadow: 0 8px 28px var(--color-primary-a10), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
}

.flow-node::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent 60%);
  -webkit-mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.flow-node:hover {
  transform: translateY(-6px);
  border-color: rgba(96,165,250,0.65);
  background: linear-gradient(160deg, rgba(59,130,246,0.18) 0%, var(--color-primary-a06) 70%),
    rgba(10,12,20,0.5);
  box-shadow: 0 14px 40px var(--color-primary-a20), inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 2;
}

.flow-node-step {
  font-size: var(--text-2xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
  text-shadow: 0 0 12px rgba(96,165,250,0.4);
  margin-bottom: var(--spacing-sm);
}

.flow-node-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(96,165,250,0.3), var(--color-primary-a10) 70%);
  border: 1px solid rgba(96,165,250,0.5);
  box-shadow: 0 0 18px var(--color-primary-a20), inset 0 1px 0 rgba(255,255,255,0.12);
  margin-bottom: var(--spacing-sm);
  transition: transform var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.flow-node-icon svg {
  width: 22px;
  height: 22px;
  stroke: #bfdbfe;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(96,165,250,0.45));
}

.flow-node:hover .flow-node-icon {
  transform: scale(1.1);
  background: radial-gradient(circle at 50% 35%, rgba(96,165,250,0.42), rgba(59,130,246,0.16) 70%);
  border-color: rgba(147,197,253,0.65);
  box-shadow: 0 0 26px rgba(59,130,246,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}

.flow-node span:last-child {
  font-size: var(--text-2xs);
  color: #dbeafe;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.flow-start {
  border-color: rgba(59,130,246,0.5);
  background: linear-gradient(160deg, rgba(59,130,246,0.14) 0%, rgba(59,130,246,0.04) 70%),
    rgba(10,12,20,0.4);
  box-shadow: 0 8px 28px rgba(59,130,246,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

.flow-start .flow-node-step {
  color: var(--color-primary-soft);
  text-shadow: 0 0 12px rgba(96,165,250,0.4);
}

.flow-start .flow-node-icon {
  background: radial-gradient(circle at 50% 35%, rgba(96,165,250,0.35), rgba(59,130,246,0.12) 70%);
  border-color: rgba(96,165,250,0.55);
  box-shadow: 0 0 20px var(--color-primary-a25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.flow-start .flow-node-icon svg {
  stroke: #bfdbfe;
  filter: drop-shadow(0 0 4px rgba(96,165,250,0.5));
}

.flow-start span:last-child {
  color: #dbeafe;
}

.flow-start:hover {
  border-color: rgba(96,165,250,0.7);
  background: linear-gradient(160deg, var(--color-primary-a20) 0%, var(--color-primary-a06) 70%),
    rgba(10,12,20,0.5);
  box-shadow: 0 14px 40px rgba(59,130,246,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}

.flow-start:hover .flow-node-icon {
  background: radial-gradient(circle at 50% 35%, rgba(96,165,250,0.45), rgba(59,130,246,0.18) 70%);
  border-color: rgba(147,197,253,0.7);
  box-shadow: 0 0 28px rgba(59,130,246,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.flow-end {
  border-color: rgba(52,211,153,0.5);
  background: linear-gradient(160deg, rgba(52,211,153,0.14) 0%, rgba(52,211,153,0.04) 70%),
    rgba(10,12,20,0.4);
  box-shadow: 0 8px 28px rgba(52,211,153,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

.flow-end .flow-node-step {
  color: #6ee7b7;
  text-shadow: 0 0 12px rgba(52,211,153,0.4);
}

.flow-end .flow-node-icon {
  background: radial-gradient(circle at 50% 35%, rgba(52,211,153,0.35), rgba(16,185,129,0.1) 70%);
  border-color: rgba(52,211,153,0.55);
  box-shadow: 0 0 20px rgba(52,211,153,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.flow-end .flow-node-icon svg {
  stroke: #a7f3d0;
  filter: drop-shadow(0 0 4px rgba(52,211,153,0.5));
}

.flow-end span:last-child {
  color: #d1fae5;
}

.flow-end:hover {
  border-color: rgba(52,211,153,0.7);
  background: linear-gradient(160deg, rgba(52,211,153,0.2) 0%, rgba(52,211,153,0.06) 70%),
    rgba(10,12,20,0.5);
  box-shadow: 0 14px 40px rgba(52,211,153,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}

.flow-end:hover .flow-node-icon {
  background: radial-gradient(circle at 50% 35%, rgba(52,211,153,0.45), rgba(16,185,129,0.18) 70%);
  border-color: rgba(110,231,183,0.7);
  box-shadow: 0 0 28px rgba(52,211,153,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.flow-arrow {
  display: flex;
  align-items: center;
  padding: 0 2px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.12);
  font-size: 1rem;
  transition: color var(--transition-normal);
  margin-top: 28px;
}

.flow-diagram:hover .flow-arrow {
  color: var(--color-primary-a30);
}

/* Split layout */
.infographic-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.infographic-split .infographic-chart {
  margin-bottom: 0;
}

/* Donut chart */
.donut-chart {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto var(--spacing-lg);
  border-radius: 50%;
  background: conic-gradient(
    var(--color-primary) 0% 62%,
    var(--color-warning) 62% 85%,
    #f97316 85% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 32px var(--color-primary-a25));
}

.donut-chart::before {
  content: '';
  position: absolute;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(10,12,20,0.95);
  border: 1px solid rgba(255,255,255,0.06);
}

.donut-center {
  position: relative;
  text-align: center;
  z-index: 1;
}

.donut-center-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(160deg, #e0f2fe, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}

.donut-center-label {
  display: block;
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 600;
}

.chart-legend-vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

/* Popularity bars */
.popularity-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.pop-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.pop-name {
  flex: 0 0 130px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

.pop-track {
  flex: 1;
  height: 20px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  overflow: hidden;
}

.pop-bar {
  height: 100%;
  width: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 18px var(--color-primary-a25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pop-bar-alt {
  background: linear-gradient(90deg, var(--color-success-dark), var(--color-success));
  box-shadow: 0 0 18px rgba(16,185,129,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pop-pct {
  flex: 0 0 38px;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-align: right;
}

.pros-cons-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.pros-list .pros-cons-icon { background: rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.3); color: var(--color-success-light); box-shadow: 0 0 12px rgba(16, 185, 129, 0.2); }
.cons-list .pros-cons-icon { background: rgba(239, 68, 68, 0.2); border: 1px solid rgba(239, 68, 68, 0.3); color: #f87171; box-shadow: 0 0 12px rgba(239, 68, 68, 0.2); }

.pros-list ul, .cons-list ul { list-style: none; padding: 0; margin: 0; }
.pros-list li, .cons-list li {
  padding: var(--spacing-sm) 0;
  padding-left: calc(var(--spacing-xl) + var(--spacing-xs));
  position: relative;
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  line-height: 1.7;
  transition: color 0.2s ease, transform 0.2s ease;
}
.pros-list li:hover { color: var(--color-text-primary); transform: translateX(4px); }
.cons-list li:hover { color: var(--color-text-primary); transform: translateX(4px); }
.pros-list li::before { content: '✓'; position: absolute; left: 0; top: 6px; width: 22px; height: 22px; border-radius: 50%; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.25); color: var(--color-success-light); font-weight: 700; font-size: var(--text-2xs); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cons-list li::before { content: '✕'; position: absolute; left: 0; top: 6px; width: 22px; height: 22px; border-radius: 50%; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.25); color: #f87171; font-weight: 700; font-size: var(--text-2xs); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }


/* Payments hub responsive (merged into /1win) */
@media (max-width: 1023px) {
  .infographic-stats { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-sm); }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .crypto-benefits { grid-template-columns: repeat(2, 1fr); }
  .bar-row { flex-direction: column; align-items: stretch; gap: 4px; }
  .bar-label { flex: none; font-size: var(--text-2xs); white-space: nowrap; display: flex; align-items: center; gap: 6px; }
  .bar-track { flex: none; width: 100%; height: 30px; position: relative; }
  .bar-fill { position: relative; }
  .bar-value { font-size: var(--text-2xs); font-weight: 700; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); color: #fff; white-space: nowrap; }
  .flow-diagram { flex-direction: row; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .flow-node { min-width: 0; flex: 0 0 calc(33% - 8px); padding: var(--spacing-sm) 6px; }
  .flow-node span:last-child { font-size: var(--text-2xs); }
  .flow-node-icon { width: 38px; height: 38px; }
  .flow-node-icon svg { width: 19px; height: 19px; }
  .flow-arrow { display: none; }
  .infographic-chart, .infographic-flow { padding: var(--spacing-md); }
  .infographic-chart-title { font-size: var(--text-md); letter-spacing: 0.06em; margin-bottom: var(--spacing-lg); }
  .bar-chart { gap: 10px; }
  .chart-legend { flex-wrap: wrap; gap: 10px 16px; justify-content: center; margin-top: var(--spacing-md); }
  .legend-item { font-size: var(--text-2xs); }
}
@media (max-width: 480px) {
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .crypto-benefits { grid-template-columns: 1fr; }
  .currency-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .infographic-stats { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  #payments .payment-methods-grid .payment-card {
    padding: 14px 10px;
  }
  #payments .payment-methods-grid .payment-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    border-radius: 12px;
  }
  #payments .payment-methods-grid .payment-icon svg,
  #payments .payment-methods-grid .payment-icon img {
    width: 24px;
    height: 24px;
  }
  #payments .payment-methods-grid .payment-card h4 {
    font-size: 0.78rem;
    margin-bottom: 4px;
  }
  #payments .payment-methods-grid .payment-card p {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }
}


/* === MOBILE HUB STYLES (merged into /1win) === */
/* === MOBILE STATS BANNER === */
.mobile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}
.mobile-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(145deg, rgba(20,30,56,0.85) 0%, rgba(9,13,26,0.95) 100%);
  border: 1px solid rgba(59,130,246,0.14);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.mobile-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
  opacity: 0.7;
  transition: opacity 0.35s ease;
}
.mobile-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at 50% 120%, var(--color-primary-a08) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(59,130,246,0.38);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.12), inset 0 1px 0 rgba(255,255,255,0.07);
}
.mobile-stat-card:hover::before { opacity: 1; }
.mobile-stat-value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #bfdbfe 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
  padding-right: 0.05em;
  filter: drop-shadow(0 0 18px rgba(96,165,250,0.35));
}
.mobile-stat-suffix {
  font-size: 0.65em;
  -webkit-text-fill-color: var(--color-primary-soft);
  background: none;
  letter-spacing: 0;
}
.mobile-stat-label {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  line-height: 1.4;
}

/* === DEVICE COMPATIBILITY === */
.device-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}
@media (min-width: 640px) {
  .device-grid { grid-template-columns: repeat(2, 1fr); }
}
.device-card {
  --device-accent: #3b82f6;
  --device-soft: rgba(59,130,246,0.14);
  --device-border: rgba(59,130,246,0.32);
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
  background:
    radial-gradient(ellipse at 0% 0%, var(--device-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.device-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  height: auto;
  right: auto;
  background: linear-gradient(180deg, var(--device-accent), transparent);
  opacity: 1;
  border-radius: 16px 0 0 16px;
}
.device-card.ios {
  --device-accent: #94a3b8;
  --device-soft: rgba(148,163,184,0.16);
  --device-border: rgba(226,232,240,0.28);
}
.device-card.android {
  --device-accent: #34d399;
  --device-soft: rgba(52,211,153,0.14);
  --device-border: rgba(52,211,153,0.32);
}
.device-card:hover {
  transform: translateY(-3px);
  border-color: var(--device-border);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px var(--device-soft);
}
.device-card:hover::before { opacity: 1; }
.device-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.device-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--device-soft), rgba(0,0,0,0.15));
  border: 1px solid var(--device-border);
  box-shadow: 0 0 16px var(--device-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--device-accent);
  flex-shrink: 0;
}
.device-card-icon svg { width: 20px; height: 20px; display: block; }
.device-card-titles { flex: 1; min-width: 0; }
.device-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
}
.device-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.device-card-platform {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--device-accent);
  background: var(--device-soft);
  border: 1px solid var(--device-border);
}
.device-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
}
.device-card-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.device-card-rating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.72rem;
}
.device-card-rating-header span:first-child {
  color: var(--color-text-faint);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.device-card-rating-header strong { font-weight: 700; }
.rating-excellent { color: #6ee7b7; }
.rating-verygood { color: #38bdf8; }
.rating-good { color: #fcd34d; }
.rating-adequate { color: #fca5a5; }
.device-card-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.35);
}
.device-card-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--device-accent), color-mix(in srgb, var(--device-accent) 55%, #fff));
  width: 0;
  box-shadow: 0 0 12px var(--device-soft);
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === PLATFORM COMPARE TABLE === */
.table-wrapper:has(.platform-compare-table) {
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    linear-gradient(165deg, rgba(16, 24, 48, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.table-wrapper:has(.platform-compare-table)::after {
  display: none;
}
.platform-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.platform-compare-table thead tr {
  background: linear-gradient(180deg, rgba(20, 32, 58, 0.95) 0%, rgba(12, 20, 40, 0.7) 100%);
}
.platform-compare-table thead th {
  padding: 20px 14px 16px;
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  vertical-align: bottom;
}
.platform-compare-table thead th:first-child {
  text-align: left;
  color: var(--color-text-faint);
  padding-left: 20px;
}
.platform-compare-table thead th:nth-child(2) {
  background: rgba(61, 180, 96, 0.06);
}
.platform-col-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.platform-col-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.platform-compare-table thead th:hover .platform-col-icon {
  transform: translateY(-2px) scale(1.05);
}
.android-icon {
  background: linear-gradient(145deg, rgba(61, 180, 96, 0.28), rgba(61, 180, 96, 0.08));
  border: 1px solid rgba(61, 180, 96, 0.42);
  color: #6ee7a0;
  box-shadow: 0 6px 18px rgba(61, 180, 96, 0.15);
}
.ios-icon {
  background: linear-gradient(145deg, rgba(226, 232, 240, 0.22), rgba(226, 232, 240, 0.06));
  border: 1px solid rgba(226, 232, 240, 0.28);
  color: #e2e8f0;
  box-shadow: 0 6px 18px rgba(148, 163, 184, 0.12);
}
.browser-icon {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.28), var(--color-primary-a08));
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--color-primary-soft);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.15);
}
.platform-col-name {
  font-size: var(--text-2xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.android-name { color: #6ee7a0; }
.ios-name { color: #e2e8f0; }
.browser-name { color: var(--color-primary-soft); }
.platform-compare-table tbody tr {
  transition: background 0.2s ease;
}
.platform-compare-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}
.platform-compare-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.05);
}
.platform-compare-table td {
  padding: 16px 12px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}
.platform-compare-table tbody tr:last-child td { border-bottom: none; }
.platform-compare-table td:first-child {
  color: var(--color-text-primary);
  padding-left: 20px;
  border-left: none;
}
.platform-compare-table td:nth-child(2) {
  background: transparent;
}
.platform-compare-table tbody tr:hover td:nth-child(2) {
  background: transparent;
}
.platform-compare-table .col-yes {
  color: #6ee7b7;
  font-weight: 600;
  font-size: var(--text-sm);
}
.platform-compare-table .col-no {
  color: #fca5a5;
  font-weight: 600;
  font-size: var(--text-sm);
}
.platform-compare-table .col-partial {
  color: #fcd34d;
  font-weight: 600;
  font-size: var(--text-sm);
}
.feature-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}
.platform-compare-table tbody tr:nth-child(1) .feature-icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.28);
}
.platform-compare-table tbody tr:nth-child(2) .feature-icon {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}
.platform-compare-table tbody tr:nth-child(3) .feature-icon {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.28);
}
.platform-compare-table tbody tr:nth-child(4) .feature-icon {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.28);
}
.platform-compare-table tbody tr:nth-child(5) .feature-icon,
.platform-compare-table tbody tr:nth-child(6) .feature-icon {
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.28);
}
.platform-compare-table tbody tr:nth-child(7) .feature-icon {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.28);
}
.platform-compare-table tbody tr:nth-child(8) .feature-icon {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.28);
}
.status-cell { text-align: center; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.status-pill:hover {
  transform: translateY(-1px) scale(1.03);
}
.status-pill svg { width: 13px; height: 13px; flex-shrink: 0; }
.status-yes {
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.32);
  color: #6ee7b7;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}
.status-no {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #fca5a5;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.08);
}
.status-partial {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.32);
  color: #fcd34d;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
}
.status-neutral {
  background: transparent;
  border: 1px solid transparent;
  color: #cbd5e1;
  box-shadow: none;
}
@media (max-width: 768px) {
  .table-wrapper:has(.platform-compare-table) {
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .table-wrapper:has(.platform-compare-table)::after {
    display: none;
  }

  .platform-compare-table,
  .platform-compare-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .platform-compare-table thead {
    display: none;
  }

  .platform-compare-table tbody tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 10px;
    margin: 0;
    padding: 16px;
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 52%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    overflow: hidden;
    clip-path: inset(0 round 16px);
    -webkit-clip-path: inset(0 round 16px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .platform-compare-table tbody tr:nth-child(even),
  .platform-compare-table tbody tr:nth-child(odd) {
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 52%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
  }

  .platform-compare-table tbody tr:hover {
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.16) 0%, transparent 52%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
    border-color: rgba(96, 165, 250, 0.32);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  }

  .platform-compare-table td {
    background: transparent !important;
    border-bottom: none !important;
  }

  .platform-compare-table td:first-child {
    grid-column: 1 / -1;
    padding: 0 0 12px;
    margin: 0 0 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .platform-compare-table .feature-name {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    gap: 10px;
    color: #f8fafc;
  }

  .platform-compare-table .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
    border-radius: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .platform-compare-table td:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    padding: 10px 8px;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    clip-path: inset(0 round 12px);
    -webkit-clip-path: inset(0 round 12px);
  }

  .platform-compare-table td:nth-child(2) {
    background: linear-gradient(
      165deg,
      rgba(61, 180, 96, 0.12) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1px solid rgba(110, 231, 160, 0.22) !important;
  }

  .platform-compare-table td:nth-child(3) {
    background: linear-gradient(
      165deg,
      rgba(226, 232, 240, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1px solid rgba(203, 213, 225, 0.18) !important;
  }

  .platform-compare-table td:nth-child(4) {
    background: linear-gradient(
      165deg,
      rgba(59, 130, 246, 0.12) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1px solid rgba(96, 165, 250, 0.22) !important;
  }

  .platform-compare-table td:nth-child(2)::before,
  .platform-compare-table td:nth-child(3)::before,
  .platform-compare-table td:nth-child(4)::before {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-align: center;
  }

  .platform-compare-table td:nth-child(2)::before {
    content: 'Android';
    color: #6ee7a0;
  }

  .platform-compare-table td:nth-child(3)::before {
    content: 'iOS';
    color: #cbd5e1;
  }

  .platform-compare-table td:nth-child(4)::before {
    content: 'Browser';
    color: #93c5fd;
  }

  .platform-compare-table .status-cell {
    text-align: center;
  }

  .platform-compare-table .status-pill {
    font-size: 0.68rem;
    padding: 7px 8px;
    gap: 4px;
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }

  .platform-compare-table .status-pill svg {
    width: 12px;
    height: 12px;
  }

  .platform-compare-table .status-neutral {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #e2e8f0;
  }

  /* App vs Browser vs Desktop — correct column labels/tints */
  .platform-compare-table--app-desktop td:nth-child(2) {
    background: linear-gradient(
      165deg,
      rgba(61, 180, 96, 0.12) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1px solid rgba(110, 231, 160, 0.22) !important;
  }

  .platform-compare-table--app-desktop td:nth-child(3) {
    background: linear-gradient(
      165deg,
      rgba(59, 130, 246, 0.12) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1px solid rgba(96, 165, 250, 0.22) !important;
  }

  .platform-compare-table--app-desktop td:nth-child(4) {
    background: linear-gradient(
      165deg,
      rgba(226, 232, 240, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1px solid rgba(203, 213, 225, 0.18) !important;
  }

  .platform-compare-table--app-desktop td:nth-child(2)::before {
    content: 'App';
    color: #6ee7a0;
  }

  .platform-compare-table--app-desktop td:nth-child(3)::before {
    content: 'Browser';
    color: #93c5fd;
  }

  .platform-compare-table--app-desktop td:nth-child(4)::before {
    content: 'Desktop';
    color: #cbd5e1;
  }
}

@media (max-width: 380px) {
  .platform-compare-table tbody tr {
    padding: 14px;
    column-gap: 6px;
  }

  .platform-compare-table .feature-name {
    font-size: 0.95rem;
  }

  .platform-compare-table .feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .platform-compare-table td:not(:first-child) {
    padding: 9px 6px;
  }

  .platform-compare-table .status-pill {
    font-size: 0.62rem;
    padding: 6px 5px;
  }
}

/* === SECURITY FEATURES === */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}
@media (min-width: 640px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.security-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(16,185,129,0.12) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.security-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  height: auto;
  right: auto;
  background: linear-gradient(180deg, #10b981, transparent);
  border-radius: 16px 0 0 16px;
  opacity: 1;
}
.security-card::after {
  display: none;
}
.security-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px rgba(16,185,129,0.12);
}
.security-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(16,185,129,0.18), rgba(0,0,0,0.15));
  border: 1px solid rgba(16,185,129,0.35);
  box-shadow: 0 0 18px rgba(16,185,129,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee7b7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.security-card:hover .security-card-icon {
  box-shadow: 0 0 26px rgba(16,185,129,0.28);
  transform: scale(1.06);
}
.security-card-icon svg { width: 20px; height: 20px; display: block; }
.security-card-body {
  min-width: 0;
  width: 100%;
}
.security-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.3;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.security-card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

/* === MOBILE MOCKUP === */
.mobile-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

#mobile .mobile-showcase {
  margin-top: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.mobile-mockup {
  width: 290px;
  height: 580px;
  background: #0f1117;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 44px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), 0 0 60px rgba(59,130,246,0.12);
  animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.mobile-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: var(--color-bg-primary);
  border-radius: 0 0 16px 16px;
  z-index: 1;
}

.mobile-mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(175deg, var(--color-bg-secondary) 0%, #0a0e18 60%, #0d1525 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  position: relative;
}

.mockup-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 4px;
  flex-shrink: 0;
}

.mockup-status-time {
  font-size: var(--text-2xs);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

.mockup-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .mockup-status-icons svg:first-child {
    display: none;
  }
}

.mockup-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 22px 16px;
  position: relative;
}

.mockup-body::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-primary-a10) 0%, transparent 65%);
  pointer-events: none;
}

.mockup-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
}

.mockup-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.5rem;
  color: var(--color-text-faint);
  letter-spacing: 0.03em;
}

.mockup-nav-item.active {
  color: var(--color-primary);
}

.mockup-nav-item svg {
  width: 18px;
  height: 18px;
}

/* /1win keeps the framed app-icon treatment */
.mobile-mockup-screen .logo-icon-1win {
  width: 72px;
  height: 72px;
  padding: 12px 10px;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.mobile-mockup-screen .logo-icon-1win svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-mockup-screen .logo-icon-1win svg path {
  /* Force white to keep the official logotype legible on dark mockup background. */
  fill: #fff !important;
}

/* Other reviews: brand wordmark, no square frame */
.mobile-mockup-screen .mockup-brand-logo,
.mobile-mockup-screen .logo-icon.mockup-brand-logo {
  width: auto;
  height: auto;
  max-width: 148px;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  flex-shrink: 0;
}

.mobile-mockup-screen .mockup-brand-logo img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 148px;
  object-fit: contain;
  object-position: center;
}

.mockup-app-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.mockup-app-sub {
  font-size: var(--text-2xs);
  color: var(--color-text-faint);
  margin-top: 3px;
  margin-bottom: 18px;
  text-align: center;
  max-width: 160px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.mockup-scores {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}

.mockup-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-score-label {
  font-size: var(--text-2xs);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  width: 68px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.mockup-score-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}

.mockup-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-hover), #38bdf8);
  border-radius: 99px;
  width: 0;
  animation: fillScoreBar 1.4s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
  box-shadow: 0 0 8px rgba(56,189,248,0.6);
}
@keyframes fillScoreBar {
  to { width: var(--w, 0%); }
}
.mockup-score-row:nth-child(2) .mockup-score-fill {
  background: linear-gradient(90deg, #0891b2, var(--color-success-light));
  box-shadow: 0 0 8px rgba(52,211,153,0.5);
}
.mockup-score-row:nth-child(3) .mockup-score-fill {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  box-shadow: 0 0 8px rgba(167,139,250,0.5);
}

.mockup-score-val {
  font-size: var(--text-2xs);
  font-weight: 800;
  color: #fff;
  width: 24px;
  text-align: right;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.mockup-score-val--icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 22px;
  color: rgba(226, 232, 240, 0.92);
}

.mockup-score-val--icon[aria-label="Verified"] {
  color: #6ee7b7;
}

.mockup-score-val--icon[aria-label="Unverified"] {
  color: #c4b5fd;
}

.mockup-score-val--icon svg {
  display: block;
}

.mockup-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  background: linear-gradient(135deg, #22c55e 0%, var(--color-cta-mid) 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: var(--font-primary);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 6px 20px rgba(22,163,74,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.mockup-download-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}

.mockup-download-btn svg {
  flex-shrink: 0;
}

/* === SCORE BAR === */
.score-bars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}
@media (max-width: 560px) {
  .score-bars-grid { grid-template-columns: 1fr; }
}
.score-bar {
  background: linear-gradient(160deg, rgba(15,22,40,0.75) 0%, rgba(9,13,26,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.score-bar:hover {
  border-color: var(--color-primary-a25);
  box-shadow: 0 8px 32px var(--color-primary-a10);
}

.score-bar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-sm);
}

/* Re-assert vertical centering after global .score-bar rules */
#security .score-bars-grid--security .score-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: stretch;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
#security .score-bars-grid--security .score-bar:first-child,
#security .score-bars-grid--security .score-bar:last-child {
  padding: 18px 16px;
}
#security .score-bars-grid--security .score-bar-header {
  display: flex;
  align-items: center;
}

.score-bar-label-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.score-bar-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  flex-shrink: 0;
}
.score-bar-icon svg { width: 16px; height: 16px; }

.score-bar-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.score-bar-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.score-bar-value em {
  font-style: normal;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text-faint);
  margin-left: 2px;
}

.score-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 2px;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #6ee7b7);
  border-radius: 999px;
  width: 0;
  animation: fillScoreBar 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}

@media (max-width: 480px) {
  .score-bar {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  .score-bar-icon {
    width: 28px;
    height: 28px;
  }
  .score-bar-icon svg {
    width: 13px;
    height: 13px;
  }
  .score-bar-label {
    font-size: var(--text-2xs);
  }
  .score-bar-value {
    font-size: 1.3rem;
  }
}

/* Mobile performance metrics — metric strips */
#mobile .score-bars-grid--perf {
  gap: var(--spacing-md);
  grid-template-columns: repeat(2, 1fr);
}
#mobile .score-bars-grid--perf .score-bar {
  --perf-accent: #3b82f6;
  --perf-soft: rgba(59,130,246,0.16);
  --perf-border: rgba(59,130,246,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: stretch;
  height: 100%;
  min-height: 0;
  margin: 0;
  border-bottom: none;
  background:
    radial-gradient(ellipse at 0% 0%, var(--perf-soft) 0%, transparent 55%),
    linear-gradient(165deg, rgba(18, 28, 52, 0.92) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
#mobile .score-bars-grid--perf .score-bar:first-child,
#mobile .score-bars-grid--perf .score-bar:last-child {
  padding: 20px;
}
#mobile .score-bars-grid--perf .score-bar:nth-child(1) { --perf-accent: #3b82f6; --perf-soft: rgba(59,130,246,0.16); --perf-border: rgba(59,130,246,0.35); }
#mobile .score-bars-grid--perf .score-bar:nth-child(2) { --perf-accent: #38bdf8; --perf-soft: rgba(56,189,248,0.14); --perf-border: rgba(56,189,248,0.32); }
#mobile .score-bars-grid--perf .score-bar:nth-child(3) { --perf-accent: #10b981; --perf-soft: rgba(16,185,129,0.14); --perf-border: rgba(16,185,129,0.32); }
#mobile .score-bars-grid--perf .score-bar:nth-child(4) { --perf-accent: #f59e0b; --perf-soft: rgba(245,158,11,0.14); --perf-border: rgba(245,158,11,0.32); }
#mobile .score-bars-grid--perf .score-bar::before {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  bottom: auto;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--perf-accent), transparent);
  border-radius: 0;
  opacity: 0.9;
}
#mobile .score-bars-grid--perf .score-bar:hover {
  transform: translateY(-3px);
  border-color: var(--perf-border);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px var(--perf-soft);
}
#mobile .score-bars-grid--perf .score-bar-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#mobile .score-bars-grid--perf .score-bar-label-group {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
#mobile .score-bars-grid--perf .score-bar-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--perf-accent);
  background: linear-gradient(145deg, var(--perf-soft), rgba(0,0,0,0.15));
  border: 1px solid var(--perf-border);
  box-shadow: 0 0 16px var(--perf-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#mobile .score-bars-grid--perf .score-bar-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
#mobile .score-bars-grid--perf .score-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.58);
  line-height: 1.3;
}
#mobile .score-bars-grid--perf .score-bar-value {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--perf-accent);
  text-align: right;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 2px;
  flex-shrink: 0;
  text-shadow: 0 0 24px var(--perf-soft);
}
#mobile .score-bars-grid--perf .score-bar-value em {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  margin-left: 2px;
}
#mobile .score-bars-grid--perf .score-bar-track {
  height: 8px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.4);
  margin-top: 0;
  overflow: hidden;
}
#mobile .score-bars-grid--perf .score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--perf-accent), color-mix(in srgb, var(--perf-accent) 50%, #fff));
  box-shadow: 0 0 14px var(--perf-soft);
  border-radius: 999px;
  animation: fillScoreBar 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
@media (max-width: 560px) {
  #mobile .score-bars-grid--perf {
    grid-template-columns: 1fr;
  }
  #mobile .score-bars-grid--perf .score-bar-value {
    font-size: 1.5rem;
  }
}

/* Mobile hub responsive (merged into /1win) */
@media (min-width: 561px) and (max-width: 1023px) {
  #mobile .mobile-showcase,
  .mobile-showcase {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    text-align: left;
  }
  #mobile .mobile-mockup,
  .mobile-mockup {
    width: 240px;
    height: 480px;
  }
  #mobile .mobile-showcase h3 {
    font-size: 1.35rem !important;
  }
  #mobile .mobile-showcase .showcase-btns {
    justify-content: flex-start;
  }

  /* Compact mockup screen content for tablet phone frame */
  #mobile .mobile-mockup::before {
    width: 96px;
    height: 20px;
    border-radius: 0 0 12px 12px;
  }
  #mobile .mockup-status-bar {
    padding: 8px 14px 2px;
  }
  #mobile .mockup-status-time {
    font-size: 0.62rem;
  }
  #mobile .mockup-body {
    padding: 4px 14px 10px;
    justify-content: center;
    gap: 0;
  }
  #mobile .mockup-body::before {
    width: 140px;
    height: 140px;
    top: -10px;
  }
  #mobile .mobile-mockup-screen .logo-icon-1win {
    width: 52px;
    height: 52px;
    padding: 8px 7px;
    border-radius: 12px;
    margin-top: 4px;
  }
  #mobile .mobile-mockup-screen .mockup-brand-logo {
    width: auto;
    height: auto;
    padding: 0;
    margin-top: 4px;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
  #mobile .mobile-mockup-screen .mockup-brand-logo img {
    height: 36px;
    max-width: 120px;
  }
  #mobile .mockup-app-name {
    font-size: 1.05rem;
    margin-top: 8px;
  }
  #mobile .mockup-app-sub {
    font-size: 0.62rem;
    margin-top: 2px;
    margin-bottom: 10px;
    max-width: 150px;
    line-height: 1.35;
  }
  #mobile .mockup-scores {
    gap: 7px;
    margin-bottom: 10px;
    padding: 10px 11px;
    border-radius: 11px;
  }
  #mobile .mockup-score-row {
    gap: 6px;
  }
  #mobile .mockup-score-label {
    width: 54px;
    font-size: 0.58rem;
  }
  #mobile .mockup-score-track {
    height: 5px;
  }
  #mobile .mockup-score-val {
    width: 22px;
    font-size: 0.62rem;
  }
  #mobile .mockup-download-btn {
    padding: 10px 12px;
    font-size: 0.72rem;
    border-radius: 10px;
    gap: 6px;
  }
  #mobile .mockup-download-btn svg {
    width: 13px;
    height: 13px;
  }
  #mobile .mockup-nav-bar {
    padding: 7px 10px 10px;
  }
  #mobile .mockup-nav-item {
    font-size: 0.45rem;
    gap: 2px;
  }
  #mobile .mockup-nav-item svg {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 561px) and (max-width: 1023px) {
  .mobile-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .mobile-stat-card {
    padding: 18px 8px;
  }
  .mobile-stat-value {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  }
  .mobile-stat-suffix {
    font-size: 0.72em;
  }
  .mobile-stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.3;
  }
}
@media (max-width: 560px) {
  .mobile-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  #mobile .mobile-showcase,
  .mobile-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #mobile .mobile-showcase > div:not(.mobile-mockup) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #mobile .mobile-showcase .showcase-btns {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .mobile-mockup { width: 250px; height: 500px; animation: none; }
  .mobile-stats { grid-template-columns: 1fr 1fr; gap: var(--spacing-md); }
  .mobile-stat-card { padding: var(--spacing-lg) var(--spacing-md); }
  .device-grid { grid-template-columns: 1fr; }
  .score-bars-grid { grid-template-columns: 1fr; }
}


/* === GAMES HUB STYLES (merged into /1win) === */
/* === GAME CATEGORIES === */
.game-card {
  background: linear-gradient(165deg, rgba(20, 24, 36, 0.95) 0%, rgba(10, 12, 20, 0.95) 100%);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 40%, transparent 60%, rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
  border-radius: 22px 22px 0 0;
}

.game-card.type-slots::before  { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.game-card.type-live::before   { background: linear-gradient(90deg, #14b8a6, var(--color-primary)); }
.game-card.type-table::before  { background: linear-gradient(90deg, #a855f7, #ec4899); }
.game-card.type-crash::before  { background: linear-gradient(90deg, var(--color-warning), var(--color-success)); }
.game-card.type-sports::before { background: linear-gradient(90deg, #0ea5e9, #06b6d4); }
.game-card.type-originals::before { background: linear-gradient(90deg, #f43f5e, #f97316); }

.game-card:hover::before { opacity: 1; }

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 56px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.12);
}

.game-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.2rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.game-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.game-card.type-slots .game-card-img    { background: #0d0b1f; }
.game-card.type-live .game-card-img     { background: #091518; }
.game-card.type-table .game-card-img    { background: #110a1a; }
.game-card.type-crash .game-card-img    { background: #110e03; }
.game-card.type-sports .game-card-img   { background: #041418; }
.game-card.type-originals .game-card-img { background: #130507; }

.game-card.type-slots .game-card-img::before    { background: radial-gradient(ellipse at 50% 80%, rgba(99,102,241,0.35) 0%, transparent 70%); }
.game-card.type-live .game-card-img::before      { background: radial-gradient(ellipse at 50% 80%, rgba(20,184,166,0.35) 0%, transparent 70%); }
.game-card.type-table .game-card-img::before     { background: radial-gradient(ellipse at 50% 80%, rgba(168,85,247,0.35) 0%, transparent 70%); }
.game-card.type-crash .game-card-img::before     { background: radial-gradient(ellipse at 50% 80%, rgba(245,158,11,0.35) 0%, transparent 70%); }
.game-card.type-sports .game-card-img::before    { background: radial-gradient(ellipse at 50% 80%, rgba(14,165,233,0.35) 0%, transparent 70%); }
.game-card.type-originals .game-card-img::before { background: radial-gradient(ellipse at 50% 80%, rgba(244,63,94,0.35) 0%, transparent 70%); }

@keyframes gc-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes gc-rattle {
  0%,100% { transform: rotate(0deg) scale(1.12); }
  20%     { transform: rotate(-6deg) scale(1.12); }
  40%     { transform: rotate(6deg) scale(1.12); }
  60%     { transform: rotate(-4deg) scale(1.12); }
  80%     { transform: rotate(4deg) scale(1.12); }
}
@keyframes gc-pulse-scale {
  0%,100% { transform: scale(1.12); }
  50%     { transform: scale(1.22); }
}
@keyframes gc-spin {
  0%   { transform: rotate(0deg) scale(1.12); }
  100% { transform: rotate(360deg) scale(1.12); }
}
@keyframes gc-rocket {
  0%,100% { transform: translateY(0) scale(1.12); }
  30%     { transform: translateY(-10px) scale(1.15); }
  60%     { transform: translateY(-4px) scale(1.12); }
}
@keyframes gc-bounce {
  0%,100% { transform: translateY(0) scale(1.12); }
  40%     { transform: translateY(-12px) scale(1.12); }
  60%     { transform: translateY(-6px) scale(1.12); }
}
@keyframes gc-shimmer {
  0%,100% { filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6)) brightness(1); }
  50%     { filter: drop-shadow(0 6px 28px rgba(244,63,94,0.5)) brightness(1.3); }
}
@keyframes gc-glow-pulse {
  0%,100% { opacity: 0.55; transform: scale(1); }
  50%     { opacity: 0.85; transform: scale(1.15); }
}

.game-card-img span {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
  display: block;
  animation: gc-float 3.5s ease-in-out infinite;
}

.game-card-img::before {
  animation: gc-glow-pulse 3.5s ease-in-out infinite;
}

.game-card:hover .game-card-img::before {
  animation: gc-glow-pulse 1.5s ease-in-out infinite;
}

.game-card.type-slots:hover .game-card-img span { animation: gc-rattle 0.6s ease-in-out infinite; }
.game-card.type-live:hover .game-card-img span { animation: gc-pulse-scale 0.9s ease-in-out infinite; }
.game-card.type-table:hover .game-card-img span { animation: gc-spin 1.2s linear infinite; }
.game-card.type-crash:hover .game-card-img span { animation: gc-rocket 0.8s ease-in-out infinite; }
.game-card.type-sports:hover .game-card-img span { animation: gc-bounce 0.7s ease-in-out infinite; }
.game-card.type-originals:hover .game-card-img span { animation: gc-shimmer 0.8s ease-in-out infinite; }

.game-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.game-card-body h3 {
  margin: 0;
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
}

.game-card-body p {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--color-text-faint);
  margin: 0;
}

.game-card-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

.game-card-badge {
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 24px;
  border: 1px solid;
}

.game-card.type-slots .game-card-badge    { color: #818cf8; background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.25); }
.game-card.type-live .game-card-badge     { color: #2dd4bf; background: rgba(20,184,166,0.12); border-color: rgba(20,184,166,0.25); }
.game-card.type-table .game-card-badge    { color: #c084fc; background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.25); }
.game-card.type-crash .game-card-badge    { color: var(--color-warning-light); background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.25); }
.game-card.type-sports .game-card-badge   { color: #38bdf8; background: rgba(14,165,233,0.12); border-color: rgba(14,165,233,0.25); }
.game-card.type-originals .game-card-badge { color: #fb7185; background: rgba(244,63,94,0.12); border-color: rgba(244,63,94,0.25); }

/* === TOP GAMES TABLE === */
.table-wrapper.rtp-games-table {
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    linear-gradient(165deg, rgba(16, 24, 48, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  border-radius: 16px;
}
.table-wrapper.rtp-games-table::after {
  display: none;
}

.info-table.rtp-games-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.info-table.rtp-games-table col.col-game { width: 26%; }
.info-table.rtp-games-table col.col-provider { width: 20%; }
.info-table.rtp-games-table col.col-rtp { width: 14%; }
.info-table.rtp-games-table col.col-volatility { width: 22%; }
.info-table.rtp-games-table col.col-maxwin { width: 18%; }

.info-table.rtp-games-table th,
.info-table.rtp-games-table td {
  border-bottom: none;
  padding: 18px 22px;
  vertical-align: middle;
}

.info-table.rtp-games-table thead th {
  background: linear-gradient(180deg, rgba(22, 34, 58, 0.98) 0%, rgba(14, 22, 40, 0.92) 100%);
  color: rgba(148, 163, 184, 0.88);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(96, 165, 250, 0.14);
  padding-top: 15px;
  padding-bottom: 15px;
}

.info-table.rtp-games-table thead th:nth-child(3),
.info-table.rtp-games-table thead th:nth-child(4),
.info-table.rtp-games-table tbody td:nth-child(3),
.info-table.rtp-games-table tbody td:nth-child(4) {
  text-align: center;
}

.info-table.rtp-games-table td {
  background: transparent;
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.875rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-left: none;
}

.info-table.rtp-games-table td:first-child {
  color: #f8fafc;
  font-weight: 700;
  font-size: 0.9375rem;
  border-left: none;
  letter-spacing: -0.01em;
}

.info-table.rtp-games-table td:first-child strong {
  font-weight: 700;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.info-table.rtp-games-table .game-emoji {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.22);
}

.info-table.rtp-games-table tbody tr:nth-child(3n+1) .game-emoji {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.24);
}
.info-table.rtp-games-table tbody tr:nth-child(3n+2) .game-emoji {
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.26);
}
.info-table.rtp-games-table tbody tr:nth-child(3n) .game-emoji {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.26);
}

.info-table.rtp-games-table td:last-child {
  text-align: right;
  color: rgba(148, 163, 184, 0.92);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.info-table.rtp-games-table .max-win {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.info-table.rtp-games-table thead th:last-child {
  text-align: right;
}

.info-table.rtp-games-table tbody tr {
  transition: background 0.2s ease;
}

.info-table.rtp-games-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.015);
}

.info-table.rtp-games-table tbody tr:hover td {
  background: rgba(56, 189, 248, 0.05);
}

.info-table.rtp-games-table tbody tr:hover td:first-child {
  color: #fff;
  border-left-color: transparent;
}

.info-table.rtp-games-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table.rtp-games-table tr:last-child td:first-child,
.info-table.rtp-games-table tr:last-child td:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.info-table.rtp-games-table .rtp-high,
.info-table.rtp-games-table .rtp-medium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.info-table.rtp-games-table .rtp-high {
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.32);
  color: #4ade80;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.info-table.rtp-games-table .rtp-medium {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
}

.info-table.rtp-games-table .volatility-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.8125rem;
}

.volatility-dots {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.volatility-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.volatility-dot.active {
  background: #60a5fa;
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}

.volatility-label {
  color: rgba(148, 163, 184, 0.92);
  font-weight: 500;
}

@media (max-width: 768px) {
  .table-wrapper.rtp-games-table {
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .table-wrapper.rtp-games-table::after {
    display: none;
  }

  .info-table.rtp-games-table,
  .info-table.rtp-games-table tbody {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    table-layout: auto;
  }

  .info-table.rtp-games-table colgroup,
  .info-table.rtp-games-table thead {
    display: none !important;
  }

  .info-table.rtp-games-table tbody tr {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "title rtp"
      "provider rtp"
      "volatility maxwin" !important;
    column-gap: 12px;
    row-gap: 8px;
    padding: 16px;
    margin: 0;
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 52%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px !important;
    overflow: hidden;
    clip-path: inset(0 round 16px);
    -webkit-clip-path: inset(0 round 16px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .info-table.rtp-games-table tbody tr:hover {
    border-color: rgba(96, 165, 250, 0.32);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  }

  .info-table.rtp-games-table tbody tr:nth-child(even),
  .info-table.rtp-games-table tbody tr:nth-child(odd) {
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 52%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
  }

  .info-table.rtp-games-table tbody tr:nth-child(even) td {
    background: transparent !important;
  }

  .info-table.rtp-games-table td {
    display: flex !important;
    width: auto !important;
    padding: 0;
    font-size: 0.875rem;
    gap: 6px;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    border-left: none !important;
  }

  .info-table.rtp-games-table td:first-child {
    grid-area: title;
    grid-column: auto !important;
    width: auto !important;
    align-items: center;
    padding: 0;
    margin: 0;
    border: none !important;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #f8fafc !important;
  }

  .info-table.rtp-games-table td:first-child strong {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: normal;
    word-break: normal;
  }

  .info-table.rtp-games-table .game-emoji {
    display: inline-flex;
    margin-right: 0;
    font-size: 1.05rem;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .info-table.rtp-games-table td:nth-child(2) {
    grid-area: provider;
    grid-column: auto !important;
    width: auto !important;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 0 12px;
    margin: 0 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(186, 198, 216, 0.95);
  }

  .info-table.rtp-games-table td:nth-child(2)::before {
    content: attr(data-label);
    display: inline-block !important;
    margin: 0;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(113, 142, 178, 0.95);
  }

  .info-table.rtp-games-table td:nth-child(3) {
    grid-area: rtp;
    grid-column: auto !important;
    grid-row: 1 / span 2;
    position: static;
    width: auto !important;
    min-width: 72px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 6px;
    padding: 0 0 12px;
    margin: 0 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .info-table.rtp-games-table td:nth-child(3)::before {
    content: attr(data-label);
    display: block !important;
    margin: 0;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(113, 142, 178, 0.95);
    text-align: right;
  }

  .info-table.rtp-games-table td:nth-child(3) .rtp-high,
  .info-table.rtp-games-table td:nth-child(3) .rtp-medium {
    min-width: 0;
    padding: 7px 12px;
    font-size: 0.8125rem;
    white-space: nowrap;
    border-radius: 999px;
  }

  .info-table.rtp-games-table td:nth-child(4),
  .info-table.rtp-games-table td:nth-child(5) {
    border-radius: 12px !important;
    padding: 12px;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
    clip-path: inset(0 round 12px);
    -webkit-clip-path: inset(0 round 12px);
  }

  .info-table.rtp-games-table td:nth-child(4) {
    grid-area: volatility;
    grid-column: auto !important;
    background: linear-gradient(
      165deg,
      rgba(37, 99, 235, 0.1) 0%,
      rgba(255, 255, 255, 0.025) 100%
    ) !important;
    border: 1px solid rgba(96, 165, 250, 0.18) !important;
  }

  .info-table.rtp-games-table td:nth-child(5) {
    grid-area: maxwin;
    grid-column: auto !important;
    background: linear-gradient(
      165deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(255, 255, 255, 0.025) 100%
    ) !important;
    border: 1px solid rgba(251, 191, 36, 0.2) !important;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
  }

  .info-table.rtp-games-table td:nth-child(4)::before,
  .info-table.rtp-games-table td:nth-child(5)::before {
    content: attr(data-label);
    display: block !important;
    margin: 0;
    font-size: 0.6rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.92);
    opacity: 1;
    font-weight: 700;
  }

  .info-table.rtp-games-table td:nth-child(4) .volatility-cell {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 0.8125rem;
    color: rgba(226, 232, 240, 0.95);
  }

  .info-table.rtp-games-table td:nth-child(4) .volatility-dots {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(96, 165, 250, 0.2);
  }

  .info-table.rtp-games-table td:nth-child(5) .max-win {
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fde68a;
  }
}

/* === PROVIDERS TABLE === */
.table-wrapper.providers-table {
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    linear-gradient(165deg, rgba(16, 24, 48, 0.94) 0%, rgba(8, 12, 24, 0.98) 100%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  border-radius: 16px;
}
.table-wrapper.providers-table::after {
  display: none;
}

.info-table.providers-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.info-table.providers-table th,
.info-table.providers-table td {
  border-bottom: none;
  padding: 16px 18px;
  vertical-align: middle;
}

.info-table.providers-table thead th {
  background: linear-gradient(180deg, rgba(22, 34, 58, 0.98) 0%, rgba(14, 22, 40, 0.92) 100%);
  color: rgba(148, 163, 184, 0.88);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(96, 165, 250, 0.14);
  padding-top: 14px;
  padding-bottom: 14px;
}

.info-table.providers-table thead th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table.providers-table td {
  background: transparent;
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.875rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-left: none;
}

.info-table.providers-table td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.info-table.providers-table tbody tr {
  transition: background 0.2s ease;
}

.info-table.providers-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.015);
}

.info-table.providers-table tbody tr:hover td {
  background: rgba(56, 189, 248, 0.05);
}

.info-table.providers-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table.providers-table td:first-child {
  color: #f8fafc;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  width: 28%;
}

.info-table.providers-table td:first-child strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: inherit;
}

.info-table.providers-table .provider-emoji {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.22);
}

.info-table.providers-table tbody tr:nth-child(3n+1) .provider-emoji {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.24);
}
.info-table.providers-table tbody tr:nth-child(3n+2) .provider-emoji {
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.26);
}
.info-table.providers-table tbody tr:nth-child(3n) .provider-emoji {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.26);
}

.info-table.providers-table td:nth-child(2) {
  width: 28%;
}

.info-table.providers-table td:nth-child(3) {
  width: 44%;
}

.info-table.providers-table .specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.info-table.providers-table .specialty-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.info-table.providers-table .specialty-tag--jackpot {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(251, 191, 36, 0.32);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

.info-table.providers-table .specialty-tag--crash {
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.14);
  border-color: rgba(34, 211, 238, 0.32);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
}

.info-table.providers-table .specialty-tag--volatile {
  color: #f9a8d4;
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(244, 114, 182, 0.3);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.08);
}

.info-table.providers-table .title-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.info-table.providers-table .title-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.info-table.providers-table tbody tr:hover .title-tag {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(148, 163, 184, 0.28);
}

@media (max-width: 768px) {
  .table-wrapper.providers-table {
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .table-wrapper.providers-table::after {
    display: none;
  }

  .info-table.providers-table,
  .info-table.providers-table tbody {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    table-layout: auto;
  }

  .info-table.providers-table thead {
    display: none !important;
  }

  .info-table.providers-table tbody tr {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) !important;
    grid-template-areas:
      "title title"
      "specialty titles" !important;
    column-gap: 10px;
    row-gap: 10px;
    padding: 16px;
    margin: 0;
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 52%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px !important;
    overflow: hidden;
    clip-path: inset(0 round 16px);
    -webkit-clip-path: inset(0 round 16px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .info-table.providers-table tbody tr:hover {
    border-color: rgba(96, 165, 250, 0.32);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  }

  .info-table.providers-table tbody tr:nth-child(even),
  .info-table.providers-table tbody tr:nth-child(odd) {
    background:
      radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 52%),
      linear-gradient(165deg, rgba(14, 22, 42, 0.96) 0%, rgba(8, 12, 24, 0.99) 100%);
  }

  .info-table.providers-table tbody tr:nth-child(even) td {
    background: transparent !important;
  }

  .info-table.providers-table td {
    display: flex !important;
    width: auto !important;
    padding: 0;
    font-size: 0.875rem;
    gap: 8px;
    background: transparent !important;
    border: none !important;
    border-left: none !important;
  }

  .info-table.providers-table td:first-child {
    grid-area: title;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    align-items: center;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #f8fafc !important;
    padding: 0 0 12px;
    margin: 0 0 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .info-table.providers-table td:first-child::before {
    display: none !important;
    content: none;
  }

  .info-table.providers-table td:first-child strong {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .info-table.providers-table .provider-emoji {
    width: 36px;
    height: 36px;
    margin-right: 0;
    font-size: 1.05rem;
    border-radius: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .info-table.providers-table td:nth-child(2),
  .info-table.providers-table td:nth-child(3) {
    border-radius: 12px !important;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    color: rgba(148, 163, 184, 0.95);
    line-height: 1.45;
    overflow: hidden;
    clip-path: inset(0 round 12px);
    -webkit-clip-path: inset(0 round 12px);
  }

  .info-table.providers-table td:nth-child(2) {
    grid-area: specialty;
    grid-column: auto !important;
    background: linear-gradient(
      165deg,
      rgba(37, 99, 235, 0.1) 0%,
      rgba(255, 255, 255, 0.025) 100%
    ) !important;
    border: 1px solid rgba(96, 165, 250, 0.18) !important;
  }

  .info-table.providers-table td:nth-child(2) .specialty-tags {
    width: 100%;
    gap: 6px;
  }

  .info-table.providers-table td:nth-child(2) .specialty-tag {
    padding: 6px 10px;
    font-size: 0.7rem;
    white-space: nowrap;
    text-align: left;
  }

  .info-table.providers-table td:nth-child(3) {
    grid-area: titles;
    grid-column: auto !important;
    background: linear-gradient(
      165deg,
      rgba(16, 185, 129, 0.08) 0%,
      rgba(255, 255, 255, 0.025) 100%
    ) !important;
    border: 1px solid rgba(52, 211, 153, 0.18) !important;
  }

  .info-table.providers-table td:nth-child(3) .title-tags {
    width: 100%;
    gap: 6px;
  }

  .info-table.providers-table td:nth-child(3) .title-tag {
    padding: 6px 9px;
    font-size: 0.68rem;
    font-weight: 600;
    white-space: normal;
    text-align: left;
    color: #f1f5f9;
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(148, 163, 184, 0.22);
    border-radius: 8px;
  }

  .info-table.providers-table td:nth-child(2)::before,
  .info-table.providers-table td:nth-child(3)::before {
    content: attr(data-label);
    display: block !important;
    margin: 0;
    font-size: 0.6rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.92);
    opacity: 1;
    font-weight: 700;
  }

  .info-table.providers-table tbody tr:hover td:first-child {
    color: #fff !important;
    border-left-color: transparent;
  }
}

@media (max-width: 380px) {
  .info-table.providers-table tbody tr {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "specialty"
      "titles" !important;
    padding: 14px;
  }

  .info-table.providers-table td:first-child {
    font-size: 0.95rem;
  }

  .info-table.providers-table td:nth-child(2),
  .info-table.providers-table td:nth-child(3) {
    width: 100% !important;
  }

  .info-table.providers-table td:nth-child(2) .specialty-tags {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-table.providers-table .provider-emoji {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
}

@media (max-width: 380px) {
  .info-table.rtp-games-table tbody tr {
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "title title"
      "provider rtp"
      "volatility maxwin" !important;
    padding: 14px;
    row-gap: 8px;
  }

  .info-table.rtp-games-table td:first-child {
    font-size: 0.95rem;
  }

  .info-table.rtp-games-table td:nth-child(2) {
    padding-bottom: 10px;
    margin-bottom: 2px;
    align-self: end;
  }

  .info-table.rtp-games-table td:nth-child(3) {
    grid-row: auto;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 10px;
    margin-bottom: 2px;
    align-self: end;
  }

  .info-table.rtp-games-table td:nth-child(4),
  .info-table.rtp-games-table td:nth-child(5) {
    width: auto !important;
  }

  .info-table.rtp-games-table .game-emoji {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
}

/* === GAME HIGHLIGHT === */
.game-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-lg);
}

.game-highlight-card {
  --gh-accent: rgba(59, 130, 246, 0.42);
  --gh-accent-soft: rgba(59, 130, 246, 0.14);
  --gh-banner-bg: #0f172a;
  position: relative;
  background: linear-gradient(
    165deg,
    rgba(20, 30, 52, 0.97) 0%,
    rgba(9, 13, 24, 0.99) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  isolation: isolate;
}

.game-highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--gh-accent) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.game-highlight-card:hover {
  transform: translateY(-6px);
  border-color: var(--gh-accent);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.42),
    0 0 32px var(--gh-accent-soft);
}

.game-highlight-banner {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 18%, var(--gh-accent-soft) 0%, transparent 42%),
    radial-gradient(circle at 18% 88%, rgba(255, 255, 255, 0.06) 0%, transparent 48%),
    var(--gh-banner-bg);
}

/* Reserve square space before images load (same pattern as .new-release-thumb) */
.game-highlight-banner::before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.game-highlight-banner::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(8, 12, 22, 0.72));
  pointer-events: none;
  z-index: 1;
}

.game-highlight-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.game-highlight-card:hover .game-highlight-logo {
  transform: scale(1.05);
  filter: saturate(1.06) brightness(1.03);
}

.game-highlight-card--slots {
  --gh-accent: rgba(251, 191, 36, 0.5);
  --gh-accent-soft: rgba(251, 191, 36, 0.16);
  --gh-banner-bg: #1a1033;
}

.game-highlight-card--live {
  --gh-accent: rgba(244, 114, 182, 0.42);
  --gh-accent-soft: rgba(244, 114, 182, 0.14);
  --gh-banner-bg: #1e1035;
}

.game-highlight-card--crash {
  --gh-accent: rgba(239, 68, 68, 0.45);
  --gh-accent-soft: rgba(239, 68, 68, 0.14);
  --gh-banner-bg: #140a12;
}

.game-highlight-card--table {
  --gh-accent: rgba(59, 130, 246, 0.45);
  --gh-accent-soft: rgba(59, 130, 246, 0.14);
  --gh-banner-bg: #0f172a;
}

.game-highlight-card--originals {
  --gh-accent: rgba(16, 185, 129, 0.42);
  --gh-accent-soft: rgba(16, 185, 129, 0.14);
  --gh-banner-bg: #0a1f18;
}

.game-highlight-card--slots .game-highlight-logo,
.game-highlight-card--live .game-highlight-logo,
.game-highlight-card--crash .game-highlight-logo,
.game-highlight-card--table .game-highlight-logo,
.game-highlight-card--originals .game-highlight-logo {
  object-fit: cover;
  object-position: center;
}

.game-highlight-banner .rtp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(8, 16, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #86efac;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.game-highlight-banner .rtp-badge--medium {
  color: #fcd34d;
  border-color: rgba(251, 191, 36, 0.28);
}

.game-highlight-body {
  padding: 20px 22px 24px;
}

.game-highlight-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.game-highlight-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.game-highlight-meta .meta-tag {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

.game-highlight-meta .meta-tag--provider {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.24);
}

.game-highlight-meta .meta-tag--type {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.game-highlight-meta .meta-tag--feature {
  color: #bbf7d0;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.24);
}

.game-highlight-body p {
  font-size: 0.8125rem;
  line-height: 1.68;
  color: rgba(148, 163, 184, 0.96);
  margin: 0;
}

@media (max-width: 768px) {
  .game-highlight-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .game-highlight-body {
    padding: 16px 18px 20px;
  }

  .game-highlight-body h3 {
    font-size: 1.0625rem;
  }
}


/* Games hub responsive (merged into /1win) */
@media (max-width: 768px) {
  .game-highlight-grid { grid-template-columns: 1fr; }
  .game-card-img { height: 150px; font-size: 3.4rem; }
}


/* === SAFETY HUB STYLES (merged into /1win) === */
/* === COMPLAINTS TABLE === */
.complaints-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: transparent;
}

.complaints-table thead th {
  background: rgba(15, 23, 42, 0.92);
  color: rgba(186, 198, 216, 0.78);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  white-space: nowrap;
}

.complaints-table thead th:nth-child(2) {
  text-align: center;
  width: 140px;
}

.complaints-table tbody th {
  background: transparent;
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  white-space: normal;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: none;
  vertical-align: middle;
}

.complaints-table tbody td {
  background: transparent;
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: none;
  vertical-align: middle;
}

.complaints-table tbody td:nth-child(2) {
  text-align: center;
}

.complaints-table tbody tr:last-child th,
.complaints-table tbody tr:last-child td {
  border-bottom: none;
}

.complaints-table tbody tr:hover th,
.complaints-table tbody tr:hover td {
  background: rgba(59, 130, 246, 0.06);
  color: #f8fafc;
}

.freq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: 1px solid transparent;
}

.freq-pill--common {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.28);
}

.freq-pill--occasional {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}

.freq-pill--rare {
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.28);
}

.freq-pill--very-rare {
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.28);
}

@media (max-width: 768px) {
  .complaints-table,
  .complaints-table tbody,
  .complaints-table tr,
  .complaints-table th,
  .complaints-table td {
    display: block;
    width: 100%;
  }

  .complaints-table thead {
    display: none;
  }

  .complaints-table {
    background: transparent;
    overflow: visible;
    padding: 10px 12px 14px;
  }

  .complaints-table tbody tr {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    margin-bottom: 10px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(15, 22, 40, 0.92), rgba(9, 13, 26, 0.98));
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  }

  .complaints-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .complaints-table tbody th {
    grid-column: 1 / -1;
    border-left: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.18);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.05));
    color: #dbeafe;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 12px 14px;
  }

  .complaints-table tbody td {
    padding: 10px 14px 14px;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
  }

  .complaints-table tbody td:nth-child(2) {
    text-align: left;
    padding-right: 0;
  }

  .complaints-table tbody td::before {
    content: attr(data-label);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    opacity: 0.85;
  }

  .complaints-table tbody tr:hover th,
  .complaints-table tbody tr:hover td {
    background: transparent;
  }

  .freq-pill {
    min-width: 0;
  }
}
