/* ============================================
   CrownPlay Casino Australia — outback-styles.css
   Domain: thewoodfiredbaker.com
   Unique prefix: bkr- (baker)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bkr-gold: #D4AF37;
  --bkr-gold-light: #F0D060;
  --bkr-gold-dark: #B8941E;
  --bkr-navy: #0A0E1A;
  --bkr-navy-mid: #111628;
  --bkr-navy-light: #1A2038;
  --bkr-purple: #6C2BD9;
  --bkr-purple-glow: #8B5CF6;
  --bkr-teal: #14B8A6;
  --bkr-crimson: #E11D48;
  --bkr-white: #FFFFFF;
  --bkr-grey-100: #F1F5F9;
  --bkr-grey-200: #E2E8F0;
  --bkr-grey-400: #94A3B8;
  --bkr-grey-600: #475569;
  --bkr-grey-800: #1E293B;
  --bkr-radius-sm: 6px;
  --bkr-radius-md: 12px;
  --bkr-radius-lg: 20px;
  --bkr-radius-xl: 28px;
  --bkr-shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --bkr-shadow-md: 0 4px 16px rgba(0,0,0,.18);
  --bkr-shadow-lg: 0 12px 40px rgba(0,0,0,.25);
  --bkr-shadow-glow: 0 0 30px rgba(212,175,55,.2);
  --bkr-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bkr-transition: .3s cubic-bezier(.4,0,.2,1);
  --bkr-container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--bkr-font);
  background: var(--bkr-navy);
  color: var(--bkr-grey-200);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--bkr-transition); }
ul { list-style: none; }

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

/* ---------- Section Intro (reusable) ---------- */
.bkr-section-intro {
  text-align: center;
  margin-bottom: 56px;
}
.bkr-section-intro__tag {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--bkr-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.bkr-section-intro .bkr-icon--md {
  display: block;
  margin: 0 auto 8px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}
.bkr-section-intro__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--bkr-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.bkr-section-intro__desc {
  font-size: 1.05rem;
  color: var(--bkr-grey-400);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.bkr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--bkr-font);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--bkr-radius-md);
  padding: 12px 28px;
  cursor: pointer;
  transition: all var(--bkr-transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.bkr-btn--solid {
  background: linear-gradient(135deg, var(--bkr-gold), var(--bkr-gold-dark));
  color: var(--bkr-navy);
  border-color: var(--bkr-gold);
}
.bkr-btn--solid:hover {
  background: linear-gradient(135deg, var(--bkr-gold-light), var(--bkr-gold));
  box-shadow: var(--bkr-shadow-glow);
  transform: translateY(-2px);
}
.bkr-btn--ghost {
  background: transparent;
  color: var(--bkr-gold);
  border-color: var(--bkr-gold);
}
.bkr-btn--ghost:hover {
  background: rgba(212,175,55,.1);
  transform: translateY(-2px);
}
.bkr-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--bkr-radius-lg);
}

/* ---------- Icon Sizing ---------- */
.bkr-icon { display: inline-block; flex-shrink: 0; }
.bkr-icon--xs { width: 16px; height: 16px; }
.bkr-icon--sm { width: 20px; height: 20px; }
.bkr-icon--md { width: 24px; height: 24px; }
.bkr-icon--lg { width: 40px; height: 40px; }

/* ============================================
   NAVIGATION
   ============================================ */
.bkr-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10,14,26,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,.15);
  transition: background var(--bkr-transition);
}
.bkr-topbar__wrap {
  max-width: var(--bkr-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.bkr-topbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--bkr-gold);
  letter-spacing: 1px;
}
.bkr-topbar__crown {
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}
.bkr-topbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.bkr-topbar__item {
  font-size: .9rem;
  font-weight: 600;
  color: var(--bkr-grey-200);
  position: relative;
  padding: 4px 0;
}
.bkr-topbar__item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bkr-gold);
  transition: width var(--bkr-transition);
}
.bkr-topbar__item:hover { color: var(--bkr-gold); }
.bkr-topbar__item:hover::after { width: 100%; }

.bkr-topbar__auth { display: flex; gap: 12px; }
.bkr-topbar__auth--mobile { display: none; }

.bkr-topbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.bkr-topbar__burger span {
  width: 26px;
  height: 2px;
  background: var(--bkr-gold);
  border-radius: 2px;
  transition: all var(--bkr-transition);
}

/* ============================================
   HERO
   ============================================ */
