/* ============================================================
   assets/styles.css – Rainbet Landing Page
   ============================================================ */

/* ---- 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: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #e2e8ff;
  background-color: #0E1328;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

a { color: inherit; text-decoration: none; }

/* ---- CSS Variables --------------------------------------- */
:root {
  --blue: #0177DB;
  --blue-hover: #0260b8;
  --blue-light: #1a8aee;
  --navy: #262C50;
  --navy-dark: #191F3B;
  --bg-dark: #0E1328;
  --bg-mid: #141929;
  --bg-card: #1a2140;
  --white: #FFFFFF;
  --text: #e2e8ff;
  --text-muted: #8a9ac0;
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-btn: 0 4px 20px rgba(1,119,219,0.45);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --container: 1200px;
  --header-h: 70px;
  --transition: 0.22s ease;
  --font-display: 'Barlow Condensed', sans-serif;
}

/* ---- Typography ------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--white);
}

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

/* ---- Utility --------------------------------------------- */
.mt-2 { margin-top: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 19, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.header-logo { flex-shrink: 0; display: flex; align-items: center; }

.logo-img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.main-nav::-webkit-scrollbar { display: none; }

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }

.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.06); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 60%, #0155a8 100%);
  color: var(--white);
  box-shadow: var(--shadow-btn);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(1,119,219,0.65);
  background: linear-gradient(135deg, #28a0ff 0%, var(--blue-light) 60%, var(--blue) 100%);
}
.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(1,119,219,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.08);
}
.btn--ghost:active { transform: translateY(0); }

.btn--sm { min-height: 38px; padding: 8px 18px; font-size: 13px; }
.btn--xl { min-height: 54px; padding: 14px 36px; font-size: 18px; }
.btn--full { width: 100%; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
}
.section--dark { background-color: var(--bg-dark); }
.section--mid  { background-color: var(--bg-mid); }
.section--cta  {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0c1736 50%, #0a1128 100%);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(1,119,219,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg-dark);
  padding: 0 0 60px;
}

.hero-banner {
  width: 100%;
  overflow: hidden;
  background: var(--navy-dark);
  max-height: 520px;
}
.hero-banner-link { display: block; width: 100%; }
.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.hero-content {
  text-align: center;
  padding-top: 48px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(1,119,219,0.25), rgba(1,119,219,0.08));
  border: 1px solid rgba(1,119,219,0.5);
  color: #5bbfff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 36px;
}
.bonus-line1 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bonus-line2 {
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 0%, #5bbfff 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.bonus-line3 {
  font-size: clamp(26px, 4.5vw, 56px);
  font-weight: 800;
  color: #5bbfff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   ADVANTAGES
   ============================================================ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(1,119,219,0.3);
}
.adv-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}
.adv-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.adv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   BONUSES / PROMO
   ============================================================ */
.promo-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(1,119,219,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}
.promo-tag {
  display: inline-block;
  background: rgba(1,119,219,0.2);
  border: 1px solid rgba(1,119,219,0.4);
  color: #5bbfff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.promo-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}
.promo-accent { color: #5bbfff; }
.promo-hero-text p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

.promo-hero-media { min-width: 0; }
.media-link { display: block; }
.media.mediaCard {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--navy-dark);
  max-height: 340px;
}
.media.mediaCard img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.media-link:hover .mediaCard img { transform: scale(1.03); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), border-color var(--transition);
}
.promo-card:hover { transform: translateY(-3px); border-color: rgba(1,119,219,0.3); }
.promo-card-icon { font-size: 28px; }
.promo-card h4 { font-size: 17px; font-weight: 800; text-transform: uppercase; }
.promo-card p { font-size: 13px; color: var(--text-muted); flex: 1; line-height: 1.65; }

/* ============================================================
   HOW TO START
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 3px 3px 0 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(1,119,219,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.steps-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   TWO-COL LAYOUT (Sports / Casino)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.two-col--reverse { }
.two-col--reverse .two-col-text { order: 2; }
.two-col--reverse .two-col-media { order: 1; }

.two-col-text h3 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.two-col-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.two-col-text .btn { margin-top: 8px; }

.two-col-media { min-width: 0; }

/* Sport tags */
.sport-tags, .casino-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.sport-tag, .casino-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.sport-tag:hover, .casino-cat:hover {
  background: rgba(1,119,219,0.15);
  border-color: rgba(1,119,219,0.5);
  transform: translateY(-2px);
  color: var(--white);
}

