/* =========================================
   ROYAL BET — Index Page Styles v2
   Theme: Crimson · Black · Gold
   ========================================= */

/* ── Global word-wrap ── */
*, h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
h1, h2, h3 { hyphens: auto; }
.m-0 { margin: 0 !important; }

/* ══════════════════════════════════════════
   BADGE
══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  color: var(--gold-vivid);
  border: 1px solid var(--border-gold);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
}
.badge i { color: var(--gold-vivid); }

/* ══════════════════════════════════════════
   SECTION SPACING
══════════════════════════════════════════ */
.content-section { padding: 80px 0; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(192,22,42,0.55) 0%, rgba(6,4,5,0.90) 45%, rgba(6,4,5,0.95) 100%),
    linear-gradient(180deg, #0a0608 0%, #110b0d 100%);
}

/* Hero animated glow orbs */
.hero::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,22,42,0.30) 0%, transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
  animation: heroOrb 8s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.22) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  pointer-events: none;
  animation: heroOrb 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroOrb {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.15) translate(20px,20px); }
}

.hero .container { position: relative; z-index: 1; padding: 0; }

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* ── Hero Left ── */
.hero-text-content { position: relative; }

.hero-logo { margin-bottom: 1.5rem; }
.hero-logo img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 20px var(--gold-glow));
  transition: transform var(--transition), filter var(--transition);
}
.hero-logo img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 32px var(--gold-glow));
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
/* No pseudo-element underline */
.hero h1::after { content: none; }
.hero-text-content::before { content: none; }

.hero-text-content > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ── Hero Actions ── */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.82rem 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-core) 0%, var(--red-vivid) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(192,22,42,0.45), 0 1px 0 rgba(255,255,255,0.10) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.10);
  box-shadow: 0 8px 40px rgba(192,22,42,0.60), var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
  box-shadow: none;
}
.btn-secondary:hover {
  background: rgba(212,160,23,0.10);
  border-color: var(--gold-vivid);
  transform: translateY(-2px);
  color: var(--gold-vivid);
}

/* Hero-specific button overrides */
.hero .hero-actions .btn-primary  { padding: 0.85rem 1.75rem; }
.hero .hero-actions .btn-secondary { padding: 0.85rem 1.75rem; }

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,160,23,0.20);
  flex-wrap: wrap;
}
.hero-stats .stat-item {
  flex: 1;
  min-width: 130px;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid var(--border);
}
.hero-stats .stat-item:first-child { padding-left: 0; }
.hero-stats .stat-item:last-child  { border-right: none; }

.stat-item h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-vivid);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.stat-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ── Hero Visual (right card) ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-glass-card {
  background: linear-gradient(145deg, rgba(192,22,42,0.12) 0%, rgba(17,11,13,0.90) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.60), 0 0 60px rgba(212,160,23,0.12);
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}
.floating-glass-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-core), var(--gold-vivid), var(--red-core));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.floating-glass-card::after { content: none; }

.jackpot-amount {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0.75rem 0 0.25rem;
}

/* ── Jackpot card inner elements ── */
.jackpot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.jackpot-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.jackpot-title i { color: var(--gold-vivid); }

.jackpot-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--red-soft);
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jackpot-live-dot {
  width: 7px;
  height: 7px;
  background: var(--red-soft);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-soft);
  animation: pulse 1.5s infinite;
}

.jackpot-trend {
  color: var(--text-muted);
  font-size: 0.80rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.jackpot-trend i { color: #00d68f; }

.jackpot-details {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-gold);
}

.jackpot-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.jackpot-detail-row:last-child { margin-bottom: 0; }

.jackpot-detail-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  flex-shrink: 0;
}

.jackpot-detail-value {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.88rem;
  text-align: right;
}

.jackpot-highlight { color: var(--gold-vivid); }

.jackpot-detail-game {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.jackpot-cta {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Jackpot card responsive */
@media (max-width: 768px) {
  .jackpot-header { margin-bottom: 1rem; }
  .jackpot-title { font-size: 0.88rem; gap: 6px; }
  .jackpot-live-badge { font-size: 0.62rem; }
  .jackpot-live-dot { width: 6px; height: 6px; }
  .jackpot-trend { font-size: 0.72rem; }
  .jackpot-details { margin-top: 1.15rem; padding-top: 1rem; }
  .jackpot-detail-row { flex-wrap: wrap; gap: 2px; }
  .jackpot-detail-label { font-size: 0.65rem; }
  .jackpot-detail-value { font-size: 0.80rem; }
  .jackpot-detail-game { font-size: 0.78rem; }
  .jackpot-cta { margin-top: 1.15rem; }
}

@media (max-width: 480px) {
  .jackpot-header { margin-bottom: 0.75rem; }
  .jackpot-title { font-size: 0.78rem; gap: 5px; }
  .jackpot-live-badge { font-size: 0.58rem; letter-spacing: 0.5px; }
  .jackpot-live-dot { width: 5px; height: 5px; }
  .jackpot-trend { font-size: 0.68rem; gap: 4px; margin-top: 4px; }
  .jackpot-details { margin-top: 0.85rem; padding-top: 0.75rem; }
  .jackpot-detail-row { margin-bottom: 0.5rem; }
  .jackpot-detail-label { font-size: 0.60rem; letter-spacing: 0.5px; }
  .jackpot-detail-value { font-size: 0.72rem; }
  .jackpot-detail-game { font-size: 0.72rem; }
  .jackpot-cta { margin-top: 0.85rem; }
}

@media (max-width: 360px) {
  .jackpot-title { font-size: 0.72rem; }
  .jackpot-live-badge { font-size: 0.52rem; }
  .jackpot-trend { font-size: 0.62rem; }
  .jackpot-detail-label { font-size: 0.55rem; }
  .jackpot-detail-value { font-size: 0.65rem; }
  .jackpot-detail-game { font-size: 0.65rem; }
}

/* ══════════════════════════════════════════
   LIVE WINS TICKER
══════════════════════════════════════════ */
.live-wins-bar {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.live-wins-label {
  background: var(--red-core);
  color: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.70rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border-right: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  height: 100%;
  min-height: 36px;
}

.wins-track-container { flex:1; overflow:hidden; padding-left: 16px; }

.wins-track {
  display: flex;
  gap: 40px;
  animation: marquee 190s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.win-ticket {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.win-user   { color: var(--text-primary); font-weight: 700; }
.win-amount { color: var(--gold-vivid); font-weight: 800; }

/* ══════════════════════════════════════════
   TOURNAMENTS
══════════════════════════════════════════ */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tournament-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.tournament-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 30px var(--gold-glow-soft);
}
.tournament-card.featured {
  border-color: var(--border-red);
  box-shadow: 0 0 0 1px rgba(192,22,42,0.12);
}
.tournament-card.featured:hover {
  border-color: var(--red-vivid);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 40px var(--red-glow-soft);
}

.tourney-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 10;
  background: rgba(6,4,5,0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-vivid);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.tourney-tag.accent {
  background: linear-gradient(135deg, var(--red-core), var(--red-vivid));
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192,22,42,0.40);
}

.tourney-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.tourney-img::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--bg-card));
  z-index: 5;
}
.tourney-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 600ms var(--ease), opacity 400ms;
}
.tournament-card:hover .tourney-img img { transform: scale(1.08); opacity: 0.95; }

