/* ===== UNIBET CASINO UK — MAIN STYLESHEET ===== */
/* Brand: Unibet — primary #007A3D (green), accent #F5A623 (gold), dark #1a1a2e */

:root {
  --ub-green: #007A3D;
  --ub-green-dark: #005C2E;
  --ub-green-light: #00a854;
  --ub-gold: #F5A623;
  --ub-gold-dark: #d48a0c;
  --ub-dark: #0f1923;
  --ub-dark2: #1a2535;
  --ub-dark3: #243044;
  --ub-white: #ffffff;
  --ub-off-white: #f4f6f8;
  --ub-text: #1a1a2e;
  --ub-text-muted: #5a6a7a;
  --ub-border: #dde3ea;
  --ub-radius: 8px;
  --ub-radius-lg: 14px;
  --ub-shadow: 0 2px 12px rgba(0,0,0,0.10);
  --ub-shadow-lg: 0 6px 32px rgba(0,0,0,0.16);
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-display: 'Inter', 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ub-text);
  background: var(--ub-off-white);
}

a { color: var(--ub-green); text-decoration: none; }
a:hover { color: var(--ub-green-dark); text-decoration: underline; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ub-text);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.7rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section--dark {
  background: var(--ub-dark) !important;
  color: var(--ub-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--ub-white);
}
.section--dark > .container > .section-header p,
.section--dark > .container > .section-header h2,
.section--dark > .container p,
.section--dark > .container li,
.section--dark > .container > div > p,
.section--dark > .container > div > h3,
.section--dark > .container > div > div > p {
  color: rgba(255,255,255,0.85);
}

.section--alt {
  background: var(--ub-white);
}

.section--green {
  background: var(--ub-green);
  color: var(--ub-white);
}
.section--green h2,
.section--green h3,
.section--green p { color: var(--ub-white); }

/* ===== HEADER ===== */
.site-header {
  background: var(--ub-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--ub-green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ub-white);
  letter-spacing: -0.5px;
}

.logo-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ub-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--ub-radius);
  transition: all 0.2s;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ub-white);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.header-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: var(--ub-radius);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn--primary {
  background: var(--ub-gold);
  color: #1a1000;
}
.btn--primary:hover {
  background: var(--ub-gold-dark);
  color: #1a1000;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}

.btn--green {
  background: var(--ub-green);
  color: var(--ub-white);
}
.btn--green:hover {
  background: var(--ub-green-dark);
  color: var(--ub-white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--ub-white);
}
.btn--outline:hover {
  border-color: var(--ub-white);
  background: rgba(255,255,255,0.08);
  color: var(--ub-white);
  text-decoration: none;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

/* ===== BONUS BANNER TOP ===== */
.bonus-banner-top {
  background: linear-gradient(135deg, var(--ub-green-dark) 0%, var(--ub-green) 50%, #00c96a 100%);
  padding: 0;
  overflow: hidden;
}

.bonus-banner-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  flex-wrap: wrap;
}

.banner-badge {
  background: var(--ub-gold);
  color: #1a1000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  display: inline-block;
}

.banner-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--ub-white);
  line-height: 1.2;
}

.banner-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

.banner-terms {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ===== HERO / INTRO ===== */
.hero-section {
  background: var(--ub-dark);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(ellipse at right top, rgba(0,122,61,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ub-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.hero-section h1 {
  color: var(--ub-white);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--ub-radius);
  padding: 14px 16px;
  text-align: center;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ub-gold);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== QUICK INFO CARD (hero sidebar) ===== */
.quick-info-card {
  background: var(--ub-dark2);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--ub-radius-lg);
  padding: 28px 24px;
}

.quick-info-card h3 {
  color: var(--ub-white);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}

.info-row:last-child { border-bottom: none; }

.info-label {
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
  min-width: 90px;
}

.info-val {
  color: var(--ub-white);
  text-align: right;
  font-weight: 600;
}

.info-val.green { color: #4ade80; }
.info-val.gold { color: var(--ub-gold); }

/* ===== TABLE OF CONTENTS ===== */
.toc-section {
  background: var(--ub-white);
  border-bottom: 1px solid var(--ub-border);
}

.toc-inner {
  padding: 28px 0;
}

.toc-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ub-text-muted);
  margin-bottom: 14px;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--ub-off-white);
  border-radius: var(--ub-radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ub-green-dark);
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.toc-link:hover {
  background: #e8f5ef;
  border-color: var(--ub-green);
  text-decoration: none;
  color: var(--ub-green-dark);
}

.toc-num {
  width: 22px;
  height: 22px;
  background: var(--ub-green);
  color: var(--ub-white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--ub-border);
}

.content-section:nth-child(even):not(.section--dark) {
  background: var(--ub-white);
}

.section-header {
  margin-bottom: 2rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--ub-green);
  margin-bottom: 8px;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.content-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== STEPS ===== */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.steps-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 1.25rem;
  counter-increment: steps;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--ub-green);
  color: var(--ub-white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-content strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
  color: var(--ub-text);
}

