/* ===========================
   NV CASINO – assets/styles.css
   =========================== */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #010104;
  color: #fff;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --pink: #FF2885;
  --purple: #3C297B;
  --white: #FFFFFF;
  --dark: #010104;
  --footer-bg: #10102D;
  --card-bg: rgba(60,41,123,0.18);
  --card-border: rgba(255,40,133,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h: 72px;
  --transition: 0.22s ease;
  --shadow-btn: 0 4px 24px rgba(255,40,133,0.45);
  --shadow-btn-hover: 0 8px 36px rgba(255,40,133,0.65);
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}
.btn--primary {
  background: linear-gradient(135deg, #FF2885 0%, #d41f6e 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
  border: 2px solid transparent;
}
.btn--primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: var(--shadow-btn-hover); }
.btn--primary:active { transform: translateY(0) scale(0.98); box-shadow: 0 2px 12px rgba(255,40,133,0.3); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: 0 2px 12px rgba(255,255,255,0.08);
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,40,133,0.2); }
.btn--ghost:active { transform: translateY(0); }
.btn--sm { font-size: 0.8rem; min-height: 40px; padding: 10px 20px; }
.btn--lg { font-size: 1rem; min-height: 52px; padding: 15px 36px; }
.btn--xl { font-size: 1.05rem; min-height: 56px; padding: 16px 40px; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(1,1,4,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,40,133,0.15);
  transition: background 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
  min-width: 0;
}
.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.nav-link:hover { color: var(--pink); background: rgba(255,40,133,0.08); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(1,1,4,0.98);
  border-top: 1px solid rgba(255,40,133,0.15);
  padding: 16px 20px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  color: rgba(255,255,255,0.85);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: rgba(255,40,133,0.1); color: var(--pink); }

/* ── SECTIONS COMMON ── */
.section {
  padding: 80px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #FF2885 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.center-cta { text-align: center; margin-top: 40px; }

/* ── HERO ── */
.hero { padding: 0; position: relative; overflow: hidden; }
.hero-banner-link { display: block; width: 100%; }
.hero-banner {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,1,4,0) 30%, rgba(1,1,4,0.95) 100%);
}
.hero-content {
  padding: 52px 20px 72px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,40,133,0.15);
  border: 1px solid rgba(255,40,133,0.4);
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 4.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.hero-amount {
  display: block;
  font-size: clamp(3rem, 10vw, 6.5rem);
  background: linear-gradient(135deg, #FF2885 0%, #ff7eb3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 8px 0;
}
.hero-fs {
  display: block;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #fff;
  opacity: 0.9;
  margin-bottom: 20px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ── ADVANTAGES ── */
.advantages { background: linear-gradient(180deg, #010104 0%, #0d0820 100%); }
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; min-width: 0; }
.stat-num {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.adv-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,40,133,0.15); }
.adv-icon { font-size: 2rem; margin-bottom: 14px; }
.adv-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}
.adv-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }

/* ── BONUSES ── */
.bonuses { background: #010104; }
.bonus-hero-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(60,41,123,0.35) 0%, rgba(255,40,133,0.12) 100%);
  border: 1px solid rgba(255,40,133,0.25);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 40px;
  min-width: 0;
}
.bonus-hero-text { flex: 1; min-width: 0; }
.bonus-tag {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bonus-hero-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.bonus-amount-big {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}
.bonus-fs-big {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}
.bonus-hero-media {
  flex: 0 0 340px;
  max-width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,40,133,0.2);
  min-width: 0;
}
.bonus-hero-media img { width: 100%; height: auto; object-fit: cover; display: block; }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.promo-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,40,133,0.15); }
.promo-icon { font-size: 2.2rem; margin-bottom: 12px; }
.promo-label { font-family: 'Unbounded', sans-serif; font-size: 0.85rem; font-weight: 800; color: rgba(255,255,255,0.75); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.promo-val { font-family: 'Unbounded', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--pink); margin-bottom: 14px; }
.promo-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }

/* ── HOW TO START ── */
.howtostart { background: linear-gradient(180deg, #0d0820 0%, #010104 100%); }
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 340px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition);
  min-width: 0;
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,40,133,0.25);
  line-height: 1;
  margin-bottom: 14px;
}
.step-card h3 { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--pink);
  padding: 0 12px;
  flex-shrink: 0;
}

/* ── SPORTS ── */
.sports { background: #010104; }
.sports-layout {
  display: flex;
  gap: 48px;
  align-items: center;
  min-width: 0;
}
.sports-text { flex: 1; min-width: 0; }
.sports-text p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.75; margin-bottom: 18px; }
.sports-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.sports-list li { color: rgba(255,255,255,0.8); font-size: 0.95rem; padding: 10px 16px; background: rgba(255,40,133,0.07); border-left: 3px solid var(--pink); border-radius: 0 8px 8px 0; }
.sports-media {
  flex: 0 0 420px;
  max-width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,40,133,0.2);
  min-width: 0;
  display: block;
}
.sports-media img { width: 100%; height: auto; object-fit: cover; display: block; }