.tourney-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: -2rem;
}
.tourney-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.tourney-prize {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 600;
  margin-bottom: 1.25rem;
  background: rgba(212,160,23,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.tourney-prize span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-vivid);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.tournament-card.featured .tourney-prize span { color: var(--red-soft); }

.tourney-timer {
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tourney-timer span {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════
   PROVIDERS TICKER
══════════════════════════════════════════ */
.providers-track-container { overflow: hidden; }
.providers-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  padding: 8px 0;
}

.provider-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
}
.provider-logo i { color: var(--gold-vivid); }
.provider-logo:hover {
  color: var(--gold-vivid);
  border-color: var(--border-gold);
  background: rgba(212,160,23,0.06);
}

/* ══════════════════════════════════════════
   VIP TIERS
══════════════════════════════════════════ */
.vip-tiers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.vip-tier-horizontal {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.vip-tier-horizontal::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.vip-tier-horizontal:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 70px rgba(0,0,0,0.50), 0 0 30px var(--gold-glow-soft);
}
.vip-tier-horizontal:hover::before { opacity: 1; }

/* Featured VIP card */
.vip-tier-horizontal[style*="var(--primary-color)"],
.vip-tier-horizontal[style*="primary-color"] {
  border-color: var(--border-gold) !important;
  background: linear-gradient(160deg, rgba(212,160,23,0.08) 0%, var(--bg-card-2) 100%) !important;
}
.vip-tier-horizontal[style*="var(--primary-color)"]::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--gold-vivid), transparent);
}

.vip-tier-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.vip-tier-horizontal:hover .vip-tier-icon {
  border-color: var(--border-gold);
  box-shadow: 0 0 24px var(--gold-glow-soft);
}

.vip-tier-info h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.vip-tier-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.vip-perks { width: 100%; margin-bottom: 1.5rem; flex: 1; }
.vip-perks li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.88rem;
}
.vip-perks li:last-child { border-bottom: none; }
.vip-perks li i { color: var(--gold-vivid); font-size: 0.75rem; }
.vip-action { width: 100%; }
.vip-action a { width: 100%; display: flex; justify-content: center; }

/* ══════════════════════════════════════════
   LIVE BETS TABLE
══════════════════════════════════════════ */
.bets-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
}
.bets-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.bets-table th {
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-gold);
  background: rgba(212,160,23,0.05);
  white-space: nowrap;
}
.bets-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.90rem;
  white-space: nowrap;
}
.bets-table tbody tr:hover { background: rgba(212,160,23,0.03); }
.bets-table tbody tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════════
   WINNERS / TESTIMONIALS
══════════════════════════════════════════ */
.winners-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.total-paid-card {
  background: linear-gradient(135deg, rgba(192,22,42,0.12) 0%, rgba(212,160,23,0.08) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.total-paid-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-core), var(--gold-vivid));
}
.paid-val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-vivid);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.paid-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.winners-gallery { display: flex; flex-direction: column; gap: 1rem; }

.winner-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.winner-testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 24px var(--gold-glow-soft);
}

.winner-av {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,22,42,0.14);
  border: 1px solid var(--border-red);
  color: var(--red-soft);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.winner-quote p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.winner-quote h4 {
  font-family: var(--font-body);
  font-size: 0.80rem;
  color: var(--gold-vivid);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.winner-quote h4 span {
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   WHY CHOOSE GRID
══════════════════════════════════════════ */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--red-core), var(--gold-vivid));
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.why-card:hover::before { opacity: 1; }
.why-card h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--text-primary); margin-bottom: 1rem; }