.bkr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.bkr-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bkr-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bkr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,14,26,.85) 0%,
    rgba(10,14,26,.7) 40%,
    rgba(10,14,26,.92) 100%
  );
}
.bkr-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--bkr-container);
  margin: 0 auto;
  text-align: center;
}
.bkr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--bkr-gold);
  margin-bottom: 28px;
}
.bkr-hero__badge .bkr-icon--sm {
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}
.bkr-hero__heading {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  color: var(--bkr-white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.bkr-hero__accent {
  background: linear-gradient(135deg, var(--bkr-gold), var(--bkr-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bkr-hero__text {
  font-size: 1.1rem;
  color: var(--bkr-grey-400);
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.bkr-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.bkr-hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.bkr-hero__stat {
  text-align: center;
  min-width: 100px;
}
.bkr-hero__figure {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bkr-gold);
}
.bkr-hero__label {
  font-size: .8rem;
  color: var(--bkr-grey-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.bkr-trust {
  background: var(--bkr-navy-mid);
  border-top: 1px solid rgba(212,175,55,.08);
  border-bottom: 1px solid rgba(212,175,55,.08);
  padding: 20px 0;
}
.bkr-trust__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.bkr-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--bkr-grey-200);
}
.bkr-trust__item .bkr-icon {
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}

/* ============================================
   QUICK START / KICKOFF
   ============================================ */
.bkr-kickoff {
  padding: 100px 0;
  background: var(--bkr-navy);
}
.bkr-kickoff__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.bkr-kickoff__card {
  background: var(--bkr-navy-light);
  border: 1px solid rgba(212,175,55,.1);
  border-radius: var(--bkr-radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--bkr-transition);
  position: relative;
  overflow: hidden;
}
.bkr-kickoff__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bkr-gold), var(--bkr-purple-glow));
  opacity: 0;
  transition: opacity var(--bkr-transition);
}
.bkr-kickoff__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bkr-shadow-lg);
  border-color: rgba(212,175,55,.25);
}
.bkr-kickoff__card:hover::before { opacity: 1; }
.bkr-kickoff__number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212,175,55,.15);
  line-height: 1;
  margin-bottom: 16px;
}
.bkr-kickoff__card .bkr-icon--lg {
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}
.bkr-kickoff__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bkr-white);
  margin-bottom: 14px;
}
.bkr-kickoff__desc {
  font-size: .95rem;
  color: var(--bkr-grey-400);
  line-height: 1.75;
}

/* ---------- Centred CTA (reusable) ---------- */
.bkr-centred-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   GAMES CATALOGUE
   ============================================ */
.bkr-catalogue { padding: 100px 0; }
.bkr-catalogue--alt { background: var(--bkr-navy-mid); }

.bkr-catalogue__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.bkr-catalogue__tile {
  border-radius: var(--bkr-radius-lg);
  overflow: hidden;
  background: var(--bkr-navy-light);
  border: 1px solid rgba(212,175,55,.08);
  transition: all var(--bkr-transition);
}
.bkr-catalogue__tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--bkr-shadow-lg);
  border-color: rgba(212,175,55,.2);
}
.bkr-catalogue__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.bkr-catalogue__info { padding: 20px 24px; }
.bkr-catalogue__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bkr-white);
  margin-bottom: 4px;
}
.bkr-catalogue__meta {
  font-size: .85rem;
  color: var(--bkr-gold);
  margin-bottom: 14px;
}
.bkr-catalogue__play {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--bkr-navy);
  background: var(--bkr-gold);
  padding: 8px 22px;
  border-radius: var(--bkr-radius-sm);
  transition: all var(--bkr-transition);
}
.bkr-catalogue__play:hover {
  background: var(--bkr-gold-light);
  transform: translateY(-1px);
}

/* ============================================
   BONUS OFFERS
   ============================================ */