.step-content span {
  font-size: 0.88rem;
  color: var(--ub-text-muted);
}

/* ===== CARDS ===== */
.card {
  background: var(--ub-white);
  border: 1px solid var(--ub-border);
  border-radius: var(--ub-radius-lg);
  padding: 24px 22px;
  box-shadow: var(--ub-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--ub-shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #e8f5ef;
  border-radius: var(--ub-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--ub-text-muted);
  margin-bottom: 0;
}

/* ===== FEATURE CARDS (dark variant) ===== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--ub-dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ub-radius-lg);
  padding: 22px 20px;
}

.feature-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.feature-card h4 {
  color: var(--ub-white);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== GAMES CATEGORIES ===== */
.game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.game-cat-card {
  background: var(--ub-dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--ub-radius-lg);
  padding: 26px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.game-cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ub-green);
}

.game-cat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: rgba(0,122,61,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-cat-card h3 {
  color: var(--ub-white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.game-cat-count {
  font-size: 0.8rem;
  color: var(--ub-gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.game-cat-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

/* ===== BONUS CARDS ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--ub-white);
  border: 2px solid var(--ub-border);
  border-radius: var(--ub-radius-lg);
  padding: 24px 20px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  border-color: var(--ub-green);
  box-shadow: 0 4px 20px rgba(0,122,61,0.12);
}

.bonus-card--featured {
  border-color: var(--ub-gold);
}

.bonus-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ub-gold);
  color: #1a1000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ub-green);
  line-height: 1.1;
  margin-bottom: 4px;
}

.bonus-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ub-text);
  margin-bottom: 12px;
}

.bonus-details {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.bonus-details li {
  font-size: 0.85rem;
  color: var(--ub-text-muted);
  padding: 4px 0;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  gap: 6px;
}

.bonus-details li::before {
  content: '✓';
  color: var(--ub-green);
  font-weight: 700;
  flex-shrink: 0;
}

.bonus-wagering {
  font-size: 0.75rem;
  color: var(--ub-text-muted);
  background: var(--ub-off-white);
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

/* ===== PAYMENTS TABLE ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--ub-radius-lg);
  border: 1px solid var(--ub-border);
  margin-bottom: 1.5rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--ub-white);
}

.data-table thead tr {
  background: var(--ub-green);
  color: var(--ub-white);
}

.data-table th {
  padding: 13px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--ub-border);
  vertical-align: top;
}

.data-table tbody tr:last-child td { border-bottom: none; }

.data-table tbody tr:nth-child(even) td {
  background: var(--ub-off-white);
}

.data-table tbody tr:hover td {
  background: #e8f5ef;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge--green { background: #d4f5e2; color: #0a5c2a; }
.badge--gold { background: #fef3d8; color: #8a5a00; }
.badge--blue { background: #dbeafe; color: #1e40af; }

/* ===== VIP TIERS ===== */
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 2rem 0;
}

.vip-tier {
  background: var(--ub-dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ub-radius-lg);
  padding: 20px 16px;
  text-align: center;
  position: relative;
}

.vip-tier-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ub-white);
  margin-bottom: 4px;
}

.vip-tier-pts {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.vip-tier-perk {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.vip-tier--bronze .vip-tier-name { color: #cd7f32; }
.vip-tier--silver .vip-tier-name { color: #c0c0c0; }
.vip-tier--gold .vip-tier-name { color: var(--ub-gold); }
.vip-tier--platinum .vip-tier-name { color: #e5e4e2; }
.vip-tier--diamond .vip-tier-name { color: #b9f2ff; }

/* ===== BONUS STRIP ===== */
.bonus-strip {
  background: var(--ub-gold);
  padding: 20px 0;
}

.bonus-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bonus-strip-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1000;
}

.bonus-strip-sub {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--ub-border);
  border-radius: var(--ub-radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--ub-white);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ub-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f0f8f4;
}

.faq-question.open {
  color: var(--ub-green-dark);
  background: #f0f8f4;
}

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--ub-green);
  color: var(--ub-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s;
  font-weight: 700;
  line-height: 1;
}

.faq-question.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--ub-green-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 22px;
  font-size: 0.93rem;
  color: var(--ub-text-muted);
  line-height: 1.75;
}

.faq-answer.open {
  max-height: 600px;
  padding: 0 22px 18px;
}

/* ===== RESPONSIBLE GAMING ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 1.5rem 0;
}

.tool-card {
  background: var(--ub-white);
  border: 1px solid var(--ub-border);
  border-left: 4px solid var(--ub-green);
  border-radius: var(--ub-radius);
  padding: 16px 18px;
}

.tool-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--ub-green-dark);
}

.tool-card p {
  font-size: 0.85rem;
  color: var(--ub-text-muted);
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ub-dark);
  padding: 56px 0 28px;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  color: var(--ub-white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--ub-white);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-license {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.footer-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: #e8f5ef;
  border: 1px solid #b3d9c5;
  border-left: 4px solid var(--ub-green);
  border-radius: var(--ub-radius);
  padding: 18px 20px;
  margin: 1.5rem 0;
  font-size: 0.93rem;
}

.highlight-box--gold {
  background: #fef8ec;
  border-color: #f5d68a;
  border-left-color: var(--ub-gold);
}

.highlight-box p { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .quick-info-card {
    max-width: 500px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .content-section { padding: 40px 0; }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
    gap: 10px;
  }

  .site-nav {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats .stat-card:last-child {
    grid-column: 1 / -1;
  }

  .content-grid-2,
  .content-grid-3 {
    grid-template-columns: 1fr;
  }

  .bonus-banner-top-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bonus-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .toc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vip-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stats .stat-card:last-child {
    grid-column: auto;
  }
  .toc-grid {
    grid-template-columns: 1fr;
  }
  .vip-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-cta .btn--outline {
    display: none;
  }
}

/* ===== ANCHOR OFFSET for sticky header ===== */
[id] {
  scroll-margin-top: 80px;
}

/* ===== TEXT UTILITIES for dark sections ===== */
.text-white {
  color: #ffffff !important;
}

.text-light {
  color: rgba(255,255,255,0.85) !important;
}

.gold-eyebrow {
  color: var(--ub-gold) !important;
}

/* Ensure all text inside dark section divs without explicit class is white */
.section--dark .container div > h3:not([class]),
.section--dark .container div > h4:not([class]) {
  color: #ffffff;
}

.section--dark .container div > p:not([class]),
.section--dark .container div > ul:not([class]) li,
.section--dark .container div > ol:not([class]) li {
  color: rgba(255,255,255,0.85);
}

/* Fix VIP section inline styles */
.section--dark .content-grid-2 p {
  color: rgba(255,255,255,0.85);
}

.section--dark .content-grid-2 ul li {
  color: rgba(255,255,255,0.85);
}

/* Fix bonus-wagering inside light bonus cards */
.bonus-wagering {
  font-size: 0.75rem;
  color: var(--ub-text-muted) !important;
  background: var(--ub-off-white);
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

/* Ensure bonus-card text is always dark (on white background) */
.bonus-card h3,
.bonus-card .bonus-title,
.bonus-card .bonus-details li,
.bonus-amount {
  color: var(--ub-text) !important;
}

.bonus-amount {
  color: var(--ub-green) !important;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

/* Ensure step-content text is readable on light backgrounds */
.step-content strong {
  color: var(--ub-text) !important;
}

.step-content span {
  color: var(--ub-text-muted) !important;
}

/* Ensure tool-card text is dark on white bg */
.tool-card h4 {
  color: var(--ub-green-dark) !important;
}

.tool-card p {
  color: var(--ub-text-muted) !important;
}

/* highlight-box text always dark */
.highlight-box,
.highlight-box p,
.highlight-box strong,
.highlight-box--gold,
.highlight-box--gold p,
.highlight-box--gold strong {
  color: var(--ub-text) !important;
}

/* faq text always dark */
.faq-question {
  color: var(--ub-text) !important;
}

.faq-answer {
  color: var(--ub-text-muted) !important;
}

/* data-table text always dark */
.data-table td,
.data-table th {
  color: var(--ub-text);
}

.data-table thead th {
  color: var(--ub-white) !important;
}

/* section-eyebrow on dark backgrounds */
.section--dark .section-eyebrow {
  color: var(--ub-gold);
}

/* ===== PRINT ===== */
@media print {
  .site-header, .bonus-banner-top, .bonus-strip, .hero-actions, .btn { display: none; }
}