/* ══════════════════════════════════════════
   NEWS / CATEGORIES
══════════════════════════════════════════ */
.news-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.news-featured {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.news-featured:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.news-featured img {
  width: 100%; height: 260px;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 400ms, transform 600ms var(--ease);
  border-radius: 0;
}
.news-featured:hover img { opacity:1; transform:scale(1.04); }
.news-featured-content { padding: 1.75rem; }
.news-featured-content h3 { font-family: var(--font-display); font-size: 1.65rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.news-featured-content p { color: var(--text-secondary); line-height: 1.75; font-size: 0.92rem; }

.news-list { display: flex; flex-direction: column; gap: 1rem; }
.news-list-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  align-items: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.news-list-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.40);
}
.news-list-item img { width: 110px; height: 110px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.news-content h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; color: var(--text-primary); }
.news-content p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.faq-support-card {
  background: linear-gradient(135deg, rgba(192,22,42,0.10) 0%, rgba(212,160,23,0.06) 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.faq-support-card i { font-size: 2rem; color: var(--red-soft); flex-shrink: 0; }
.faq-support-card h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.faq-support-card p { font-size: 0.82rem; color: var(--text-muted); }

.faq-grid { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--border-gold); }

.faq-question {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.faq-question:hover { color: var(--gold-vivid); }
.faq-question i {
  color: var(--gold-vivid);
  font-size: 0.80rem;
  flex-shrink: 0;
  transition: transform 240ms var(--ease);
}
.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  padding: 0 1.25rem;
  opacity: 0;
  transition: max-height 280ms var(--ease), padding 280ms var(--ease), opacity 280ms ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem;
  opacity: 1;
}
.faq-answer p { color: var(--text-secondary); font-size: 0.90rem; line-height: 1.75; }

/* ══════════════════════════════════════════
   TRUST / SECURITY SECTION
══════════════════════════════════════════ */
.trust-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(192,22,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trust-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.trust-subtitle {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.trust-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.trust-card-v2:hover { transform: translateY(-6px); }

.trust-icon-wrap {
  width: 66px; height: 66px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.data-shield .trust-icon-wrap      { color: #00d68f; border-color: rgba(0,214,143,0.25); box-shadow: 0 0 24px rgba(0,214,143,0.12); }
.lightning-speed .trust-icon-wrap  { color: var(--gold-vivid); border-color: var(--border-gold); box-shadow: 0 0 24px var(--gold-glow-soft); }
.fair-play .trust-icon-wrap        { color: var(--red-soft); border-color: var(--border-red); box-shadow: 0 0 24px var(--red-glow-soft); }

.data-shield:hover      { border-color: rgba(0,214,143,0.30); box-shadow: 0 16px 60px rgba(0,214,143,0.08); }
.lightning-speed:hover  { border-color: var(--border-gold);    box-shadow: 0 16px 60px var(--gold-glow-soft); }
.fair-play:hover        { border-color: var(--border-red);     box-shadow: 0 16px 60px var(--red-glow-soft); }

.trust-content { z-index: 2; }
.trust-content h3 { font-family: var(--font-body); font-size: 1.25rem; color: var(--text-primary); margin-bottom: 0.75rem; font-weight: 700; }
.trust-content p  { color: var(--text-secondary); line-height: 1.7; font-size: 0.90rem; }

.trust-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 500ms ease;
  z-index: 0;
  pointer-events: none;
}
.data-shield .trust-glow      { background: radial-gradient(circle at 10% 10%, rgba(0,214,143,0.10) 0%, transparent 60%); }
.lightning-speed .trust-glow  { background: radial-gradient(circle at 10% 10%, rgba(212,160,23,0.10) 0%, transparent 60%); }
.fair-play .trust-glow        { background: radial-gradient(circle at 10% 10%, rgba(192,22,42,0.10) 0%, transparent 60%); }
.trust-card-v2:hover .trust-glow { opacity: 1; }

/* ══════════════════════════════════════════
   CRYPTO STRIP
══════════════════════════════════════════ */
.crypto-strip {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.25rem 0;
  overflow: hidden;
}
.crypto-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.crypto-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.90rem;
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color var(--transition);
  white-space: nowrap;
}
.crypto-track span:hover { color: var(--gold-vivid); }
.crypto-track span i { font-size: 1.1rem; color: var(--gold-vivid); }

/* ══════════════════════════════════════════
   FOOTER REGISTER BANNER
══════════════════════════════════════════ */
.footer-register-banner {
  background:
    radial-gradient(ellipse 700px 400px at 10% 50%, rgba(192,22,42,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 700px 400px at 90% 50%, rgba(212,160,23,0.14) 0%, transparent 60%),
    var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.footer-register-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20 Z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
}

.footer-register-banner .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.footer-register-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.footer-register-banner span { color: var(--gold-vivid); }

/* ══════════════════════════════════════════
   SECTION HEADER CENTERED
══════════════════════════════════════════ */
.section-header-centered {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════
   FEATURES GRID
══════════════════════════════════════════ */
.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.feature-box {
  background: var(--bg-card);
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.feature-icon { font-size: 2.25rem; color: var(--gold-vivid); margin-bottom: 1rem; }
.feature-box h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.65rem; color: var(--text-primary); }
.feature-box p  { color: var(--text-secondary); line-height: 1.7; font-size: 0.88rem; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablet landscape ── */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-text-content { display: flex; flex-direction: column; align-items: center; }
  .hero-text-content > p { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stats .stat-item { border-right: none; padding: 0 1.25rem; }
  .hero-visual { display: flex; justify-content: center; }
  .tournaments-grid { grid-template-columns: 1fr; }
  .vip-tiers-row { grid-template-columns: 1fr; }
  .winners-layout { grid-template-columns: 1fr; }
  .news-split-grid { grid-template-columns: 1fr; }
  .faq-split { grid-template-columns: 1fr; }
  .trust-grid-v2 { grid-template-columns: 1fr 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .features-grid-modern { grid-template-columns: 1fr 1fr; }
}

/* ── Tablet portrait ── */
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 2rem); padding-bottom: 3.5rem; }
  .hero-split { gap: 2rem; }
  .floating-glass-card { max-width: 100%; }
}

/* ── Mobile landscape / small tablets ── */
@media (max-width: 768px) {
  .content-section { padding: 48px 0; }

  /* Hero */
  .hero h1 { font-size: 2.2rem; }
  .hero { padding-bottom: 3rem; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stats .stat-item {
    min-width: 0;
    flex: 1 1 calc(50% - 12px);
    padding: 0.75rem 0.5rem;
    text-align: center;
  }
  .stat-item h4 { font-size: 1.5rem; }
  .stat-item p { font-size: 0.68rem; letter-spacing: 0.10em; }

  /* Jackpot card */
  .floating-glass-card { padding: 1.5rem; }
  .jackpot-amount { font-size: 1.65rem !important; }

  /* News / Categories */
  .news-list-item { flex-direction: column; }
  .news-list-item img { width: 100%; height: 180px; }
  .news-featured img { height: 200px; }
  .news-featured-content { padding: 1.25rem; }
  .news-featured-content h3 { font-size: 1.35rem; }

  /* Ticker */
  .live-wins-bar { flex-direction: column; padding: 0 0 10px; }
  .live-wins-label { width: 100%; justify-content: center; border-right: none; border-bottom: 1px solid var(--border); }
  .wins-track-container { padding-left: 0; }

  /* Trust */
  .trust-grid-v2 { grid-template-columns: 1fr; }
  .trust-card-v2 { padding: 1.75rem; }
  .trust-header { margin-bottom: 2.5rem; }

  /* Features */
  .features-grid-modern { grid-template-columns: 1fr; }

  /* Table */
  .bets-table th,
  .bets-table td { padding: 0.75rem 0.9rem; font-size: 0.82rem; }

  /* VIP */
  .vip-tier-horizontal { padding: 1.75rem; }
  .vip-tier-icon { width: 64px; height: 64px; font-size: 1.65rem; }
  .vip-tier-info h3 { font-size: 1.35rem; }
  .vip-perks li { font-size: 0.82rem; padding: 8px 0; }

  /* CTA banner */
  .footer-register-banner { padding: 4rem 0; }
  .footer-register-banner h3 { font-size: 1.8rem; }

  /* Hero buttons full-width on mobile */
  .hero-actions { flex-direction: column; width: 100%; max-width: 360px; }
  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }

  /* FAQ split — responsible gambling section */
  .faq-info h2 { font-size: 1.6rem; }

  /* Contact section */
  .winners-layout { gap: 2rem; }
  .total-paid-card .paid-val { font-size: 1.8rem; }

  /* Ad banners — reduce margin on mobile */
  .container[style*="margin:3.5rem"] { margin: 2rem auto !important; }
}

/* ══════════════════════════════════════════
   TOURNAMENT SECTION — New Horizontal Layout
   ══════════════════════════════════════════ */

.tourney-section {
  background: linear-gradient(180deg, var(--bg-base) 0%, rgba(192,22,42,0.05) 50%, var(--bg-base) 100%);
}

/* Header row: title left, tabs right */
.tourney-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

/* Filter tabs */
.tourney-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tourney-tab {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.tourney-tab:hover {
  color: var(--text-primary);
  border-color: var(--border-gold);
  background: rgba(212,160,23,0.07);
}
.tourney-tab.active {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-vivid), var(--gold-light));
  border-color: transparent;
  box-shadow: 0 4px 18px var(--gold-glow-soft);
}

/* 4-column card grid */
.tourney-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Individual card */
.tourney-list-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.tourney-list-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 28px var(--gold-glow-soft);
}
.tourney-list-card.featured {
  border-color: rgba(212,160,23,0.30);
  box-shadow: 0 0 0 1px rgba(212,160,23,0.08);
}
.tourney-list-card.featured:hover {
  border-color: var(--gold-vivid);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 40px var(--gold-glow);
}

/* Card image area */
.tourney-list-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.tourney-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.80;
  transition: transform 600ms var(--ease), opacity 400ms;
}
.tourney-list-card:hover .tourney-list-img img {
  transform: scale(1.08);
  opacity: 0.92;
}
/* bottom fade on image */
.tourney-list-img::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, var(--bg-card));
  pointer-events: none;
}