.bkr-bonuses {
  padding: 100px 0;
  background: var(--bkr-navy);
}
.bkr-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bkr-bonuses__card {
  background: var(--bkr-navy-light);
  border: 1px solid rgba(212,175,55,.1);
  border-radius: var(--bkr-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--bkr-transition);
  position: relative;
  overflow: hidden;
}
.bkr-bonuses__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--bkr-radius-lg) var(--bkr-radius-lg) 0 0;
}
.bkr-bonuses__card--welcome::after { background: linear-gradient(90deg, var(--bkr-gold), var(--bkr-gold-light)); }
.bkr-bonuses__card--reload::after { background: linear-gradient(90deg, var(--bkr-purple), var(--bkr-purple-glow)); }
.bkr-bonuses__card--cashback::after { background: linear-gradient(90deg, var(--bkr-teal), #34D399); }

.bkr-bonuses__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bkr-shadow-lg);
}
.bkr-bonuses__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.bkr-bonuses__header .bkr-icon {
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}
.bkr-bonuses__header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bkr-white);
}
.bkr-bonuses__amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--bkr-gold);
  margin-bottom: 6px;
}
.bkr-bonuses__extra {
  font-size: .9rem;
  color: var(--bkr-grey-400);
  margin-bottom: 24px;
}
.bkr-bonuses__details {
  text-align: left;
  margin-bottom: 28px;
}
.bkr-bonuses__details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--bkr-grey-200);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.bkr-bonuses__details .bkr-icon--xs {
  filter: brightness(0) saturate(100%) invert(68%) sepia(63%) saturate(423%) hue-rotate(109deg) brightness(95%) contrast(88%);
}
.bkr-bonuses__claim {
  display: inline-block;
  padding: 12px 32px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--bkr-navy);
  background: linear-gradient(135deg, var(--bkr-gold), var(--bkr-gold-dark));
  border-radius: var(--bkr-radius-md);
  transition: all var(--bkr-transition);
}
.bkr-bonuses__claim:hover {
  background: linear-gradient(135deg, var(--bkr-gold-light), var(--bkr-gold));
  box-shadow: var(--bkr-shadow-glow);
  transform: translateY(-2px);
}

/* ============================================
   KEY FEATURES / PERKS
   ============================================ */
.bkr-perks {
  padding: 100px 0;
  background: var(--bkr-navy-mid);
}
.bkr-perks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.bkr-perks__tile {
  background: var(--bkr-navy-light);
  border: 1px solid rgba(212,175,55,.08);
  border-radius: var(--bkr-radius-lg);
  padding: 36px 32px;
  transition: all var(--bkr-transition);
}
.bkr-perks__tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--bkr-shadow-md);
  border-color: rgba(212,175,55,.2);
}
.bkr-perks__tile .bkr-icon--lg {
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}
.bkr-perks__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bkr-white);
  margin-bottom: 12px;
}
.bkr-perks__desc {
  font-size: .95rem;
  color: var(--bkr-grey-400);
  line-height: 1.8;
}

/* ============================================
   BANKING / PAYMENTS
   ============================================ */
.bkr-banking {
  padding: 100px 0;
  background: var(--bkr-navy);
}
.bkr-banking__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bkr-banking__card {
  background: var(--bkr-navy-light);
  border: 1px solid rgba(212,175,55,.08);
  border-radius: var(--bkr-radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--bkr-transition);
}
.bkr-banking__card:hover {
  border-color: rgba(212,175,55,.2);
  transform: translateY(-3px);
}
.bkr-banking__card .bkr-icon--lg {
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}
.bkr-banking__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bkr-white);
  margin-bottom: 10px;
}
.bkr-banking__desc {
  font-size: .9rem;
  color: var(--bkr-grey-400);
  line-height: 1.7;
}

/* ============================================
   GAME STUDIOS / PROVIDERS
   ============================================ */
.bkr-studios {
  padding: 80px 0;
  background: var(--bkr-navy-mid);
}
.bkr-studios__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.bkr-studios__item {
  background: var(--bkr-navy-light);
  border: 1px solid rgba(212,175,55,.1);
  border-radius: var(--bkr-radius-md);
  padding: 16px 32px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--bkr-grey-200);
  transition: all var(--bkr-transition);
}
.bkr-studios__item:hover {
  border-color: var(--bkr-gold);
  color: var(--bkr-gold);
  transform: translateY(-2px);
}

/* ============================================
   EDITORIAL / SEO CONTENT
   ============================================ */
.bkr-editorial {
  padding: 100px 0;
  background: var(--bkr-navy);
}
.bkr-editorial__body {
  max-width: 860px;
  margin: 0 auto;
}
.bkr-editorial__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--bkr-white);
  margin-bottom: 28px;
  line-height: 1.25;
}
.bkr-editorial__subheading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bkr-gold);
  margin: 44px 0 18px;
}
.bkr-editorial__text {
  font-size: 1rem;
  color: var(--bkr-grey-400);
  line-height: 1.85;
  margin-bottom: 22px;
}
.bkr-editorial__text strong {
  color: var(--bkr-white);
  font-weight: 600;
}

/* Editorial CTA Box */
.bkr-editorial__cta-box {
  background: linear-gradient(135deg, var(--bkr-navy-light), rgba(108,43,217,.12));
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--bkr-radius-xl);
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
}
.bkr-editorial__cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bkr-white);
  margin-bottom: 14px;
}
.bkr-editorial__cta-text {
  font-size: 1.05rem;
  color: var(--bkr-grey-400);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.bkr-editorial__cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--bkr-grey-400);
  margin-top: 18px;
}
.bkr-editorial__cta-note .bkr-icon--xs {
  filter: brightness(0) saturate(100%) invert(68%) sepia(63%) saturate(423%) hue-rotate(109deg) brightness(95%) contrast(88%);
}