/* ============================================================
   MOBILE FEATURES
   ============================================================ */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.mobile-feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform var(--transition);
}
.mobile-feat:hover { transform: translateY(-4px); border-color: rgba(1,119,219,0.3); }
.mobile-feat-icon { font-size: 32px; margin-bottom: 12px; }
.mobile-feat h4 { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.mobile-feat p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PAYMENTS
   ============================================================ */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.pay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.pay-card:hover { transform: translateY(-3px); border-color: rgba(1,119,219,0.3); }
.pay-icon {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue-light);
  font-family: var(--font-display);
  margin-bottom: 12px;
  display: block;
}
.pay-card h4 { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.pay-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   SUPPORT
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform var(--transition);
}
.support-card:hover { transform: translateY(-3px); border-color: rgba(1,119,219,0.3); }
.support-icon { font-size: 32px; margin-bottom: 12px; }
.support-card h4 { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.support-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-a[style*="max-height"]) { border-color: rgba(1,119,219,0.35); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
  text-transform: uppercase;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-q:hover { color: #5bbfff; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 20px;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta-badge {
  display: inline-block;
  background: rgba(1,119,219,0.25);
  border: 1px solid rgba(1,119,219,0.5);
  color: #5bbfff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.final-cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.final-cta-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 28px;
}
.fcta-line1 { font-size: clamp(18px, 2.5vw, 28px); font-weight: 700; color: var(--text-muted); text-transform: uppercase; font-family: var(--font-display); }
.fcta-line2 {
  font-size: clamp(44px, 8vw, 90px);
  font-weight: 900;
  font-family: var(--font-display);
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #5bbfff 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fcta-line3 { font-size: clamp(22px, 3.5vw, 44px); font-weight: 800; color: #5bbfff; font-family: var(--font-display); text-transform: uppercase; }
.final-cta-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner { }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.fbadge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   CATFISH BAR
   ============================================================ */
.catfish {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--navy-dark) 0%, #162045 100%);
  border-top: 2px solid var(--blue);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.catfish.hidden { display: none; }
.catfish-inner {
  max-width: calc(100% - 0px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.catfish-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.catfish-text strong {
  font-family: var(--font-display);
  font-size: clamp(13px, 2vw, 17px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catfish-sub { font-size: 11px; color: var(--text-muted); }
.catfish-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-muted);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition);
}
.catfish-close:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 12, 30, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-overlay.active { opacity: 1; pointer-events: all; }

.exit-popup {
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(1,119,219,0.4);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(1,119,219,0.25);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.exit-overlay.active .exit-popup { transform: scale(1); }

.exit-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition), border-color var(--transition);
}
.exit-close:hover { color: var(--white); border-color: var(--white); }

.exit-badge {
  display: inline-block;
  background: rgba(255,100,100,0.15);
  border: 1px solid rgba(255,100,100,0.4);
  color: #ff8080;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.exit-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.exit-bonus {
  font-size: clamp(38px, 8vw, 68px);
  background: linear-gradient(135deg, #ffffff 0%, #5bbfff 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exit-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.exit-decline {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  padding: 12px;
  margin-top: 12px;
  text-decoration: underline;
  transition: color var(--transition);
}
.exit-decline:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-hero-card { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col--reverse .two-col-text { order: 1; }
  .two-col--reverse .two-col-media { order: 2; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 52px 0; }

  .main-nav { display: none; }
  .burger { display: flex; }
  .header-actions .btn--ghost { display: none; }

  .hero-banner { max-height: 280px; }
  .hero-banner-img { max-height: 280px; }
  .hero-content { padding-top: 32px; }

  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; max-width: 400px; }

  .adv-grid { grid-template-columns: 1fr; gap: 14px; }
  .promo-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .mobile-features { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }

  .promo-hero-card { padding: 24px 20px; }

  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .catfish-inner { flex-wrap: nowrap; }
  .catfish-text { min-width: 0; }
  .catfish-text strong { font-size: 13px; }

  .exit-popup { padding: 40px 24px 32px; }

  .steps-cta .btn { width: 100%; }

  .hero-cta-group { width: 100%; }

  .section--cta .hero-cta-group { flex-direction: column; align-items: stretch; }
  .section--cta .hero-cta-group .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  :root { --header-h: 60px; }

  .hero-banner { max-height: 200px; }
  .hero-banner-img { max-height: 200px; }

  .footer-links { grid-template-columns: 1fr; }

  .promo-hero-card { padding: 20px 16px; }
  .promo-title { font-size: 32px; }
}

@media (max-width: 360px) {
  .btn--xl { font-size: 16px; padding: 12px 20px; }
  .bonus-line2 { font-size: 44px; }
  .fcta-line2 { font-size: 40px; }
}
.rainbet-trustlab {
padding: 4rem 1.25rem;
background: linear-gradient(180deg, #0E1328 0%, #121833 100%);
color: #e2e8ff;
font-family: 'Barlow', sans-serif;
line-height: 1.7;
}
.rainbet-trustlab > * {
max-width: 1100px;
margin-left: auto;
margin-right: auto;
}
.rainbet-trustlab h2,
.rainbet-trustlab h3,
.rainbet-trustlab h4 {
font-family: 'Barlow Condensed', sans-serif;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.02em;
line-height: 1.15;
}
.rainbet-trustlab h2 {
font-size: clamp(1.6rem, 4.5vw, 2.4rem);
font-weight: 800;
margin: 0.5rem 0 1rem;
}
.rainbet-trustlab h3 {
font-size: clamp(1.25rem, 3.4vw, 1.7rem);
font-weight: 800;
margin: 0 0 1rem;
padding-bottom: 0.6rem;
border-bottom: 1px solid rgba(1, 119, 219, 0.25);
}
.rainbet-trustlab h4 {
font-size: 1.05rem;
font-weight: 700;
margin: 1.4rem 0 0.7rem;
color: #5bbfff;
}
.rainbet-trustlab p {
margin: 0 0 1rem;
font-size: 0.97rem;
color: #c8d2ed;
}
.rainbet-trustlab strong { color: #ffffff; font-weight: 700; }
.rainbet-trustlab em { color: #5bbfff; font-style: normal; font-weight: 600; }
.rainbet-trustlab__intro {
text-align: left;
padding: 1.75rem;
background: rgba(26, 33, 64, 0.55);
border: 1px solid rgba(255, 255, 255, 0.06);
border-left: 3px solid #0177DB;
border-radius: 14px;
margin-bottom: 2.5rem;
}
.rainbet-trustlab__eyebrow {
display: inline-block;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 800;
font-size: 0.75rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #5bbfff;
background: rgba(1, 119, 219, 0.15);
border: 1px solid rgba(1, 119, 219, 0.4);
padding: 0.3rem 0.85rem;
border-radius: 999px;
margin-bottom: 0.9rem;
}
.rainbet-trustlab__block {
background: rgba(20, 25, 50, 0.65);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 16px;
padding: 1.5rem 1.25rem;
margin-bottom: 1.5rem;
}
.rainbet-trustlab__block--howto {
background: linear-gradient(180deg, rgba(20, 25, 50, 0.85) 0%, rgba(26, 33, 64, 0.65) 100%);
border-color: rgba(1, 119, 219, 0.25);
}
.rainbet-trustlab__list {
list-style: none;
padding: 0;
margin: 0 0 1rem;
display: grid;
gap: 0.65rem;
}
.rainbet-trustlab__list li {
position: relative;
padding: 0.7rem 0.9rem 0.7rem 2.2rem;
background: rgba(14, 19, 40, 0.6);
border: 1px solid rgba(255, 255, 255, 0.04);
border-radius: 10px;
font-size: 0.95rem;
color: #c8d2ed;
}
.rainbet-trustlab__list li::before {
content: "";
position: absolute;
left: 0.85rem;
top: 1.1rem;
width: 0.5rem;
height: 0.5rem;
border-radius: 50%;
background: #0177DB;
box-shadow: 0 0 0 3px rgba(1, 119, 219, 0.18);
}
.rainbet-trustlab__steps {
list-style: none;
counter-reset: rb-step;
padding: 0;
margin: 1rem 0;
display: grid;
gap: 0.85rem;
}
.rainbet-trustlab__steps li {
counter-increment: rb-step;
position: relative;
padding: 1rem 1rem 1rem 3.5rem;
background: rgba(14, 19, 40, 0.7);
border: 1px solid rgba(1, 119, 219, 0.18);
border-radius: 12px;
}
.rainbet-trustlab__steps li::before {
content: counter(rb-step, decimal-leading-zero);
position: absolute;
left: 0.9rem;
top: 0.9rem;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 900;
font-size: 1.15rem;
color: #ffffff;
background: linear-gradient(135deg, #1a8aee, #0177DB);
width: 2rem;
height: 2rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
box-shadow: 0 4px 14px rgba(1, 119, 219, 0.35);
}
.rainbet-trustlab__steps li strong {
display: block;
margin-bottom: 0.25rem;
font-size: 1rem;
color: #ffffff;
}
.rainbet-trustlab__steps li span {
display: block;
font-size: 0.92rem;
color: #b6c1de;
line-height: 1.65;
}
.rainbet-trustlab__ordered {
margin: 0 0 1rem 1.1rem;
padding: 0;
display: grid;
gap: 0.5rem;
}
.rainbet-trustlab__ordered li {
font-size: 0.95rem;
color: #c8d2ed;
padding-left: 0.3rem;
}
.rainbet-trustlab__ordered li::marker {
color: #5bbfff;
font-weight: 700;
}
.rainbet-trustlab__note {
margin-top: 1.25rem;
padding: 1rem 1.1rem;
background: rgba(1, 119, 219, 0.08);
border: 1px solid rgba(1, 119, 219, 0.3);
border-radius: 12px;
}
.rainbet-trustlab__note p { margin: 0; font-size: 0.93rem; color: #d8e1f7; }
.rainbet-trustlab__tablewrap {
width: 100%;
overflow-x: auto;
margin: 0.75rem 0 1rem;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.06);
}
.rainbet-trustlab__table {
width: 100%;
border-collapse: collapse;
font-size: 0.92rem;
min-width: 32rem;
}
.rainbet-trustlab__table thead th {
background: rgba(1, 119, 219, 0.18);
color: #ffffff;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.04em;
text-align: left;
padding: 0.85rem 1rem;
border-bottom: 1px solid rgba(1, 119, 219, 0.4);
font-size: 0.85rem;
}
.rainbet-trustlab__table tbody td {
padding: 0.8rem 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
vertical-align: top;
color: #c8d2ed;
}
.rainbet-trustlab__table tbody tr:nth-child(even) td {
background: rgba(14, 19, 40, 0.5);
}
.rainbet-trustlab__table tbody tr:last-child td { border-bottom: none; }
.rainbet-trustlab__summary {
margin-top: 2rem;
padding: 1.75rem 1.25rem;
background: linear-gradient(135deg, rgba(38, 44, 80, 0.85) 0%, rgba(14, 19, 40, 0.9) 100%);
border: 1px solid rgba(1, 119, 219, 0.35);
border-radius: 16px;
text-align: left;
}
.rainbet-trustlab__summary h3 {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0.75rem;
}
.rainbet-trustlab__cta {
margin-top: 1.25rem;
text-align: center;
}
.rainbet-trustlab__btn {
display: inline-block;
padding: 0.85rem 1.6rem;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 900;
font-size: 0.95rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffffff;
background: linear-gradient(135deg, #1a8aee 0%, #0177DB 60%, #0155a8 100%);
border: 2px solid rgba(255, 255, 255, 0.15);
border-radius: 10px;
text-decoration: none;
box-shadow: 0 4px 20px rgba(1, 119, 219, 0.45);
transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.rainbet-trustlab__btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(1, 119, 219, 0.55);
}
@media (min-width: 600px) {
.rainbet-trustlab { padding: 5rem 1.5rem; }
.rainbet-trustlab__block { padding: 2rem 1.75rem; }
.rainbet-trustlab__list { grid-template-columns: 1fr 1fr; }
.rainbet-trustlab__intro { padding: 2rem 2.25rem; }
.rainbet-trustlab__summary { padding: 2.25rem 2rem; }
}
@media (min-width: 900px) {
.rainbet-trustlab { padding: 6rem 2rem; }
.rainbet-trustlab__block { padding: 2.5rem 2.25rem; margin-bottom: 1.75rem; }
.rainbet-trustlab h2 { font-size: 2.6rem; }
.rainbet-trustlab h3 { font-size: 1.75rem; }
.rainbet-trustlab p { font-size: 1rem; }
.rainbet-trustlab__steps { grid-template-columns: 1fr 1fr; }
.rainbet-trustlab__steps li { padding-left: 4rem; }
.rainbet-trustlab__steps li::before { left: 1.1rem; top: 1.1rem; width: 2.2rem; height: 2.2rem; }
}