/* ============================================
   BRANGO CASINO — styles.css
   Design: Dark luxury crypto casino
   Palette: #07101A (bg), #FFFFFF (text), #FFBE31 (CTA)
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --color-bg: #07101A;
  --color-bg2: #0b1826;
  --color-bg3: #0f2033;
  --color-surface: #122437;
  --color-surface2: #1a3048;
  --color-border: rgba(255,190,49,0.18);
  --color-primary: #FFBE31;
  --color-primary-dark: #e6a800;
  --color-primary-light: #ffd06e;
  --color-white: #FFFFFF;
  --color-text: #e0e8f0;
  --color-muted: #7a9ab5;
  --color-danger: #ff4444;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-glow: 0 0 24px rgba(255,190,49,0.35);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-btn: 0 4px 20px rgba(255,190,49,0.4);

  --transition: 0.25s ease;
  --header-h: 72px;
  --container-max: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  min-width: 0;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  color: #07101A;
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,0.25);
  border: 2px solid transparent;
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255,190,49,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn--primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 10px rgba(255,190,49,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 0 0 rgba(255,190,49,0);
}
.btn--ghost:hover {
  background: rgba(255,190,49,0.1);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--lg {
  font-size: 1.1rem;
  min-height: 52px;
  padding: 14px 36px;
}

.btn--xl {
  font-size: 1.2rem;
  min-height: 56px;
  padding: 16px 44px;
  border-radius: var(--radius-lg);
}

/* ============================================
   MEDIA / IMAGE CARDS
   ============================================ */
.media, .mediaCard {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.media-link:hover .media,
.media-link:hover .mediaCard {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--shadow-glow);
}
.media-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}
.media-link { display: block; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,16,26,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}

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

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.main-nav { flex: 1; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.main-nav::-webkit-scrollbar { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  min-width: 0;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--color-primary);
  background: rgba(255,190,49,0.08);
}

.header-cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--color-bg2);
  border-bottom: 1px solid var(--color-border);
  padding: 16px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: rgba(255,190,49,0.08); color: var(--color-primary); }
.mobile-cta { margin-top: 8px; width: 100%; justify-content: center; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
  padding-block: clamp(48px, 7vw, 96px);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title span { color: var(--color-primary); }

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-inline: auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: var(--header-h);
  background: var(--color-bg);
  position: relative;
}

.hero-image-link {
  display: block;
  width: 100%;
}
.hero-media {
  width: 100%;
  overflow: hidden;
  background: var(--color-surface);
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

.hero-content {
  text-align: center;
  padding-block: clamp(40px, 6vw, 72px);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-bg);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 1.05;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.hero-accent {
  color: var(--color-primary);
  display: block;
  text-shadow: 0 0 40px rgba(255,190,49,0.5);
}
.hero-sub {
  display: block;
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  color: var(--color-white);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  margin-bottom: 20px;
}

.hero-disclaimer {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 8px;
}

/* Promo strip */
.promo-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: 14px;
}
.promo-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.promo-item {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.promo-sep { color: var(--color-border); font-size: 1.2rem; }

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
  background: var(--color-bg2);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.adv-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: var(--color-primary);
}
.adv-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.adv-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.adv-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================
   BONUSES
   ============================================ */
.bonuses { background: var(--color-bg); }

.bonus-hero-card {
  background: linear-gradient(135deg, var(--color-surface2) 0%, rgba(255,190,49,0.08) 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  margin-bottom: 48px;
  box-shadow: var(--shadow-glow), var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.bonus-hero-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,190,49,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-hero-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-bg);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.bonus-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--color-primary);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255,190,49,0.3);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.bonus-hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text);
  line-height: 1.7;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 32px;
  overflow-wrap: anywhere;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.bonus-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,190,49,0.45);
}
.bonus-icon { font-size: 2rem; }
.bonus-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  letter-spacing: 0.03em;
}
.bonus-card-text {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================
   HOW TO START
   ============================================ */
.how-to { background: var(--color-bg2); }

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 900;
  flex-shrink: 0;
  padding: 0 12px;
  opacity: 0.7;
}
.step-card {
  flex: 1;
  min-width: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 16px rgba(255,190,49,0.2);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
}
.step-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.how-to-cta {
  text-align: center;
}