/* Status badges */
.tourney-list-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}
.tourney-list-badge.live-badge  { background: rgba(192,22,42,0.85); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.tourney-list-badge.vip-badge   { background: linear-gradient(135deg, var(--gold-core), var(--gold-vivid)); color: var(--bg-deep); border: none; box-shadow: 0 4px 14px var(--gold-glow-soft); }
.tourney-list-badge.soon-badge  { background: rgba(255,255,255,0.12); color: var(--text-primary); border: 1px solid var(--border); }

/* Card body */
.tourney-list-body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.tourney-list-cat {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tourney-list-cat i { font-size: 0.65rem; }

.tourney-list-body h3 {
  font-family: var(--font-display);
  font-size: 1.10rem;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin: 0;
}

/* Prize box */
.tourney-list-prize {
  background: rgba(212,160,23,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.prize-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.prize-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red-soft);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* Meta row: participants + timer */
.tourney-list-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.tourney-list-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tourney-list-meta i { color: var(--gold-vivid); font-size: 0.72rem; }

/* CTA button inside card */
.tourney-list-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  padding: 0.62rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--red-core), var(--red-vivid));
  border: none;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(192,22,42,0.35);
}
.tourney-list-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(192,22,42,0.55);
  color: #fff;
}
.tourney-list-btn.gold-btn {
  background: linear-gradient(135deg, var(--gold-core), var(--gold-light));
  color: var(--bg-deep);
  box-shadow: 0 4px 16px var(--gold-glow-soft);
}
.tourney-list-btn.gold-btn:hover {
  box-shadow: 0 8px 28px var(--gold-glow);
}

/* Bottom CTA strip */
.tourney-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding: 1.1rem 1.5rem;
  background: rgba(212,160,23,0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}
.tourney-cta-strip p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Hidden card (tab filter) */
.tourney-list-card.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .tourney-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tourney-header-row { flex-direction: column; align-items: flex-start; }
  .tourney-list-grid  { grid-template-columns: 1fr; }
  .tourney-cta-strip  { flex-direction: column; align-items: stretch; text-align: center; }
  .tourney-cta-strip .btn-secondary { width: 100%; justify-content: center; }
  .tourney-list-body { padding: 1rem; }
  .tourney-list-body h3 { font-size: 1rem; }
  .prize-val { font-size: 1.1rem; }
  .tourney-list-img { height: 140px; }
  .tourney-tabs { width: 100%; }
  .tourney-tab { flex: 1; text-align: center; justify-content: center; padding: 0.5rem 0.75rem; font-size: 0.72rem; }
}

/* ══════════════════════════════════════════
   ACTIVITY / REAL-TIME SECTION
   ══════════════════════════════════════════ */

.activity-section {
  background: rgba(0,0,0,0.38);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

/* Header row */
.activity-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.activity-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,22,42,0.14);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-soft);
}

/* ── Stat strip ── */
.activity-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.act-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.act-stat:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.act-stat > i {
  font-size: 1.6rem;
  color: var(--gold-vivid);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.act-stat > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.act-stat-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1;
}

.act-stat-lbl {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Two-column body ── */
.activity-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

/* Shared column label */
.activity-feed-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 0.85rem;
}
.activity-feed-label i { color: var(--gold-vivid); }

