/* ============================================================
   NEOSURF TEMPLATE – css/app.css
   Colors: navy #212853 · pink #e72582 · white #ffffff
   ============================================================ */

:root {
  --navy:        #212853;
  --navy-dark:   #181e40;
  --navy-light:  #2d3566;
  --pink:        #e72582;
  --pink-dark:   #c41a6e;
  --pink-light:  #ff3d9a;
  --white:       #ffffff;
  --off-white:   #f7f7fa;
  --text:        #222222;
  --text-muted:  #666680;
  --text-light:  #999bb5;
  --border:      #e5e5f0;
  --card-shadow: 0 2px 16px rgba(33,40,83,0.10);
  --radius:      8px;
  --radius-lg:   16px;
  --font-head:   'Montserrat', 'Open Sans', sans-serif;
  --font-body:   'Open Sans', 'Roboto', sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, filter 0.18s, transform 0.15s;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn--pink  { background: var(--pink); color: var(--white); }
.btn--navy  { background: var(--navy); color: var(--white); }
.btn--outline-pink {
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink);
}
.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn--lg { padding: 16px 40px; font-size: 15px; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--navy);
  border-bottom: 3px solid var(--pink);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
.logo__wordmark {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: -0.02em;
  line-height: 1;
  font-style: italic;
}
.logo__tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 2px;
  max-width: 100px;
}

/* Main nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.header-nav__link {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s, background 0.15s;
}
.header-nav__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.header-nav__link svg  { width: 16px; height: 16px; flex-shrink: 0; }
.header-nav__btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.15s;
}
.header-nav__btn:hover { background: var(--pink-dark); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none;
  cursor: pointer; padding: 5px;
  flex-shrink: 0;
}
.burger span {
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .burger { display: flex; }
  .header-nav {
    display: none;
    position: fixed;
    top: 75px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    z-index: 299;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .header-nav.is-open { display: flex; }
  .header-nav__link {
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .header-nav__btn {
    margin: 16px 24px 8px;
    text-align: center;
    border-radius: 4px;
  }
}

/* ── CATEGORY NAV BAR ───────────────────────────────────── */
.cat-bar {
  background: var(--pink);
  padding: 0;
}
.cat-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.cat-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.cat-bar__item:last-child { border-right: none; }
.cat-bar__item:hover,
.cat-bar__item.is-active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.cat-bar__item svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 700px) {
  .cat-bar__inner { flex-wrap: wrap; }
  .cat-bar__item  { flex: 1 1 45%; padding: 12px 14px; font-size: 11px; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 340px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a1040 50%, #2a1060 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(33,40,83,0.72) 0%, rgba(33,40,83,0.5) 100%);
  z-index: 1;
}
/* Decorative gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(231,37,130,0.25) 0%, transparent 70%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(231,37,130,0.15) 0%, transparent 70%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 64px 20px;
}
.hero__pre {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.hero__pre strong { font-weight: 700; }
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}
.hero__title .pink { color: var(--pink); font-style: italic; }
.hero__cta {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 3px;
  transition: background 0.18s;
}
.hero__cta:hover { background: var(--pink-dark); }

/* Chevron separator */
.hero-chevron {
  position: relative;
  height: 52px;
  overflow: hidden;
  background: var(--white);
  z-index: 2;
}
.hero-chevron::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 100px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 52% 100%, 48% 100%);
}

/* ── STEPS SECTION ──────────────────────────────────────── */
.steps-section {
  padding: 64px 0;
  background: var(--white);
}
.steps-section__lead {
  text-align: center;
  margin-bottom: 48px;
}
.steps-section__lead h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--text);
  margin-bottom: 10px;
}
.steps-section__lead p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.step-card:hover { box-shadow: var(--card-shadow); border-color: var(--pink); }