/* ============================================
   SPORT
   ============================================ */
.sport { background: var(--color-bg); }

.sport-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sport-text {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.sport-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.sport-features li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 10px 16px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-primary);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================
   CASINO
   ============================================ */
.casino-sec { background: var(--color-bg2); }

.casino-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.casino-text {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.casino-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  min-width: 0;
}
.cat-tile:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  background: rgba(255,190,49,0.06);
}
.cat-icon { font-size: 1.6rem; line-height: 1; }
.cat-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}
.cat-count {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-primary);
}

/* ============================================
   MOBILE SECTION
   ============================================ */
.mobile-sec { background: var(--color-bg); }

.mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.mobile-feature {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  transition: transform var(--transition), border-color var(--transition);
}
.mobile-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255,190,49,0.4);
}
.mobile-icon { font-size: 2rem; margin-bottom: 12px; }
.mobile-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.mobile-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mobile-cta-row { text-align: center; }

/* ============================================
   PAYMENTS
   ============================================ */
.payments { background: var(--color-bg2); }

.payments-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-bottom: 28px;
}
.payments-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 480px;
}
.payments-table th, .payments-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.payments-table th {
  background: var(--color-surface2);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}
.payments-table tbody tr:nth-child(odd) {
  background: var(--color-surface);
}
.payments-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}
.payments-table tbody tr:hover {
  background: rgba(255,190,49,0.06);
}
.payments-table td {
  font-size: 0.95rem;
  color: var(--color-text);
}
.payments-table tbody tr:last-child td {
  border-bottom: none;
}
.payments-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.payments-cta { text-align: center; }

/* ============================================
   SUPPORT
   ============================================ */