/* ── Feed cards ── */
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feed-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  transition: border-color var(--transition), transform var(--transition), opacity var(--transition);
  position: relative;
  overflow: hidden;
}
.feed-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
}
.feed-card.win::before  { background: #00d68f; }
.feed-card.loss::before { background: var(--text-muted); }

.feed-card:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

/* Game icon circle */
.feed-game-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,160,23,0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-vivid);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Info block */
.feed-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.feed-player {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.feed-game {
  font-size: 0.78rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-time {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Result block */
.feed-result {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.feed-mult {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: #00d68f;
  background: rgba(0,214,143,0.10);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  letter-spacing: 0.06em;
}
.feed-mult.loss-mult {
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
}
.feed-amount {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.feed-amount.win-amount  { color: var(--gold-vivid); }
.feed-amount.loss-amount { color: var(--text-muted); }

/* ── Leaderboard ── */
.leaderboard {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.leader-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.leader-row:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

/* Top 3 special styles */
.leader-row.rank-1 {
  background: linear-gradient(135deg, rgba(212,160,23,0.14) 0%, var(--bg-card) 100%);
  border-color: var(--border-gold);
}
.leader-row.rank-2 {
  background: linear-gradient(135deg, rgba(192,192,192,0.08) 0%, var(--bg-card) 100%);
  border-color: rgba(192,192,192,0.20);
}
.leader-row.rank-3 {
  background: linear-gradient(135deg, rgba(205,127,50,0.10) 0%, var(--bg-card) 100%);
  border-color: rgba(205,127,50,0.22);
}

.leader-rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 800;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.rank-1 .leader-rank { background: linear-gradient(135deg,var(--gold-core),var(--gold-vivid)); color: var(--bg-deep); border: none; font-size: 0.85rem; }
.rank-2 .leader-rank { background: rgba(192,192,192,0.18); color: #ddd; border-color: rgba(192,192,192,0.30); }
.rank-3 .leader-rank { background: rgba(205,127,50,0.18); color: #cd7f32; border-color: rgba(205,127,50,0.35); }

.leader-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.leader-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.leader-game {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leader-prize {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-vivid);
  flex-shrink: 0;
  white-space: nowrap;
}
.rank-1 .leader-prize { font-size: 1rem; }

/* Leaderboard CTA */
.leader-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(192,22,42,0.14) 0%, rgba(212,160,23,0.08) 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.leader-cta p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .activity-body { grid-template-columns: 1fr; }
  .activity-stats-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .activity-stats-strip { grid-template-columns: 1fr 1fr; }
  .activity-header-row  { flex-direction: column; align-items: flex-start; }
  .feed-card { padding: 0.65rem 0.75rem; gap: 0.75rem; }
  .feed-game-icon { width: 34px; height: 34px; font-size: 0.88rem; }
  .feed-player { font-size: 0.82rem; }
  .feed-game { font-size: 0.72rem; }
  .feed-amount { font-size: 0.82rem; }
  .feed-mult { font-size: 0.68rem; padding: 2px 6px; }
  .act-stat { padding: 0.75rem 1rem; gap: 0.75rem; }
  .act-stat > i { font-size: 1.3rem; }
  .act-stat-val { font-size: 1.05rem; }
  .act-stat-lbl { font-size: 0.65rem; }
  .leader-row { padding: 0.65rem 0.85rem; gap: 0.65rem; }
  .leader-name { font-size: 0.82rem; }
  .leader-prize { font-size: 0.82rem; }
  .leader-cta { flex-direction: column; text-align: center; }
  .leader-cta .btn-primary { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   WINNERS / TESTIMONIALS — New Layout
   ══════════════════════════════════════════ */

.winners-section {
  background:
    radial-gradient(ellipse 800px 500px at 0% 50%,   rgba(192,22,42,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 50%, rgba(212,160,23,0.06) 0%, transparent 60%),
    var(--bg-base);
}

/* ── Trust stat bar ── */
.winners-stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.25rem 2rem;
  margin: 2rem auto 2.75rem;
  max-width: 860px;
  flex-wrap: wrap;
}

.w-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 2.5rem;
  flex: 1;
  min-width: 120px;
}

.w-stat-val {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-vivid);
  letter-spacing: 0.02em;
  line-height: 1;
}

.w-stat-lbl {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.w-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-gold);
  flex-shrink: 0;
}

/* ── 3-column testimonial grid ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Base testimonial card ── */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(192,22,42,0.08);
  pointer-events: none;
  user-select: none;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: 0 20px 60px rgba(0,0,0,0.50), 0 0 28px var(--red-glow-soft);
}

/* ── Featured card — slightly wider feel via accent border ── */
.testi-card.testi-featured {
  border-color: var(--border-red);
  background: linear-gradient(160deg, rgba(192,22,42,0.08) 0%, var(--bg-card) 55%);
  box-shadow: 0 0 0 1px rgba(192,22,42,0.10);
}
.testi-card.testi-featured::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-core), var(--gold-vivid), var(--red-core));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.testi-card.testi-featured:hover {
  border-color: var(--red-vivid);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55), 0 0 40px var(--red-glow-soft);
}

/* ── Card top row: avatar + meta + win badge ── */
.testi-top {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(192,22,42,0.14);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-soft);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.testi-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testi-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.testi-location {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.testi-location i { font-size: 0.65rem; color: var(--gold-vivid); }

.testi-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.testi-stars i {
  font-size: 0.68rem;
  color: var(--gold-vivid);
}

/* Win amount badge top-right */
.testi-win-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
  background: rgba(192,22,42,0.10);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.testi-win-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testi-win-val {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--red-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── Quote text ── */
.testi-quote {
  font-size: 0.90rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ── Game tag footer ── */
.testi-game-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--red-soft);
  background: rgba(192,22,42,0.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  width: fit-content;
}
.testi-game-tag span { color: var(--text-muted); font-weight: 600; }

/* ── CTA card (6th slot) ── */
.testi-card.testi-cta-card {
  background: linear-gradient(145deg, rgba(192,22,42,0.16) 0%, rgba(212,160,23,0.08) 100%);
  border-color: var(--border-gold);
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
}
.testi-card.testi-cta-card::before { content: none; }
.testi-card.testi-cta-card:hover {
  border-color: var(--gold-vivid);
  box-shadow: 0 24px 70px rgba(0,0,0,0.50), 0 0 40px var(--gold-glow-soft);
}

.testi-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.testi-cta-icon {
  font-size: 2.75rem;
  color: var(--gold-vivid);
  filter: drop-shadow(0 0 18px var(--gold-glow));
}

.testi-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.testi-cta-inner p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 240px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .w-stat-divider   { display: none; }
  .w-stat           { padding: 0.5rem 1.25rem; }
  .winners-stat-bar { border-radius: var(--radius-lg); max-width: 100%; }
}
@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .winners-stat-bar { flex-direction: column; gap: 0.75rem; padding: 1.25rem; }
  .w-stat           { flex-direction: row; align-items: center; gap: 0.75rem; padding: 0; }
  .w-stat-lbl       { text-align: left; }
  .testi-top        { flex-wrap: wrap; }
  .testi-win-badge  { width: 100%; align-items: flex-start; flex-direction: row; gap: 0.5rem; align-items: center; }
  .testi-card { padding: 1.25rem; gap: 0.85rem; }
  .testi-quote { font-size: 0.85rem; line-height: 1.7; }
  .testi-avatar { width: 40px; height: 40px; font-size: 1.05rem; }
  .testi-name { font-size: 0.92rem; }
  .testi-game-tag { font-size: 0.68rem; padding: 4px 10px; }
  .testi-card::before { font-size: 5rem; }
  .testi-cta-inner h3 { font-size: 1.25rem; }
  .testi-cta-icon { font-size: 2.25rem; }
}

/* ══════════════════════════════════════════
   WHY / PLATFORM ADVANTAGES — New Layout
   ══════════════════════════════════════════ */

.why-section {
  background:
    radial-gradient(ellipse 900px 600px at 50% 0%, rgba(212,160,23,0.05) 0%, transparent 60%),
    rgba(0,0,0,0.42);
}

/* ── 6-feature icon grid ── */
.why-feat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 2.5rem;
}

.why-feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.why-feat-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-vivid), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-feat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 50px rgba(0,0,0,0.45), 0 0 24px var(--gold-glow-soft);
}
.why-feat-card:hover::before { opacity: 1; }

.why-feat-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-feat-card:hover .why-feat-icon {
  transform: scale(1.10);
}

.why-feat-card h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
.why-feat-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Split detail block ── */
.why-detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color var(--transition);
}
.why-detail-card:hover { border-color: var(--border-gold); }

.why-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-gold);
}

.why-detail-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-detail-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}
.why-detail-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* Bonus rows */
.why-bonus-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.why-bonus-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.why-bonus-row:hover {
  border-color: var(--border-gold);
  background: rgba(212,160,23,0.04);
}

.why-bonus-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-bonus-row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.why-bonus-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}
.why-bonus-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.why-bonus-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Promo channels row */
.why-promo-channels {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.why-channel-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.why-channels {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.why-channels span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-vivid);
  background: rgba(212,160,23,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
.why-channels span i { font-size: 0.72rem; }

/* Payment icon grid */
.why-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.why-pay-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  color: var(--gold-vivid);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.why-pay-item:hover {
  background: rgba(212,160,23,0.07);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.why-pay-item i    { font-size: 1.2rem; }
.why-pay-item span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); }

/* Pay stats strip */
.why-pay-strip {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.why-pay-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--border);
}
.why-pay-stat:last-child { border-right: none; }
.why-pay-stat > i { font-size: 1.1rem; flex-shrink: 0; }
.why-pay-stat > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.why-pay-stat span:first-child { font-size: 0.82rem; font-weight: 700; }
.why-pay-stat span:last-child  { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .why-feat-grid     { grid-template-columns: repeat(3, 1fr); }
  .why-detail-split  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .why-feat-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-pay-grid   { grid-template-columns: repeat(3, 1fr); }
  .why-pay-strip  { flex-direction: column; }
  .why-pay-stat   { border-right: none; border-bottom: 1px solid var(--border); }
  .why-pay-stat:last-child { border-bottom: none; }
  .why-detail-card { padding: 1.25rem; gap: 1rem; }
  .why-detail-header { gap: 0.75rem; padding-bottom: 1rem; }
  .why-detail-header h3 { font-size: 1.05rem; }
  .why-detail-icon { width: 44px; height: 44px; font-size: 1.15rem; }
  .why-bonus-row { padding: 0.65rem 0.85rem; gap: 0.65rem; }
  .why-bonus-title { font-size: 0.82rem; }
  .why-bonus-desc { font-size: 0.68rem; }
  .why-bonus-icon { width: 32px; height: 32px; font-size: 0.88rem; }
  .why-feat-card { padding: 1.1rem 0.75rem; }
  .why-feat-card h4 { font-size: 0.75rem; }
  .why-feat-card p { font-size: 0.70rem; }
  .why-feat-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .why-pay-item { padding: 0.6rem 0.35rem; }
  .why-pay-item i { font-size: 1rem; }
  .why-pay-item span { font-size: 0.62rem; }
  .why-promo-channels { flex-direction: column; gap: 0.5rem; }
}

