/* ============================================================
   NoLimitCoins.pro — Complete Stylesheet
   Brand: Dark navy, pink/purple accents, neon gaming aesthetic
   ============================================================ */

:root {
  --brand-primary:     #E91E63;
  --brand-secondary:   #7B2FBE;
  --brand-accent:      #FFD700;
  --brand-bg:          #1A1A2E;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #141428;
  --brand-btn-bg:      #E91E63;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Poppins', sans-serif;
  --brand-body-font:   'Inter', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #1e1e38;
  --brand-card-border: #2a2a4a;
  --brand-surface:     #16162c;
  --brand-muted:       #a0a0c0;
  --brand-gradient:    linear-gradient(135deg, #E91E63 0%, #7B2FBE 100%);
  --brand-gradient-alt:linear-gradient(135deg, #7B2FBE 0%, #1A1A2E 100%);
  --transition-fast:   0.2s ease;
  --transition-med:    0.35s ease;
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.45);
  --shadow-lg:         0 8px 40px rgba(0,0,0,0.6);
  --radius-sm:         8px;
  --radius-md:         16px;
  --radius-lg:         24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  background: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Skip to content ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--brand-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 99999;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 10px; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.2;
  color: var(--brand-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}
.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav ul li a {
  display: block;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-radius: 20px;
  transition: background var(--transition-fast), color var(--transition-fast);
  font-family: var(--brand-head-font);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(233,30,99,0.15);
  color: var(--brand-primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-login {
  padding: 8px 20px;
  border-radius: var(--brand-btn-radius);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  background: transparent;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.btn-login:hover {
  border-color: var(--brand-primary);
  background: rgba(233,30,99,0.1);
}
.btn-register {
  padding: 8px 20px;
  border-radius: var(--brand-btn-radius);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  background: var(--brand-gradient);
  color: #fff;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: inline-block;
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,30,99,0.45);
}

/* Mobile burger */
.mobile-menu-btn {
  display: none;
  font-size: 22px;
  color: #fff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  line-height: 1;
  transition: background var(--transition-fast);
}
.mobile-menu-btn:hover { background: rgba(233,30,99,0.2); }

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(233,30,99,0.5);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-cta::before { content: '🎰'; font-size: 16px; }
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(233,30,99,0.65);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--brand-head-font);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(233,30,99,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,99,0.55);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  border-color: var(--brand-primary);
  background: rgba(233,30,99,0.12);
  transform: translateY(-2px);
}
.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--brand-head-font);
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 6px 28px rgba(233,30,99,0.5);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(233,30,99,0.65);
}
.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--brand-head-font);
  background: var(--brand-accent);
  color: #1A1A2E;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.5);
}
.btn-outline-gold {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--brand-head-font);
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  background: transparent;
  transition: all var(--transition-fast);
}
.btn-outline-gold:hover {
  background: var(--brand-accent);
  color: #1A1A2E;
  transform: translateY(-2px);
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  padding-top: 64px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(123,47,190,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(233,30,99,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(255,215,0,0.08) 0%, transparent 50%),
    var(--brand-bg);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,99,0.15);
  border: 1px solid rgba(233,30,99,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: var(--brand-head-font);
}
.hero-badge span { width: 6px; height: 6px; background: var(--brand-primary); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-left h1 { margin-bottom: 20px; }
.hero-left h1 .highlight {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-family: var(--brand-head-font);
  font-weight: 500;
}
.trust-icon { font-size: 18px; }

/* Hero right — promo cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promo-card {
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.promo-card-primary {
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}
.promo-card-secondary {
  background: linear-gradient(135deg, #7B2FBE 0%, #4A1080 100%);
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.promo-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-family: var(--brand-head-font);
}
.promo-card-value {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.promo-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.promo-card .btn-sm {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  background: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.promo-card .btn-sm:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}
.promo-card-emoji {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
  opacity: 0.6;
}

/* ── Section base ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }
.section-alt { background: var(--brand-surface); }
.section-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--brand-muted);
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 48px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 12px auto 0; }
.pill-label {
  display: inline-block;
  background: rgba(233,30,99,0.12);
  border: 1px solid rgba(233,30,99,0.25);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  font-family: var(--brand-head-font);
}

/* ── Stats bar (4-col) ── */
.stats-section {
  background: var(--brand-card-bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--brand-muted);
  font-family: var(--brand-head-font);
  font-weight: 500;
}

/* ── Game categories (pill nav + 3-col grid) ── */
.category-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--brand-head-font);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.cat-pill.active,
.cat-pill:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(233,30,99,0.3);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--brand-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.game-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border-radius: var(--radius-md);
}
.game-thumb-1 { background: linear-gradient(145deg, #2d1052 0%, #6a0dad 100%); }
.game-thumb-2 { background: linear-gradient(145deg, #0d2b4e 0%, #1565c0 100%); }
.game-thumb-3 { background: linear-gradient(145deg, #4a0000 0%, #c62828 100%); }
.game-thumb-4 { background: linear-gradient(145deg, #003300 0%, #1b5e20 100%); }
.game-thumb-5 { background: linear-gradient(145deg, #1a0033 0%, #4527a0 100%); }
.game-thumb-6 { background: linear-gradient(145deg, #33000d 0%, #880e4f 100%); }
.game-info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.game-name {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.game-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  letter-spacing: 0.5px;
  z-index: 3;
}
.game-badge.gold { background: var(--brand-accent); color: #1A1A2E; }
.game-badge.purple { background: var(--brand-secondary); }

/* ── Bonus section — asymmetric 2/3 + 1/3 ── */
.bonus-section-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.bonus-main-card {
  background: linear-gradient(135deg, rgba(233,30,99,0.12) 0%, rgba(123,47,190,0.18) 100%);
  border: 1px solid rgba(233,30,99,0.2);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.bonus-main-card::before {
  content: '🎁';
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 80px;
  opacity: 0.12;
}
.bonus-headline {
  font-family: var(--brand-head-font);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.bonus-desc {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 400px;
}
.bonus-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}
.bonus-sidebar { display: flex; flex-direction: column; gap: 16px; }
.bonus-mini-card {
  background: var(--brand-card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
}
.bonus-mini-icon { font-size: 28px; margin-bottom: 12px; }
.bonus-mini-title {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.bonus-mini-desc { font-size: 13px; color: var(--brand-muted); margin: 0; }

/* ── Payments — full-width card strip ── */
.payments-section { background: var(--brand-card-bg); }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.payment-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.payment-item:hover {
  border-color: rgba(233,30,99,0.3);
  background: rgba(233,30,99,0.06);
}
.payment-icon { font-size: 30px; margin-bottom: 8px; }
.payment-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); font-family: var(--brand-head-font); }

/* ── Features — 2-col side by side ── */
.features-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #1e1e40 0%, #2d1052 100%);
  padding: 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-visual-emoji {
  font-size: 80px;
  margin-bottom: 24px;
  display: block;
}
.features-visual h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.features-visual p { color: rgba(255,255,255,0.65); font-size: 14px; }
.features-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(123,47,190,0.25);
  filter: blur(60px);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(233,30,99,0.15) 0%, rgba(123,47,190,0.15) 100%);
  border: 1px solid rgba(233,30,99,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.feature-text h4 {
  font-size: 15px;
  margin-bottom: 4px;
  font-family: var(--brand-head-font);
  font-weight: 700;
}
.feature-text p { font-size: 13px; color: var(--brand-muted); margin: 0; }

/* ── Content / Article sections ── */
.content-section { padding: 80px 0; }
.content-grid-asymmetric {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 50px;
  align-items: start;
}
.content-body h2 { margin-bottom: 20px; }
.content-body h3 { margin: 28px 0 12px; color: rgba(255,255,255,0.9); }
.content-body p { font-size: 15px; color: rgba(255,255,255,0.78); margin-bottom: 16px; }
.content-sidebar-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: 84px;
}
.content-sidebar-card h4 {
  font-size: 15px;
  margin-bottom: 16px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  color: var(--brand-accent);
}
.sidebar-fact-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-fact:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-fact-label { color: var(--brand-muted); }
.sidebar-fact-value { font-weight: 700; color: #fff; }

/* ── Support section — 4-col ── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.support-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,30,99,0.3);
}
.support-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.support-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  font-family: var(--brand-head-font);
  font-weight: 700;
}
.support-card p { font-size: 13px; color: var(--brand-muted); margin: 0; }
.support-availability {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #2ecc71;
  font-family: var(--brand-head-font);
  letter-spacing: 0.5px;
}

/* ── Responsible gambling strip ── */
.rg-strip {
  background: linear-gradient(135deg, rgba(123,47,190,0.15) 0%, rgba(233,30,99,0.1) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}
.rg-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.rg-icon { font-size: 40px; flex-shrink: 0; }
.rg-text h3 { font-size: 16px; margin-bottom: 4px; }
.rg-text p { font-size: 13px; color: var(--brand-muted); margin: 0; }
.rg-links { display: flex; gap: 12px; flex-wrap: wrap; margin-left: auto; }
.rg-link {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all var(--transition-fast);
}
.rg-link:hover {
  background: rgba(233,30,99,0.15);
  border-color: var(--brand-primary);
  color: #fff;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #E91E63 0%, #7B2FBE 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 30px 30px;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
.site-footer {
  background: #0e0e20;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.65;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition-fast);
  min-width: 38px;
}
.social-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--brand-primary); }

/* Footer security logos */
.footer-security {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.security-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  font-family: var(--brand-head-font);
}
.security-badge .badge-icon { font-size: 16px; }

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(233,30,99,0.2);
  border: 2px solid var(--brand-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  flex-shrink: 0;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-rg-phones {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.rg-phone-item {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.rg-phone-item strong { color: rgba(255,255,255,0.65); }

/* ── Legal pages ── */
.legal-page-wrap {
  padding: 100px 0 80px;
}
.legal-page-wrap h1 { margin-bottom: 12px; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.legal-page-wrap .last-updated {
  font-size: 12px;
  color: var(--brand-muted);
  margin-bottom: 40px;
  font-family: var(--brand-head-font);
}
.legal-content h2 { font-size: 1.25rem; margin: 32px 0 12px; color: rgba(255,255,255,0.9); }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; color: rgba(255,255,255,0.8); }
.legal-content p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--brand-primary); text-decoration: underline; }

/* ── Divider / Accent lines ── */
.gradient-divider {
  height: 2px;
  background: var(--brand-gradient);
  width: 60px;
  border-radius: 2px;
  margin: 12px 0 28px;
}
.gradient-divider.centered { margin: 12px auto 28px; }

/* ── Highlight text ── */
.text-primary { color: var(--brand-primary); }
.text-accent { color: var(--brand-accent); }
.text-muted { color: var(--brand-muted); }
.fw-700 { font-weight: 700; }

/* ── Scroll animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── Mobile nav ── */
@media (max-width: 992px) {
  .main-nav { position: relative; }
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100vw);
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    gap: 4px;
    z-index: 100;
    border-bottom: 2px solid rgba(233,30,99,0.3);
  }
  .mobile-nav-active ul li a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }
}

/* ── Responsive breakpoints ── */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero-content-wrap { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero-right { flex-direction: row; }
  .promo-card { flex: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .features-two-col { grid-template-columns: 1fr; gap: 40px; }
  .bonus-section-inner { grid-template-columns: 1fr; }
  .content-grid-asymmetric { grid-template-columns: 1fr; }
  .content-sidebar-card { position: static; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero-section { min-height: auto; }
  .hero-right { flex-direction: column; }
  .hero-content-wrap { padding: 40px 0; }
  .promo-card-emoji { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
  .header-actions .btn-login { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .rg-inner { flex-direction: column; align-items: flex-start; }
  .rg-links { margin-left: 0; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 14px; }
  .cta-banner { padding: 50px 0; }
  .hero-trust { gap: 16px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .security-logos { gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-hero { width: 100%; text-align: center; }
}

@media (max-width: 320px) {
  .container { padding: 0 14px; }
  .games-grid { grid-template-columns: 1fr; }
  .promo-card { padding: 20px; }
}