.support { background: var(--color-bg); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.support-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}
.support-icon { font-size: 2.5rem; line-height: 1; }
.support-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
}
.support-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--color-bg2); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,190,49,0.4); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: left;
  background: none;
  cursor: pointer;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--color-primary); }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  font-size: 0.97rem;
  color: var(--color-muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg3) 50%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,190,49,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.final-badge {
  display: inline-block;
  background: rgba(255,190,49,0.15);
  border: 1px solid rgba(255,190,49,0.4);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.final-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.final-bonus {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-shadow: var(--shadow-glow);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.final-desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.final-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.final-disclaimer {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg2);
  border-top: 1px solid var(--color-border);
  padding-block: clamp(48px, 6vw, 80px);
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 54px; width: auto; max-width: 200px; object-fit: contain; }
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-cta-btn { width: 100%; max-width: 240px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-col a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-legal {
  font-size: 0.83rem;
  color: var(--color-muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.footer-badge {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

/* ============================================
   CATFISH BAR
   ============================================ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 990;
  background: linear-gradient(90deg, var(--color-bg) 0%, var(--color-surface) 50%, var(--color-bg) 100%);
  border-top: 2px solid var(--color-primary);
  padding: 12px clamp(12px, 3vw, 24px);
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.catfish.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.catfish-inner {
  max-width: calc(var(--container-max) - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.catfish-text {
  flex: 1;
  font-weight: 800;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  color: var(--color-white);
  letter-spacing: 0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.catfish-btn {
  flex-shrink: 0;
  font-size: 0.85rem;
  min-height: 40px;
  padding: 8px 20px;
  white-space: nowrap;
}
.catfish-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
}
.catfish-close:hover { background: rgba(255,190,49,0.25); color: var(--color-primary); }

/* ============================================
   EXIT POPUP
   ============================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,16,26,0.92);
  backdrop-filter: blur(8px);
  -webkit-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 {
  background: var(--color-surface2);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  max-width: 540px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-glow), 0 24px 64px rgba(0,0,0,0.6);
  animation: popIn 0.35s ease forwards;
}
@keyframes popIn {
  from { transform: scale(0.92) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
}
.exit-close:hover { background: rgba(255,190,49,0.2); color: var(--color-primary); }

.exit-badge {
  display: inline-block;
  background: rgba(255,190,49,0.12);
  border: 1px solid rgba(255,190,49,0.35);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.exit-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.exit-bonus {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--color-primary);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.exit-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.exit-btn { width: 100%; }
.exit-skip {
  display: block;
  margin: 16px auto 0;
  font-size: 0.82rem;
  color: var(--color-muted);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition);
}
.exit-skip:hover { color: var(--color-danger); }

/* ============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }

  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sport-layout { grid-template-columns: 1fr; }
  .sport-media { order: -1; }
  .casino-layout { grid-template-columns: 1fr; }
  .casino-media { order: -1; }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-row {
    flex-direction: column;
    gap: 24px;
  }
  .step-arrow { transform: rotate(90deg); align-self: center; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================ */
@media (max-width: 600px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .mobile-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .casino-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-btns, .final-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn--xl, .btn--lg, .btn--primary, .btn--ghost {
    width: 100%;
  }
  .catfish-text { font-size: 0.72rem; }
  .promo-sep { display: none; }
  .footer-top { gap: 28px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤400px)
   ============================================ */
@media (max-width: 400px) {
  .footer-links { grid-template-columns: 1fr; }
  .casino-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-img { max-width: 130px; height: 36px; }
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.brango-insight{background:linear-gradient(180deg,#0b0f1a 0%,#111827 100%);color:#e8ecf3;padding:64px 20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;line-height:1.65;border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06)}
.brango-insight *{box-sizing:border-box}
.brango-insight__header{max-width:1100px;margin:0 auto 48px;text-align:center}
.brango-insight__eyebrow{display:inline-block;padding:6px 16px;background:linear-gradient(90deg,#f5a623,#f76b1c);color:#1a1a1a;font-size:13px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;border-radius:999px;margin-bottom:18px}
.brango-insight__title{font-size:34px;line-height:1.25;font-weight:800;color:#fff;margin:0 0 20px;letter-spacing:-.5px}
.brango-insight__lead{font-size:17px;color:#c9d1de;max-width:880px;margin:0 auto}
.brango-insight__article{max-width:1100px;margin:0 auto 40px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);border-radius:14px;padding:32px 28px;transition:border-color .25s ease}
.brango-insight__article:hover{border-color:rgba(245,166,35,.35)}
.brango-insight__h3{font-size:24px;line-height:1.3;font-weight:700;color:#fff;margin:0 0 18px;padding-left:14px;border-left:4px solid #f5a623}
.brango-insight__p{font-size:16px;color:#d4dae6;margin:0 0 16px}
.brango-insight__p:last-child{margin-bottom:0}
.brango-insight__p strong{color:#f5a623}
.brango-insight__list{margin:8px 0 16px;padding:0;list-style:none}
.brango-insight__list li{position:relative;padding:10px 0 10px 30px;font-size:16px;color:#d4dae6;border-bottom:1px solid rgba(255,255,255,.05)}
.brango-insight__list li:last-child{border-bottom:none}
.brango-insight__list li::before{content:"◆";position:absolute;left:6px;top:10px;color:#f5a623;font-size:14px}
.brango-insight__list li strong{color:#fff;font-weight:600}
.brango-insight__table{width:100%;border-collapse:collapse;margin:20px 0 8px;font-size:15px;background:rgba(0,0,0,.25);border-radius:10px;overflow:hidden}
.brango-insight__table thead{background:linear-gradient(90deg,#f5a623,#f76b1c)}
.brango-insight__table thead th{color:#1a1a1a;font-weight:700;padding:14px 16px;text-align:left;font-size:14px;letter-spacing:.5px;text-transform:uppercase}
.brango-insight__table tbody td{padding:14px 16px;color:#d4dae6;border-bottom:1px solid rgba(255,255,255,.06)}
.brango-insight__table tbody tr:last-child td{border-bottom:none}
.brango-insight__table tbody tr:nth-child(even){background:rgba(255,255,255,.02)}
.brango-insight__table tbody tr:hover{background:rgba(245,166,35,.05)}
@media (max-width:768px){
.brango-insight{padding:48px 16px}
.brango-insight__title{font-size:26px}
.brango-insight__lead{font-size:15px}
.brango-insight__article{padding:24px 18px;margin-bottom:28px}
.brango-insight__h3{font-size:20px;padding-left:12px;border-left-width:3px}
.brango-insight__p,.brango-insight__list li{font-size:15px}
.brango-insight__table{font-size:13px;display:block;overflow-x:auto;white-space:nowrap}
.brango-insight__table thead th,.brango-insight__table tbody td{padding:10px 12px}
}