/* ══════════════════════════════════════════
   FAQ — New Layout
   ══════════════════════════════════════════ */

.faq-section-new {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

/* ── Category tabs ── */
.faq-tabs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.25rem;
}

.faq-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.15rem;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.faq-tab-btn i { font-size: 0.70rem; }
.faq-tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-gold);
  background: rgba(212,160,23,0.07);
}
.faq-tab-btn.active {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-vivid), var(--gold-light));
  border-color: transparent;
  box-shadow: 0 4px 18px var(--gold-glow-soft);
}

/* ── 2-column FAQ grid ── */
.faq-new-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

/* ── Individual FAQ item ── */
.faq-new-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-new-item.open {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px var(--gold-glow-soft);
}
.faq-new-item.faq-hidden { display: none; }

/* Question row */
.faq-new-question {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.faq-new-question:hover { background: rgba(255,255,255,0.02); }

/* Colored icon */
.faq-new-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-new-item.open .faq-new-icon { transform: scale(1.08); }

/* Text block: category tag + question title */
.faq-new-q-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.faq-new-cat-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: var(--radius-pill);
  padding: 2px 9px;
}

.faq-new-q-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

/* Toggle button */
.faq-new-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--gold-vivid);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.faq-new-item.open .faq-new-toggle {
  background: var(--gold-vivid);
  border-color: var(--gold-vivid);
  color: var(--bg-deep);
  transform: rotate(45deg);
}

/* Answer panel */
.faq-new-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease), padding 320ms var(--ease), opacity 320ms ease;
  padding: 0 1.25rem 0 calc(1.25rem + 42px + 0.9rem);
  opacity: 0;
  border-top: 0px solid transparent;
}
.faq-new-item.open .faq-new-answer {
  max-height: 320px;
  padding: 0 1.25rem 1.25rem calc(1.25rem + 42px + 0.9rem);
  opacity: 1;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-new-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* ── Support bar ── */
.faq-support-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(192,22,42,0.10) 0%, rgba(212,160,23,0.07) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
}

.faq-support-left {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.faq-support-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(192,22,42,0.16);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-soft);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.faq-support-left h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}
.faq-support-left p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 340px;
}

.faq-support-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.faq-cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}
.faq-cs-btn:hover { transform: translateY(-2px); filter: brightness(1.10); }