/* ============================================
   FAQ
   ============================================ */
.bkr-faq {
  padding: 100px 0;
  background: var(--bkr-navy-mid);
}
.bkr-faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.bkr-faq__entry {
  border: 1px solid rgba(212,175,55,.08);
  border-radius: var(--bkr-radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--bkr-transition);
}
.bkr-faq__entry:hover { border-color: rgba(212,175,55,.2); }
.bkr-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bkr-white);
  cursor: pointer;
  background: var(--bkr-navy-light);
  transition: background var(--bkr-transition);
}
.bkr-faq__question:hover { background: rgba(26,32,56,.8); }
.bkr-faq__arrow {
  transition: transform var(--bkr-transition);
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(587%) hue-rotate(6deg) brightness(97%) contrast(87%);
}
.bkr-faq__entry--open .bkr-faq__arrow { transform: rotate(180deg); }
.bkr-faq__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: .95rem;
  color: var(--bkr-grey-400);
  line-height: 1.8;
  background: var(--bkr-navy-light);
  transition: max-height .4s ease, padding .4s ease;
}
.bkr-faq__entry--open .bkr-faq__answer {
  max-height: 400px;
  padding: 0 24px 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.bkr-footer {
  background: var(--bkr-navy);
  border-top: 1px solid rgba(212,175,55,.1);
  padding: 72px 0 36px;
}
.bkr-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.bkr-footer__col h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--bkr-white);
  margin-bottom: 18px;
}
.bkr-footer__nav li { margin-bottom: 10px; }
.bkr-footer__nav a {
  font-size: .88rem;
  color: var(--bkr-grey-400);
  transition: color var(--bkr-transition);
}
.bkr-footer__nav a:hover { color: var(--bkr-gold); }

.bkr-footer__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 28px;
}
.bkr-footer__badge { opacity: .7; transition: opacity var(--bkr-transition); }
.bkr-footer__badge:hover { opacity: 1; }

.bkr-footer__bottom { text-align: center; }
.bkr-footer__disclaimer {
  font-size: .78rem;
  color: var(--bkr-grey-600);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto 10px;
}
.bkr-footer__abn {
  font-size: .75rem;
  color: var(--bkr-grey-600);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .bkr-kickoff__steps { grid-template-columns: 1fr; }
  .bkr-catalogue__grid { grid-template-columns: repeat(2, 1fr); }
  .bkr-bonuses__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .bkr-perks__grid { grid-template-columns: 1fr; }
  .bkr-banking__grid { grid-template-columns: repeat(2, 1fr); }
  .bkr-footer__columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .bkr-topbar__links { 
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bkr-navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .bkr-topbar__links.bkr-topbar__links--active { display: flex; }
  .bkr-topbar__auth--desk { display: none; }
  .bkr-topbar__auth--mobile { display: flex; flex-direction: column; width: 80%; }
  .bkr-topbar__burger { display: flex; }

  .bkr-hero { min-height: auto; padding: 110px 16px 60px; }
  .bkr-hero__heading { font-size: 1.8rem; }
  .bkr-hero__stats { gap: 20px; }
  .bkr-hero__stat { min-width: 70px; }
  .bkr-hero__figure { font-size: 1.2rem; }

  .bkr-catalogue__grid { grid-template-columns: 1fr; }
  .bkr-banking__grid { grid-template-columns: 1fr; }
  .bkr-footer__columns { grid-template-columns: 1fr; }

  .bkr-trust__row { gap: 20px; }
  .bkr-trust__item { font-size: .78rem; }

  .bkr-editorial__cta-box { padding: 32px 20px; }

  section { padding: 60px 0; }
  .bkr-section-intro { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .bkr-hero__actions { flex-direction: column; align-items: center; }
  .bkr-btn--lg { width: 100%; max-width: 320px; }
  .bkr-hero__stats { flex-direction: column; gap: 16px; }
  .bkr-studios__grid { gap: 10px; }
  .bkr-studios__item { padding: 12px 20px; font-size: .8rem; }
}

/* ---------- Animations ---------- */
@keyframes bkr-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.bkr-animate-in {
  opacity: 0;
  transform: translateY(30px);
}
.bkr-animate-in--visible {
  animation: bkr-fadeUp .6s ease forwards;
}

/* ---------- Scrollbar Styling ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bkr-navy); }
::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,.5); }

/* ---------- Selection ---------- */
::selection {
  background: rgba(212,175,55,.3);
  color: var(--bkr-white);
}