.step-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.step-card__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.step-card__title strong { color: var(--pink); }
.step-card__icon {
  width: 120px; height: 90px;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.85;
}
.step-card__icon-placeholder {
  width: 120px; height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 52px;
  opacity: 0.6;
}
.step-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ── CASINO GRID SECTION ────────────────────────────────── */
.casinos-section {
  padding: 36px 0 40px;
  background: var(--off-white);
}
.casinos-section__head {
  text-align: center;
  margin-bottom: 20px;
}
.casinos-section__step {
  display: none;
}
.casinos-section__title {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-tab {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 22px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.filter-tab:hover,
.filter-tab.is-active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

/* Casino cards grid */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.casino-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 16px;
  background: var(--white);
  text-align: center;
  transition: background 0.15s;
}
.casino-card:hover { background: var(--off-white); }
.casino-card__logo {
  height: 56px;
  object-fit: contain;
  max-width: 130px;
  margin-bottom: 10px;
  filter: grayscale(0.3);
  transition: filter 0.2s;
}
.casino-card:hover .casino-card__logo { filter: grayscale(0); }
.casino-card__logo-placeholder {
  width: 130px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.casino-card__name {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 860px) {
  .casino-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── PINK CTA SECTION ───────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--pink);
  padding: 72px 0 60px;
  overflow: hidden;
  text-align: center;
}
/* Wave top */
.cta-section::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: ellipse(60% 100% at 50% 0%);
}
.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 36px;
}
.cta-section__title strong { font-style: italic; font-weight: 900; }
.cta-section__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  padding: 20px 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  transition: background 0.15s, border-color 0.15s;
  min-width: 180px;
}
.cta-btn:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.cta-btn__icon { font-size: 36px; }
.cta-btn__text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ── ARTICLE CONTENT SECTION ────────────────────────────── */
.article-section {
  padding: 72px 0;
  background: var(--white);
}
.article-section--alt { background: var(--off-white); }
.article-section__inner {
  max-width: 860px;
  margin: 0 auto;
}
.article-section h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--pink);
  display: inline-block;
}
.article-section h3 {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.article-section p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.article-section ul {
  margin: 12px 0 18px;
  padding: 0;
}
.article-section li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
}
.article-section li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
}
.article-section strong { color: var(--text); font-weight: 600; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 22px 0; border-radius: var(--radius); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.data-table td {
  padding: 12px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table tr:hover td { background: rgba(231,37,130,0.04); }

/* ── FAQ SECTION ────────────────────────────────────────── */
.faq-section {
  padding: 72px 0;
  background: var(--off-white);
}
.faq-section__head {
  text-align: center;
  margin-bottom: 40px;
}
.faq-section__head h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-section__head p { color: var(--text-muted); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open { border-color: var(--pink); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.15s;
}
.faq-question:hover { color: var(--pink); }
.faq-question__title { margin: 0; font: inherit; }
.faq-question__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  font-size: 18px; line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.faq-item.is-open .faq-question__icon {
  background: var(--pink);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ── TRUST BADGES ───────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-item__icon { font-size: 24px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 52px 0 28px;
  border-top: 4px solid var(--pink);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer__brand .logo { margin-bottom: 14px; }
.footer__brand .logo__wordmark { font-size: 26px; }
.footer__desc {
  font-size: 13px;
  line-height: 1.7;
  max-width: 240px;
  color: rgba(255,255,255,0.5);
}
.footer__col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.footer__col-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer__col-links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer__warning {
  max-width: 680px;
  line-height: 1.6;
}
.footer__warning a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer__copy { white-space: nowrap; }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-pink   { color: var(--pink); }
.text-navy   { color: var(--navy); }

/* ── CASINO CARD IMAGE ─────────────────────────────────────── */
.casino-card__img {
  width: 130px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: transform 0.2s, filter 0.2s;
}
.casino-card:hover .casino-card__img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

/* ── BONUS CARDS SECTION ─────────────────────────────────── */
.bonus-cards-section {
  background: var(--white);
  padding: 44px 0 52px;
}
.bonus-cards-section__head {
  text-align: center;
  margin-bottom: 32px;
}
.bonus-cards-section__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.bonus-cards-section__sub {
  font-size: 15px;
  color: var(--text-muted);
}
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: #1c2452;
  border-radius: 16px;
  border: 1px solid rgba(231,37,130,0.25);
  padding: 28px 24px 28px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 190px;
}
.bonus-card:hover {
  border-color: var(--pink);
  box-shadow: 0 6px 30px rgba(231,37,130,0.22);
}
.bonus-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  border-radius: 16px 16px 0 0;
}
.bonus-card__label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.bonus-card__amount {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.bonus-card__sub {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-top: -4px;
}
.bonus-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.bonus-card__btn {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(231,37,130,0.35);
}
.bonus-card__btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}
.bonus-card__info {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.bonus-card__info:hover { border-color: var(--pink); color: var(--pink); }
.bonus-card__char {
  position: absolute;
  right: 10px;
  bottom: 0;
  font-size: 90px;
  line-height: 1;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(-4px 0 12px rgba(0,0,0,0.4));
  user-select: none;
}
@media (max-width: 900px) {
  .bonus-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .bonus-card__char { font-size: 70px; right: 6px; }
  .bonus-card__amount { font-size: 26px; }
}
@media (max-width: 540px) {
  .bonus-cards-section { padding: 32px 0 40px; }
}

/* ── HERO — dual buttons & badge ─────────────────────────── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(231,37,130,0.18);
  border: 1px solid rgba(231,37,130,0.45);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: badgePulse 1.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.35); }
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.hero__cta--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.hero__cta--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── WELCOME BONUS BANNER ────────────────────────────────── */
.bonus-section {
  background: #fff;
  padding: 0 0 32px;
  margin-top: -2px;
}
.bonus-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #212853 0%, #1a1f45 100%);
  border-radius: 18px;
  border: 2px solid var(--pink);
  padding: 28px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(33,40,83,0.18);
}
.bonus-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(231,37,130,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-banner__icon {
  font-size: 52px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(231,37,130,0.4));
}
.bonus-banner__content {
  flex: 1;
  min-width: 0;
}
.bonus-banner__label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.bonus-banner__offer {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.bonus-banner__offer span {
  color: var(--pink);
}
.bonus-banner__terms {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.bonus-banner__btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(231,37,130,0.4);
}
.bonus-banner__btn:hover {
  background: #c91a6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(231,37,130,0.5);
}
@media (max-width: 860px) {
  .bonus-banner { flex-direction: column; text-align: center; padding: 24px 20px; }
  .bonus-banner__offer { font-size: 22px; }
  .bonus-banner__btn { width: 100%; text-align: center; }
}

/* ── CASINO CARD — Play Now overlay ──────────────────────── */
.casino-card {
  position: relative;
  overflow: hidden;
}
.casino-card__play {
  position: absolute;
  inset: 0;
  background: rgba(231,37,130,0.88);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.casino-card:hover .casino-card__play { opacity: 1; }
.casino-card:hover .casino-card__img  { filter: brightness(0.7) blur(1px); }