.faq-cs-btn.telegram  { background: #229ed9; color: #fff; box-shadow: 0 4px 16px rgba(34,158,217,0.35); }
.faq-cs-btn.whatsapp  { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.faq-cs-btn.livechat  { background: linear-gradient(135deg, var(--red-core), var(--red-vivid)); color: #fff; box-shadow: 0 4px 16px rgba(192,22,42,0.40); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .faq-new-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .faq-support-bar     { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
  .faq-support-actions { width: 100%; }
  .faq-cs-btn          { flex: 1; justify-content: center; }
  .faq-new-answer,
  .faq-new-item.open .faq-new-answer {
    padding-left: 1.25rem;
  }
  .faq-new-question { padding: 0.9rem 1rem; gap: 0.65rem; }
  .faq-new-icon { width: 36px; height: 36px; font-size: 0.92rem; }
  .faq-new-q-title { font-size: 0.88rem; }
  .faq-new-toggle { width: 26px; height: 26px; font-size: 0.65rem; }
  .faq-new-answer p { font-size: 0.82rem; }
  .faq-support-left h4 { font-size: 0.95rem; }
  .faq-support-left p { font-size: 0.78rem; }
  .faq-support-avatar { width: 44px; height: 44px; font-size: 1.2rem; }
  .faq-tabs-row { gap: 0.35rem; margin: 1.5rem 0 1.75rem; }
  .faq-tab-btn { padding: 0.45rem 0.85rem; font-size: 0.72rem; }
  .faq-tab-btn i { display: none; }
}

/* ══════════════════════════════════════════
   ULTRA-SMALL SCREENS (< 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .hero h1 { font-size: 1.85rem; }
  .hero-text-content > p { font-size: 0.88rem; }
  .hero-logo img { height: 48px; }
  .badge { font-size: 0.65rem; padding: 5px 12px; letter-spacing: 0.12em; }
  .hero-stats .stat-item { flex: 1 1 calc(50% - 8px); padding: 0.5rem 0.25rem; }
  .stat-item h4 { font-size: 1.25rem; }
  .stat-item p { font-size: 0.62rem; letter-spacing: 0.08em; }

  /* Jackpot card */
  .floating-glass-card { padding: 1.25rem; }
  .jackpot-amount { font-size: 1.4rem !important; }

  /* Section titles */
  .section-title { font-size: 1.5rem !important; margin-bottom: 0.5rem; }
  .section-prefix { font-size: 0.65rem; letter-spacing: 0.16em; }
  .section-header-centered { margin-bottom: 1.75rem; }

  /* Content sections */
  .content-section { padding: 36px 0; }

  /* Buttons */
  .btn-primary, .btn-secondary { font-size: 0.80rem; padding: 0.72rem 1.25rem; }

  /* Tournament */
  .tourney-list-img { height: 120px; }
  .tourney-list-body { padding: 0.85rem; gap: 0.5rem; }
  .tourney-list-body h3 { font-size: 0.92rem; }
  .tourney-list-btn { font-size: 0.72rem; padding: 0.55rem 0.85rem; }
  .tourney-cta-strip { padding: 0.85rem 1rem; }
  .tourney-cta-strip p { font-size: 0.80rem; }

  /* VIP */
  .vip-tier-horizontal { padding: 1.5rem; }
  .vip-tier-icon { width: 56px; height: 56px; font-size: 1.45rem; }
  .vip-tier-info h3 { font-size: 1.2rem; }
  .vip-perks li { font-size: 0.78rem; }

  /* Activity */
  .activity-stats-strip { gap: 0.65rem; }
  .act-stat { padding: 0.65rem 0.75rem; }
  .act-stat-val { font-size: 0.95rem; }

  /* Winners / testimonials */
  .testi-card { padding: 1rem; }
  .testi-quote { font-size: 0.82rem; }
  .testi-avatar { width: 36px; height: 36px; font-size: 0.95rem; }
  .winners-stat-bar { padding: 1rem; }
  .w-stat-val { font-size: 1.25rem; }
  .w-stat-lbl { font-size: 0.65rem; }

  /* Why features */
  .why-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .why-feat-card { padding: 0.9rem 0.6rem; gap: 0.45rem; }
  .why-feat-icon { width: 38px; height: 38px; font-size: 1.05rem; }
  .why-feat-card h4 { font-size: 0.70rem; }
  .why-feat-card p { font-size: 0.65rem; display: none; }
  .why-pay-grid { grid-template-columns: repeat(3, 1fr); gap: 0.45rem; }
  .why-pay-item { padding: 0.5rem 0.25rem; }
  .why-pay-item i { font-size: 0.88rem; }
  .why-pay-item span { font-size: 0.58rem; }
  .why-detail-card { padding: 1rem; }
  .why-bonus-badge { font-size: 0.68rem; padding: 3px 8px; }

  /* FAQ */
  .faq-new-question { padding: 0.8rem 0.9rem; }
  .faq-new-icon { width: 32px; height: 32px; font-size: 0.85rem; }
  .faq-new-q-title { font-size: 0.82rem; }
  .faq-new-cat-tag { font-size: 0.58rem; padding: 1px 7px; }
  .faq-support-bar { padding: 1rem; gap: 1rem; }
  .faq-cs-btn { font-size: 0.72rem; padding: 0.5rem 0.9rem; }
  .faq-tabs-row { gap: 0.25rem; }
  .faq-tab-btn { font-size: 0.68rem; padding: 0.4rem 0.65rem; }

  /* Trust */
  .trust-card-v2 { padding: 1.5rem; }
  .trust-icon-wrap { width: 52px; height: 52px; font-size: 1.45rem; margin-bottom: 1rem; }
  .trust-content h3 { font-size: 1.05rem; }
  .trust-content p { font-size: 0.82rem; }

  /* Responsible gambling FAQ */
  .faq-info h2 { font-size: 1.4rem; }
  .faq-question { font-size: 0.88rem; padding: 0.9rem 1rem; }
  .faq-answer p { font-size: 0.82rem; }
  .faq-support-card { padding: 1rem; gap: 0.75rem; }
  .faq-support-card i { font-size: 1.5rem; }

  /* Footer CTA */
  .footer-register-banner { padding: 3rem 0; }
  .footer-register-banner h3 { font-size: 1.5rem; }
  .footer-register-banner .btn-primary { width: 100%; max-width: 320px; }

  /* Contact / support section */
  .total-paid-card { padding: 1.25rem; }
  .total-paid-card .paid-val { font-size: 1.5rem; }
  .winner-testimonial { padding: 1.1rem; gap: 0.85rem; }
  .winner-av { width: 44px; height: 44px; font-size: 1.15rem; }
  .winner-quote p { font-size: 0.85rem; }
  .winner-quote h4 { font-size: 0.72rem; }

  /* News / categories */
  .news-featured img { height: 160px; }
  .news-featured-content { padding: 1rem; }
  .news-featured-content h3 { font-size: 1.2rem; }
  .news-list-item img { height: 140px; }
  .news-content h3 { font-size: 0.92rem; }
  .news-content p { font-size: 0.78rem; }

  /* Crypto strip */
  .crypto-strip { padding: 0.85rem 0; }
  .crypto-track span { font-size: 0.78rem; gap: 7px; }

  /* Provider ticker */
  .provider-logo { font-size: 0.68rem; padding: 7px 12px; }
}

/* ══════════════════════════════════════════
   ENHANCED RESPONSIVE — v2 Improvements
   Overflow prevention, hero-stats grid,
   horizontal-scroll tabs, touch targets,
   inline-style overrides, 360px breakpoint
   ══════════════════════════════════════════ */

/* Global: prevent any horizontal overflow */
html { overflow-x: hidden; }

/* ── 768px: Layout upgrades ── */
@media (max-width: 768px) {
  /* Hero stats: proper 2×2 grid with internal dividers */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .hero-stats .stat-item {
    flex: unset;
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-stats .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .hero-stats .stat-item:nth-child(n+3) {
    border-bottom: none;
  }

  /* Contact testimonials vertical stack */
  .winner-testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Email address overflow */
  .paid-val { word-break: break-all; }

  /* Responsible gambling support card stack */
  .faq-support-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ── 480px: Scrollable tabs + touch targets ── */
@media (max-width: 480px) {
  /* Horizontal-scroll tournament tabs */
  .tourney-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tourney-tabs::-webkit-scrollbar { display: none; }
  .tourney-tab { flex-shrink: 0; }

  /* Horizontal-scroll FAQ tabs */
  .faq-tabs-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .faq-tabs-row::-webkit-scrollbar { display: none; }
  .faq-tab-btn { flex-shrink: 0; }

  /* WCAG 44px minimum touch targets */
  .tourney-list-btn,
  .faq-cs-btn,
  .btn-primary,
  .btn-secondary {
    min-height: 44px;
  }
}

/* ══════════════════════════════════════════
   360px: VERY SMALL DEVICES
   (e.g. Galaxy S III, older Androids)
   ══════════════════════════════════════════ */
@media (max-width: 360px) {
  /* Layout basics */
  :root { --header-h: 56px; }
  .container { width: min(96%, var(--container-max)); }
  .header-container { padding: 0 0.65rem; }
  .logo img { height: 28px; }

  /* Hero */
  .hero h1 { font-size: 1.45rem; }
  .hero-logo img { height: 36px; }
  .hero-text-content > p { font-size: 0.80rem; }
  .badge { font-size: 0.55rem; padding: 3px 8px; gap: 4px; }
  .stat-item h4 { font-size: 1rem; }
  .stat-item p { font-size: 0.55rem; }
  .jackpot-amount { font-size: 1.05rem !important; }
  .floating-glass-card { padding: 0.85rem; }

  /* Sections */
  .content-section { padding: 24px 0; }
  .section-title { font-size: 1.1rem !important; }
  .section-prefix { font-size: 0.55rem; }
  .section-header-centered { margin-bottom: 1.25rem; }

  /* Buttons */
  .btn-primary, .btn-secondary { font-size: 0.70rem; padding: 0.55rem 0.85rem; }
  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-secondary { padding: 0.65rem 1rem; font-size: 0.72rem; }

  /* Tournaments */
  .tourney-list-img { height: 90px; }
  .tourney-list-body { padding: 0.6rem; gap: 0.3rem; }
  .tourney-list-body h3 { font-size: 0.80rem; }
  .tourney-list-btn { font-size: 0.62rem; padding: 0.42rem 0.6rem; }
  .prize-val { font-size: 0.88rem; }
  .tourney-tab { font-size: 0.60rem; padding: 0.32rem 0.5rem; }
  .tourney-cta-strip { padding: 0.65rem 0.85rem; }
  .tourney-cta-strip p { font-size: 0.72rem; }

  /* VIP */
  .vip-tier-horizontal { padding: 0.85rem; }
  .vip-tier-icon { width: 42px; height: 42px; font-size: 1.1rem; margin-bottom: 0.75rem; }
  .vip-tier-info h3 { font-size: 1rem; }
  .vip-tier-info p { font-size: 0.65rem; }
  .vip-perks li { font-size: 0.70rem; padding: 5px 0; }
  .vip-perks li i { font-size: 0.60rem; }
  .vip-action a { font-size: 0.70rem !important; padding: 0.5rem 0.8rem !important; }

  /* Activity */
  .act-stat { padding: 0.4rem 0.5rem; gap: 0.35rem; }
  .act-stat > i { font-size: 0.95rem; width: 18px; }
  .act-stat-val { font-size: 0.78rem; }
  .act-stat-lbl { font-size: 0.52rem; }
  .feed-card { padding: 0.4rem 0.45rem; gap: 0.4rem; }
  .feed-game-icon { width: 24px; height: 24px; font-size: 0.68rem; }
  .feed-player { font-size: 0.68rem; }
  .feed-game { font-size: 0.60rem; }
  .feed-time { font-size: 0.55rem; }
  .feed-amount { font-size: 0.68rem; }
  .feed-mult { font-size: 0.56rem; padding: 1px 4px; }
  .leader-row { padding: 0.42rem 0.55rem; gap: 0.35rem; }
  .leader-rank { width: 22px; height: 22px; font-size: 0.60rem; }
  .leader-name { font-size: 0.68rem; }
  .leader-prize { font-size: 0.68rem; }
  .leader-cta { padding: 0.65rem; }
  .leader-cta p { font-size: 0.72rem; }

  /* Testimonials */
  .testi-card { padding: 0.65rem; gap: 0.45rem; }
  .testi-avatar { width: 28px; height: 28px; font-size: 0.78rem; }
  .testi-name { font-size: 0.78rem; }
  .testi-location { font-size: 0.58rem; }
  .testi-stars i { font-size: 0.55rem; }
  .testi-quote { font-size: 0.72rem; line-height: 1.55; }
  .testi-win-badge { padding: 2px 5px; }
  .testi-win-val { font-size: 0.68rem; }
  .testi-win-label { font-size: 0.52rem; }
  .testi-game-tag { font-size: 0.55rem; padding: 2px 6px; gap: 4px; }
  .testi-card::before { font-size: 3.5rem; }
  .testi-cta-inner h3 { font-size: 0.95rem; }
  .testi-cta-icon { font-size: 1.65rem; }
  .testi-cta-inner p { font-size: 0.72rem; }
  .winners-stat-bar { padding: 0.65rem; }
  .w-stat-val { font-size: 0.95rem; }
  .w-stat-lbl { font-size: 0.55rem; }

  /* Why features */
  .why-feat-grid { gap: 0.35rem; }
  .why-feat-card { padding: 0.55rem 0.3rem; gap: 0.25rem; }
  .why-feat-icon { width: 28px; height: 28px; font-size: 0.82rem; margin-bottom: 0; }
  .why-feat-card h4 { font-size: 0.56rem; }
  .why-detail-card { padding: 0.65rem; gap: 0.65rem; }
  .why-detail-header h3 { font-size: 0.88rem; }
  .why-detail-icon { width: 34px; height: 34px; font-size: 0.95rem; }
  .why-bonus-row { padding: 0.4rem 0.5rem; gap: 0.4rem; }
  .why-bonus-title { font-size: 0.68rem; }
  .why-bonus-desc { font-size: 0.56rem; }
  .why-bonus-icon { width: 24px; height: 24px; font-size: 0.72rem; }
  .why-bonus-badge { font-size: 0.58rem; padding: 2px 5px; }
  .why-pay-grid { grid-template-columns: repeat(2, 1fr); gap: 0.3rem; }
  .why-pay-item { padding: 0.35rem 0.15rem; }
  .why-pay-item i { font-size: 0.68rem; }
  .why-pay-item span { font-size: 0.48rem; }
  .why-pay-stat { padding: 0.5rem 0.6rem; }
  .why-pay-stat > i { font-size: 0.82rem; }
  .why-pay-stat span:first-child { font-size: 0.68rem; }
  .why-pay-stat span:last-child { font-size: 0.52rem; }
  .why-channel-label { font-size: 0.58rem; }
  .why-channels span { font-size: 0.60rem; padding: 2px 8px; }

  /* FAQ */
  .faq-new-question { padding: 0.55rem 0.6rem; gap: 0.35rem; }
  .faq-new-icon { width: 24px; height: 24px; font-size: 0.68rem; }
  .faq-new-q-title { font-size: 0.72rem; }
  .faq-new-cat-tag { font-size: 0.50rem; padding: 1px 4px; }
  .faq-new-toggle { width: 20px; height: 20px; font-size: 0.52rem; }
  .faq-new-answer p { font-size: 0.70rem; }
  .faq-new-item.open .faq-new-answer { padding-left: 1rem; }
  .faq-support-bar { padding: 0.65rem; gap: 0.6rem; border-radius: var(--radius-sm); }
  .faq-support-avatar { width: 34px; height: 34px; font-size: 0.95rem; }
  .faq-support-left h4 { font-size: 0.82rem; }
  .faq-support-left p { font-size: 0.65rem; }
  .faq-cs-btn { font-size: 0.58rem; padding: 0.35rem 0.55rem; }
  .faq-tab-btn { font-size: 0.55rem; padding: 0.28rem 0.45rem; }

  /* Trust */
  .trust-card-v2 { padding: 0.85rem; }
  .trust-icon-wrap { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 0.65rem; }
  .trust-content h3 { font-size: 0.85rem; }
  .trust-content p { font-size: 0.72rem; }

  /* Responsible gambling */
  .faq-info h2 { font-size: 1.15rem; }
  .faq-question { font-size: 0.75rem; padding: 0.65rem 0.72rem; }
  .faq-answer p { font-size: 0.70rem; }
  .faq-support-card i { font-size: 1.1rem; }
  .faq-support-card h4 { font-size: 0.78rem; }
  .faq-support-card p { font-size: 0.65rem; }

  /* Contact */
  .total-paid-card { padding: 0.75rem; }
  .total-paid-card .paid-val { font-size: 1.05rem; }
  .winner-testimonial { padding: 0.65rem; gap: 0.4rem; }
  .winner-av { width: 34px; height: 34px; font-size: 0.92rem; }
  .winner-quote p { font-size: 0.72rem; line-height: 1.5; }
  .winner-quote h4 { font-size: 0.60rem; }

  /* Footer CTA */
  .footer-register-banner { padding: 1.5rem 0; }
  .footer-register-banner h3 { font-size: 1.05rem; }
  .footer-register-banner .btn-primary {
    padding: 0.65rem 1rem !important;
    font-size: 0.75rem !important;
    width: 100%;
    max-width: 260px;
  }

  /* News */
  .news-featured img { height: 120px; }
  .news-featured-content { padding: 0.75rem; }
  .news-featured-content h3 { font-size: 0.95rem; }
  .news-list-item img { height: 110px; }
  .news-content h3 { font-size: 0.78rem; }
  .news-content p { font-size: 0.68rem; }

  /* Ticker strips */
  .crypto-strip { padding: 0.45rem 0; }
  .crypto-track span { font-size: 0.62rem; gap: 4px; }
  .provider-logo { font-size: 0.55rem; padding: 4px 7px; gap: 3px; }

  /* Mobile bottom bar */
  .mobile-bottom-bar a { padding: 0.5rem; font-size: 0.68rem; }
  body { padding-bottom: 52px; }

  /* Footer */
  #main-footer { padding: 2rem 0 0.85rem; }
  .footer-brand img { height: 28px; }
  .footer-desc { font-size: 0.72rem; }
  .footer-nav h4, .footer-contact h4 { font-size: 0.78rem; }
  .footer-nav a { font-size: 0.72rem; }
  .footer-contact li { font-size: 0.72rem; }
  .footer-bottom { font-size: 0.62rem; }
  .footer-links a { font-size: 0.65rem; }
}