/* ── CASINO ── */
.casino-sec { background: linear-gradient(180deg, #010104 0%, #0d0820 100%); }
.casino-layout {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
  min-width: 0;
}
.casino-media {
  flex: 0 0 380px;
  max-width: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,40,133,0.2);
  min-width: 0;
  display: block;
}
.casino-media img { width: 100%; height: auto; object-fit: cover; display: block; }
.casino-text { flex: 1; min-width: 0; }
.casino-text p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.75; margin-bottom: 18px; }
.casino-categories { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.cat-tag {
  display: inline-block;
  background: rgba(60,41,123,0.35);
  border: 1px solid rgba(255,40,133,0.2);
  color: rgba(255,255,255,0.85);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
  min-width: 0;
}
.cat-tag:hover { background: rgba(255,40,133,0.15); border-color: var(--pink); }
.providers-strip {
  background: rgba(60,41,123,0.15);
  border: 1px solid rgba(255,40,133,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  min-width: 0;
}
.providers-label { font-weight: 700; color: rgba(255,255,255,0.6); font-size: 0.85rem; white-space: nowrap; }
.providers-list { display: flex; flex-wrap: wrap; gap: 10px; min-width: 0; }
.provider-pill {
  background: rgba(255,40,133,0.1);
  border: 1px solid rgba(255,40,133,0.2);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--transition);
}
.provider-pill:hover { background: rgba(255,40,133,0.22); }

/* ── MOBILE ── */
.mobile-sec { background: #010104; }
.mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  margin-bottom: 8px;
}
.mobile-feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-width: 0;
}
.mobile-icon { font-size: 2rem; margin-bottom: 12px; }
.mobile-feature h3 { font-family: 'Unbounded', sans-serif; font-size: 0.95rem; font-weight: 800; margin-bottom: 10px; }
.mobile-feature p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }

/* ── PAYMENTS ── */
.payments { background: linear-gradient(180deg, #0d0820 0%, #010104 100%); }
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.pay-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: background var(--transition), border-color var(--transition);
}
.pay-item:hover { background: rgba(255,40,133,0.1); border-color: var(--pink); }
.payment-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.pay-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-width: 0;
}
.pay-info-card h3 { font-family: 'Unbounded', sans-serif; font-size: 0.9rem; font-weight: 800; margin-bottom: 10px; }
.pay-info-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }

/* ── SUPPORT ── */
.support { background: #010104; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.support-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.support-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,40,133,0.15); }
.support-icon { font-size: 2.5rem; margin-bottom: 16px; }
.support-card h3 { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 12px; }
.support-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }

/* ── FAQ ── */
.faq { background: linear-gradient(180deg, #010104 0%, #0d0820 100%); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-width: 0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 20px 52px 20px 22px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--pink);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] { color: var(--pink); }
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { display: none; padding: 0 22px 20px; }
.faq-a.open { display: block; }
.faq-a p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.7; }

/* ── FINAL CTA ── */
.final-cta { background: #010104; }
.final-cta-inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(60,41,123,0.4) 0%, rgba(255,40,133,0.15) 100%);
  border: 1px solid rgba(255,40,133,0.3);
  border-radius: 28px;
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,40,133,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.final-cta-sub { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 8px; }
.final-cta-bonus {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 10px;
  line-height: 1;
}
.final-cta-note { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 32px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.final-cta-img-link { display: inline-block; max-width: 500px; width: 100%; border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(255,40,133,0.2); }
.final-cta-img { width: 100%; height: auto; object-fit: cover; display: block; }

/* ── FOOTER ── */
.site-footer { background: #10102D; border-top: 1px solid rgba(255,40,133,0.15); }
.footer-top {
  padding: 56px 20px 40px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-logo-link { display: block; flex-shrink: 0; }
.footer-logo { height: 52px; width: auto; max-width: 200px; object-fit: contain; }
.footer-cols {
  display: flex;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}
.footer-col { min-width: 140px; flex: 1; min-width: 0; }
.footer-col h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 9px;
  transition: color var(--transition);
  overflow-wrap: anywhere;
}
.footer-col a:hover { color: #fff; }
.footer-payments {
  padding: 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  min-width: 0;
}
.footer-pay-list { display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }
.fpay {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.footer-bottom {
  padding: 20px 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-disclaimer { color: rgba(255,255,255,0.4); font-size: 0.8rem; max-width: 700px; line-height: 1.6; }
.footer-copy { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.fbadge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* ── CATFISH ── */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, #3C297B 0%, #1a0f3d 100%);
  border-top: 2px solid var(--pink);
  padding: calc(12px + env(safe-area-inset-bottom, 0px)) 20px 12px;
}
.catfish-inner {
  max-width: calc(100% - 0px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}
.catfish-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  min-width: 0;
  flex: 1;
}
.catfish-close {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.catfish-close:hover { background: rgba(255,40,133,0.3); }
.catfish.hidden { display: none; }

/* ── EXIT POPUP ── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup {
  background: linear-gradient(135deg, #0d0820 0%, #1a0f3d 100%);
  border: 2px solid var(--pink);
  border-radius: 24px;
  padding: 48px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  min-width: 0;
}
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.exit-close:hover { background: rgba(255,40,133,0.3); }
.exit-badge {
  display: inline-block;
  background: rgba(255,40,133,0.15);
  border: 1px solid rgba(255,40,133,0.3);
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.exit-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.exit-bonus {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 14px;
  line-height: 1;
}
.exit-sub { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.6; }
.exit-skip {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition);
}
.exit-skip:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sports-layout { flex-direction: column; }
  .sports-media { flex: none; max-width: 100%; width: 100%; }
  .casino-layout { flex-direction: column; }
  .casino-media { flex: none; max-width: 100%; width: 100%; }
  .bonus-hero-card { flex-direction: column; }
  .bonus-hero-media { flex: none; max-width: 100%; width: 100%; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .header-nav { display: none; }
  .burger { display: flex; }
  .header-actions .btn--ghost { display: none; }
  .section { padding: 56px 0; }
  .adv-grid { grid-template-columns: minmax(0,1fr); }
  .promo-grid { grid-template-columns: minmax(0,1fr); }
  .payment-info-grid { grid-template-columns: minmax(0,1fr); }
  .support-grid { grid-template-columns: minmax(0,1fr); }
  .mobile-grid { grid-template-columns: minmax(0,1fr); }
  .stats-row { gap: 28px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 340px; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn { width: 100%; max-width: 340px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { flex-direction: column; gap: 24px; }
  .catfish-text { -webkit-line-clamp: 2; font-size: 0.82rem; }
  .bonus-hero-card { padding: 28px 20px; }
  .final-cta-inner { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-content { padding: 36px 14px 56px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
  .logo-img { height: 32px; }
  .hero-banner { max-height: 280px; }
  .hero-banner-img { max-height: 280px; }
  .step-card { min-width: unset; width: 100%; max-width: 100%; }
  .provider-pill { font-size: 0.78rem; }
  .cat-tag { font-size: 0.78rem; }
  .exit-popup { padding: 36px 20px; }
  .faq-q { font-size: 0.9rem; padding: 16px 44px 16px 16px; }
}

@media (max-width: 360px) {
  .btn--xl { font-size: 0.9rem; padding: 14px 20px; }
  .btn--lg { padding: 13px 22px; }
  .hero-amount { font-size: 2.6rem; }
  .hero-fs { font-size: 1.3rem; }
  .final-cta-bonus { font-size: 2rem; }
  .bonus-amount-big { font-size: 2.2rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeInUp 0.7s ease both; }
.hero-badge { animation: fadeInUp 0.5s 0.1s ease both; }
.hero-title { animation: fadeInUp 0.5s 0.2s ease both; }
.hero-cta-group { animation: fadeInUp 0.5s 0.35s ease both; }

/* Ensure no buttons appear flat on mobile */
@media (max-width: 600px) {
  .section .btn { width: 100%; max-width: 380px; }
  .center-cta .btn { width: 100%; max-width: 380px; }
}
/* ====================== NV CONTENT BLOCKS CSS ====================== */
/* Unique namespace: nv-content-* για αποφυγή συγκρούσεων */

.nv-content-block {
  padding: 80px 0;
  background: #0f0f1a;
  color: #e0e0e0;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.nv-content-block .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nv-content-block .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.nv-content-block .section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.nv-content-block .section-sub {
  font-size: 1.25rem;
  color: #a0a0c0;
  max-width: 720px;
  margin: 0 auto;
}

.nv-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.nv-content-text {
  font-size: 1.1rem;
  line-height: 1.75;
}

.nv-content-text h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.65rem;
  color: #ffd700;
  margin: 42px 0 18px;
}

.nv-content-text p {
  margin-bottom: 22px;
}

.nv-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.nv-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 1.08rem;
}

.nv-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: #00ff9d;
  border-radius: 50%;
}

.vip-levels li {
  padding-left: 12px;
}

.nv-list li strong {
  color: #ffffff;
}

.nv-quote {
  background: #1a1a2e;
  border-left: 6px solid #ffd700;
  padding: 28px 32px;
  margin: 40px 0;
  font-style: italic;
  color: #c0c0e0;
  border-radius: 4px;
}

.nv-cta-box {
  background: linear-gradient(135deg, #1a1a2e, #2a1a4a);
  padding: 38px 42px;
  border-radius: 12px;
  text-align: center;
  margin: 50px 0 30px;
  border: 1px solid #ffd70033;
}

.nv-cta-box p {
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.nv-content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nv-stat-card {
  background: #1a1a2e;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #ffd70022;
}

.nv-stat-big {
  font-family: 'Unbounded', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #00ff9d;
  line-height: 1;
}

.nv-stat-label {
  font-size: 1.1rem;
  color: #a0a0c0;
  margin-top: 12px;
}

.nv-content-bottom {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #33334a;
  text-align: center;
  font-size: 1.15rem;
}

/* Responsive */
@media (max-width: 992px) {
  .nv-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nv-content-block .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .nv-content-block {
    padding: 60px 0;
  }
}