/* ==================== START GLOBAL ==================== */
:root {
  --bg: #22365c;
  --surface: #2c4472;
  --text: #f5f6fa;
  --muted: #c5cbda;
  --line: rgba(255, 255, 255, 0.24);
  --coral: #8b6cff;
  --violet: #8865ff;
  --gold: #dba84e;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ============== START PRIMARY SECTION SWITCHER ============== */
.primary-view[hidden] {
  display: none !important;
}

.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a[aria-current="page"]::after {
  right: 0;
}

/* =============== END PRIMARY SECTION SWITCHER =============== */
a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 100;
  padding: 12px 18px;
  color: #070b14;
  background: white;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

/* ===================== END GLOBAL ===================== */
/* ==================== START HEADER ==================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  background: rgba(23, 35, 62, 0.9);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1560px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.8px;
  white-space: nowrap;
}

.brand strong {
  color: #a98cff;
  font-size: .43em;
  letter-spacing: .13em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 30px);
  margin-right: auto;
}

.site-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: #d9dce4;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transition: right .22s ease;
}

.site-nav a:hover, .site-nav a:focus-visible {
  color: white;
}

.site-nav a:hover::after, .site-nav a:focus-visible::after {
  right: 0;
}

.play-now {
  min-width: 164px;
  padding: 16px 22px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, #7658e8, #4e77e9);
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(104, 91, 232, .25);
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.play-now:hover, .play-now:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(104, 91, 232, .4);
}

.menu-toggle {
  display: none;
}

/* ===================== END HEADER ===================== */
/* ===================== START HERO ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 34px) 32px 42px;
  background: radial-gradient(circle at 82% 14%, rgba(123, 132, 255, .46), transparent 38%), radial-gradient(circle at 12% 82%, rgba(166, 103, 224, .33), transparent 34%), linear-gradient(145deg, #2a416b 0%, #203559 52%, #28476f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .07;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.game-grid {
  position: relative;
  z-index: 2;
  width: min(1560px, 100%);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: #a989ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

h1 span {
  color: #e5e7ee;
}

.hero-intro {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  padding: clamp(26px, 3.6vw, 62px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(220, 228, 255, .22);
  border-radius: 16px;
  background: radial-gradient(circle at 82% 18%, rgba(142, 113, 255, .3), transparent 32%), linear-gradient(145deg, rgba(50, 72, 122, .78), rgba(35, 51, 91, .72));
}

.hero-description {
  max-width: 570px;
  margin: 22px 0 28px;
  color: #d5dbea;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

/* ==================== START FOOTER ==================== */
.site-footer {
  color: #eef1f8;
  background: #111b31;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-inner {
  width: min(1560px, calc(100% - 64px));
  margin: 0 auto;
  padding: 54px 0 42px;
  display: grid;
  grid-template-columns: minmax(250px, .9fr) minmax(420px, 1.5fr) minmax(210px, .6fr);
  gap: clamp(32px, 5vw, 82px);
}

.footer-brand {
  width: fit-content;
}

.footer-brand-column p {
  max-width: 340px;
  margin: 20px 0 16px;
  color: #bcc5d7;
  font-size: 15px;
  line-height: 1.65;
}

.footer-age {
  color: #b89eff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  align-content: start;
}

.footer-legal {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-nav a, .footer-legal a {
  color: #cbd2df;
  font-size: 14px;
  line-height: 1.45;
  transition: color .2s ease;
}

.footer-nav a:hover, .footer-nav a:focus-visible, .footer-legal a:hover, .footer-legal a:focus-visible {
  color: #bda9ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  width: min(1560px, calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0;
  color: #929caf;
  font-size: 13px;
}

/* ===================== END FOOTER ===================== */
/* ================= START LEGAL PAGES ================= */
.legal-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 56px) 0 72px;
  color: #1c2942;
  background: linear-gradient(145deg, #f8f4ed, #eef2fa);
}

.legal-container {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-hero {
  margin-bottom: 22px;
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  border-radius: 28px;
  background: linear-gradient(120deg, #172750, #4f386f 65%, #8d5562);
  box-shadow: 0 24px 60px rgba(35, 38, 78, .2);
}

.legal-eyebrow {
  margin: 0 0 10px;
  color: #ffd184;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.legal-hero h1 {
  max-width: 800px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-hero > p:last-child {
  margin: 20px 0 0;
  color: #dddcea;
  font-size: 15px;
}

.legal-content {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(40, 55, 90, .14);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(41, 48, 84, .08);
}

.legal-content section + section {
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid #dfe4ee;
}

.legal-content h2 {
  margin: 0 0 13px;
  color: #182641;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
}

.legal-content h3 {
  margin: 22px 0 9px;
  font-size: 1.08rem;
}

.legal-content p, .legal-content li {
  color: #59677f;
  font-size: 16px;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-note {
  padding: 18px 20px;
  border-left: 4px solid #8064dc;
  border-radius: 0 14px 14px 0;
  background: #f0ecfb;
}

.legal-page .site-header {
  position: fixed;
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 22px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .play-now {
    min-width: 138px;
    padding-inline: 16px;
  }

}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (max-width: 700px) {
  .footer-inner {
    width: min(100% - 32px, 1560px);
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .footer-bottom p {
    width: min(100% - 32px, 1560px);
  }

  .legal-container {
    width: min(100% - 28px, 980px);
  }

  .legal-page {
    padding-top: calc(var(--header-height) + 28px);
  }

  .legal-hero, .legal-content {
    border-radius: 20px;
  }

}

/* ================== END LEGAL PAGES ================== */

/* ====================== END HERO ====================== */
/* ============== START HERO NAVIGATION CARDS ============== */
.game-grid {
  height: min(735px, calc(100svh - 126px));
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.05fr .95fr .82fr .72fr;
  grid-template-rows: 1.15fr 1fr .92fr;
  gap: 12px;
}

.game-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: clamp(22px, 2vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid rgba(220, 228, 255, .34);
  border-radius: 16px;
  background-color: var(--surface);
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 34px rgba(14,25,48,.16);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10,18,34,.5) 0%, rgba(10,18,34,.16) 34%, transparent 58%);
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.09), transparent 62%);
  transform: translateX(-55%);
  transition: opacity .25s ease, transform .55s ease;
}

.game-card:hover, .game-card:focus-visible {
  z-index: 3;
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.38);
  box-shadow: 0 24px 66px rgba(0,0,0,.34);
  outline: none;
}

.game-card:hover::after, .game-card:focus-visible::after {
  opacity: 1;
  transform: translateX(55%);
}

.card-icon {
  margin-bottom: auto;
  color: #9c7eff;
  font-size: 24px;
}

.card-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-copy strong {
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1;
  letter-spacing: -.035em;
}

.card-copy small {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.slot-features {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.slot-features span {
  padding: 7px 10px;
  color: #e8e2ff;
  background: rgba(125, 93, 232, .22);
  border: 1px solid rgba(184, 163, 255, .35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

.card-arrow {
  width: 42px;
  height: 42px;
  margin-top: 18px;
  display: grid;
  place-items: center;
  color: #9c7eff;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  transition: color .2s ease, background .2s ease;
}

.game-card:hover .card-arrow {
  color: white;
  background: rgba(137, 101, 255, .78);
}

.card-slots {
  grid-column: 3 / 5;
  grid-row: 1;
  background-image: url("../images/hero-slots.png");
  background-position: center;
}

.card-slots::before {
  background: linear-gradient(90deg, rgba(9,16,31,.56) 0%, rgba(9,16,31,.22) 34%, transparent 56%);
}

.card-live {
  grid-column: 3;
  grid-row: 2;
  background-image: url("../images/hero-live-casino.png");
  background-position: center;
}

.card-live::before {
  background: linear-gradient(90deg, rgba(8,15,29,.5) 0%, rgba(8,15,29,.12) 38%, transparent 58%);
}

.card-live .card-icon, .card-live .card-arrow {
  color: #ff6b60;
}

.card-casino {
  grid-column: 4;
  grid-row: 2;
  background-image: url("../images/hero-casino-games.png");
  background-position: center;
}

.card-casino::before {
  background: linear-gradient(90deg, rgba(9,18,34,.48) 0%, rgba(9,18,34,.1) 40%, transparent 60%);
}

.card-sports {
  grid-column: 1;
  grid-row: 3;
  background-image: url("../images/hero-sports-esports.png");
  background-position: center;
}

.card-sports::before {
  background: linear-gradient(90deg, rgba(9,18,34,.44) 0%, rgba(9,18,34,.08) 42%, transparent 60%);
}

.card-tournaments {
  grid-column: 2;
  grid-row: 3;
  background-image: url("../images/hero-tournaments.png");
  background-position: center;
}

.card-tournaments::before {
  background: linear-gradient(90deg, rgba(21,15,48,.44) 0%, rgba(21,15,48,.08) 42%, transparent 60%);
}

.card-bonuses {
  grid-column: 3;
  grid-row: 3;
  background-image: url("../images/hero-bonuses.png");
  background-position: center;
}

.card-bonuses::before {
  background: linear-gradient(90deg, rgba(42,13,37,.42) 0%, rgba(42,13,37,.07) 42%, transparent 60%);
}

.card-bonuses .card-icon, .card-bonuses .card-arrow {
  color: #ff6b60;
}

.card-vip {
  grid-column: 4;
  grid-row: 3;
  background-image: url("../images/hero-vip-club.png");
  background-position: center;
}

.card-vip::before {
  background: linear-gradient(90deg, rgba(22,15,44,.42) 0%, rgba(22,15,44,.07) 42%, transparent 60%);
}

.card-vip .card-icon, .card-vip .card-arrow {
  color: var(--gold);
}

.card-sports .card-copy strong, .card-tournaments .card-copy strong, .card-bonuses .card-copy strong, .card-vip .card-copy strong {
  font-size: clamp(17px, 1.35vw, 23px);
}

/* =============== END HERO NAVIGATION CARDS =============== */
/* ================= START RESPONSIVE ================= */
@media (max-width: 1240px) {
  .header-inner {
    width: min(100% - 40px, 1120px);
    gap: 26px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    padding-inline: 20px;
  }

}

@media (max-width: 1240px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    width: calc(100% - 32px);
    gap: 14px;
  }

  .brand {
    margin-right: auto;
    font-size: 25px;
  }

  .menu-toggle {
    order: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    color: white;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    border-radius: 9px;
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    background: white;
    transition: transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .play-now {
    order: 1;
    min-width: auto;
    padding: 12px 15px;
    font-size: 12px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    padding: 18px 22px 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(6,9,16,.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a, .site-nav a:nth-child(2), .site-nav a:nth-child(4) {
    display: block;
    padding: 12px 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 30px) 16px 28px;
  }

  .game-grid {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 250px repeat(3, 190px);
  }

  .hero-intro {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 360px;
  }

  .card-slots {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .card-live {
    grid-column: 1;
    grid-row: 3;
  }

  .card-casino {
    grid-column: 2;
    grid-row: 3;
  }

  .card-sports {
    grid-column: 1;
    grid-row: 4;
  }

  .card-tournaments {
    grid-column: 2;
    grid-row: 4;
  }

  .card-bonuses {
    grid-column: 1;
    grid-row: 5;
  }

  .card-vip {
    grid-column: 2;
    grid-row: 5;
  }

}

@media (max-width: 560px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand {
    font-size: 21px;
  }

  .play-now {
    padding: 11px 12px;
  }

  .play-now span {
    display: none;
  }

  .hero {
    padding-inline: 12px;
  }

  h1 {
    font-size: 36px;
  }

  .game-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-intro {
    min-height: 390px;
  }

  .game-card {
    min-height: 205px;
    padding: 22px;
  }

  .card-slots {
    min-height: 340px;
  }

  .card-copy strong,
  .card-sports .card-copy strong,
  .card-tournaments .card-copy strong,
  .card-bonuses .card-copy strong,
  .card-vip .card-copy strong {
    font-size: 21px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: .01ms !important;
  }

}

/* ================== END RESPONSIVE ================== */
/* ===== START SLOTS SECTION ===== */
.slots-guide {
  --slots-ink: #17233d;
  --slots-muted: #52617b;
  --slots-line: rgba(35, 71, 105, 0.16);
  --slots-blue: #5368ed;
  --slots-purple: #7958e8;
  --slots-turquoise: #dff7f3;
  --slots-panel: rgba(244, 247, 255, 0.96);
  --slots-accent: #ffcd7a;
  scroll-margin-top: 110px;
  width: 100%;
  overflow: hidden;
  padding: clamp(64px, 7vw, 104px) 24px;
  color: var(--slots-ink);
  background: radial-gradient(circle at 90% 4%, rgba(116, 93, 225, 0.28), transparent 30%), radial-gradient(circle at 8% 68%, rgba(38, 165, 164, 0.2), transparent 32%), linear-gradient(145deg, #b8d8dc 0%, #bac7e1 52%, #d9cbb8 100%);
}

.slots-guide__container {
  width: min(1560px, 100%);
  min-width: 0;
  margin: 0 auto;
}

.slots-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 6vw, 90px);
  max-width: none;
  align-items: end;
  margin-bottom: 34px;
}

.slots-guide__intro-copy {
  max-width: 900px;
}

.slots-guide__eyebrow {
  margin: 0 0 12px;
  color: #6552d7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.slots-guide h2, .slots-guide h3, .slots-guide h4, .slots-guide p {
  max-width: 72ch;
}

.slots-guide h2 {
  margin: 0 0 18px;
  color: var(--slots-ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.slots-guide__intro-copy > p:not(.slots-guide__eyebrow) {
  margin: 0;
  color: var(--slots-muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.slots-guide__overview {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  background: rgba(35, 54, 96, 0.88);
  box-shadow: 0 18px 40px rgba(27, 43, 78, 0.18);
}

.slots-guide__overview h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.18rem;
}

.slots-guide__overview p {
  margin: 0;
  color: #d9e2f2;
  font-size: 0.92rem;
  line-height: 1.65;
}

.slots-guide__overview .slots-guide__audience {
  margin-top: 18px;
  color: #c5b5ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slots-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.slots-visually-hidden, .slots-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.slots-category-button {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  z-index: 12;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 19px;
  border: 1px solid rgba(64, 79, 132, 0.2);
  border-radius: 999px;
  color: #33415d;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 16px rgba(46, 59, 106, 0.06);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slots-category-button:hover {
  border-color: rgba(83, 104, 237, 0.55);
  transform: translateY(-2px);
}

.slots-radio:focus-visible + .slots-category-button {
  outline: 3px solid #132550;
  outline-offset: 4px;
}

#show-classic:checked + label, #show-megaways:checked + label, #show-cluster:checked + label, #show-hold-win:checked + label {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(125deg, var(--slots-purple), var(--slots-blue));
  box-shadow: 0 12px 28px rgba(83, 104, 237, 0.25);
}

.slots-panels {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 8px;
}

.slots-panel {
  display: none;
  padding: clamp(18px, 2.2vw, 28px) clamp(22px, 3vw, 38px) 24px;
  border: 1px solid rgba(105, 82, 225, 0.28);
  border-radius: 25px;
  background: linear-gradient( 180deg, #7358e6 0, #5868cf 160px, #edf0ff 160px, #f7f9ff 100% ), var(--slots-panel);
  box-shadow: 0 22px 60px rgba(78, 60, 162, 0.22);
}

#show-classic:checked ~ .slots-panels .slots-panel--classic,
#show-megaways:checked ~ .slots-panels .slots-panel--megaways,
#show-cluster:checked ~ .slots-panels .slots-panel--cluster,
#show-hold-win:checked ~ .slots-panels .slots-panel--hold-win {
  display: block;
}

.slots-panel__heading {
  margin-bottom: 20px;
}

.slots-panel__heading h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.slots-panel__heading p {
  max-width: 112ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.45;
}

.slots-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.slot-game {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--slots-line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(48, 65, 108, 0.08);
}

.slots-card-grid:has(.slot-game details[open]) {
  align-items: start;
}

.slots-card-grid:has(.slot-game details[open]) .slot-game {
  height: auto;
}

.slot-game > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 427 / 575;
  object-fit: cover;
  color: transparent;
  background: linear-gradient(135deg, rgba(83, 104, 237, 0.16), rgba(255, 205, 122, 0.2)), #e7eef6;
}

.slot-game__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 12px 13px 10px;
}

.slot-game h4 {
  margin: 0;
  color: var(--slots-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.slot-provider {
  margin: 4px 0 9px;
  color: #705bd5;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.slot-game__body > p:not(.slot-provider) {
  margin: 0 0 11px;
  color: var(--slots-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.slot-game details {
  margin-top: auto;
  border-top: 1px solid var(--slots-line);
}

.slot-game summary {
  position: relative;
  padding: 11px 28px 1px 0;
  color: #4e48bf;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.slot-game summary::-webkit-details-marker {
  display: none;
}

.slot-game summary::after {
  content: "+";
  position: absolute;
  top: 8px;
  right: 1px;
  font-size: 1.35rem;
  font-weight: 500;
}

.slot-game details[open] summary::after {
  content: "−";
}

.slot-game summary:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(83, 104, 237, 0.45);
  outline-offset: 4px;
}

.slot-game dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin: 15px 0 3px;
  padding-top: 14px;
  border-top: 1px dashed rgba(64, 79, 132, 0.2);
  font-size: 0.82rem;
  line-height: 1.5;
}

.slot-game dt {
  color: var(--slots-ink);
  font-weight: 800;
}

.slot-game dt:not(:first-child) {
  margin-top: 8px;
}

.slot-game dd {
  min-width: 0;
  margin: 0 0 3px;
  color: var(--slots-muted);
}

.slots-player-notes {
  margin-top: 28px;
  border: 1px solid rgba(64, 79, 132, 0.15);
  border-radius: 20px;
  background: rgba(244, 247, 255, 0.88);
  box-shadow: 0 14px 34px rgba(48, 65, 108, 0.1);
  overflow: hidden;
}

.slots-player-notes > summary {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 60px 18px 22px;
  list-style: none;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.slots-player-notes > summary::-webkit-details-marker {
  display: none;
}

.slots-player-notes > summary:hover {
  background: rgba(115, 88, 230, 0.08);
}

.slots-player-notes > summary:focus-visible {
  outline: 3px solid var(--slots-purple);
  outline-offset: -3px;
}

.slots-player-notes > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--slots-purple);
  font-size: 1.65rem;
  line-height: 1;
  transform: translateY(-50%);
}

.slots-player-notes[open] > summary::after {
  content: "−";
}

.slots-player-notes__title {
  color: var(--slots-ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.slots-player-notes__summary {
  max-width: 92ch;
  color: var(--slots-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.slots-player-notes__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 18px 18px;
}

.slots-player-notes__content article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(64, 79, 132, 0.13);
  border-radius: 16px;
  background: #fff;
}

.slots-player-notes__content h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.slots-player-notes__content p {
  margin: 0;
  color: var(--slots-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .slots-guide__intro {
    grid-template-columns: 1fr;
  }

  .slots-guide__overview {
    max-width: 720px;
  }

  .slots-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slots-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slots-category-button {
    position: static;
  }

  .slots-player-notes__content {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .slots-guide {
    scroll-margin-top: 84px;
    padding: 55px 15px;
  }

  .slots-selector {
    gap: 8px;
  }

  .slots-category-button {
    min-height: 51px;
    padding: 9px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    text-align: center;
  }

  .slots-panel {
    padding: 20px 14px;
    border-radius: 22px;
  }

  .slots-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slots-player-notes > summary {
    padding: 16px 52px 16px 16px;
  }

  .slots-player-notes__content {
    padding: 0 12px 12px;
  }

  .slot-game__body > p:not(.slot-provider) {
    height: auto;
    min-height: 0;
  }

  .slot-game dl {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .slot-game dd {
    margin-bottom: 7px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .slots-category-button {
    transition: none;
  }

}

/* ===================== START FAQ ===================== */
.faq-guide {
  --faq-ink: #182440;
  --faq-muted: #6a7893;
  --faq-line: rgba(44, 61, 96, .15);
  padding: 64px 0 76px;
  color: var(--faq-ink);
  background: radial-gradient(circle at 12% 4%, rgba(35, 159, 153, .12), transparent 30%), radial-gradient(circle at 90% 86%, rgba(119, 88, 211, .13), transparent 32%), #eef3f8;
}

.faq-guide__container {
  width: min(100% - 88px, 1800px);
  margin-inline: auto;
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 42px;
  align-items: end;
  padding: clamp(34px, 4.5vw, 66px);
  border-radius: 30px 30px 0 0;
  color: #fff;
  background: linear-gradient(118deg, #12294a 0%, #185d6c 58%, #14877d 100%);
  box-shadow: 0 25px 65px rgba(28, 61, 77, .16);
}

.faq-intro p {
  margin: 0 0 10px;
  color: #77e5d8;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.faq-intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.052em;
}

.faq-intro > span {
  display: block;
  padding-left: 27px;
  border-left: 2px solid rgba(119, 229, 216, .6);
  color: #d7e5e8;
  font-size: 1.02rem;
  line-height: 1.66;
}

.faq-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px clamp(24px, 3vw, 40px);
  border: 1px solid var(--faq-line);
  border-top: 0;
  border-radius: 0 0 23px 23px;
  background: rgba(255,255,255,.76);
}

.faq-topics span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #336b72;
  background: #deefee;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  margin-top: 22px;
}

.faq-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.faq-column details {
  overflow: hidden;
  border: 1px solid var(--faq-line);
  border-radius: 19px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(35, 54, 86, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-column details:hover {
  border-color: rgba(24, 132, 126, .28);
  transform: translateY(-1px);
}

.faq-column details[open] {
  border-color: rgba(24, 132, 126, .4);
  box-shadow: 0 18px 38px rgba(27, 77, 87, .1);
}

.faq-column summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 19px 62px 19px 23px;
  list-style: none;
  cursor: pointer;
}

.faq-column summary::-webkit-details-marker {
  display: none;
}

.faq-column summary::after {
  content: '+';
  position: absolute;
  right: 21px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #187e79;
  background: #e3f3f1;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.faq-column details[open] summary::after {
  content: '−';
  color: #fff;
  background: #187e79;
}

.faq-column summary span {
  color: var(--faq-ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.36;
}

.faq-answer {
  margin: 0 22px 22px;
  padding: 18px 2px 0;
  border-top: 1px solid var(--faq-line);
}

.faq-answer p {
  margin: 0;
  color: var(--faq-muted);
  font-size: .96rem;
  line-height: 1.68;
}

.faq-safety {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 24px;
  border-radius: 18px;
  color: #fff;
  background: #1a2949;
}

.faq-safety span {
  color: #ffd17f;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
}

.faq-safety p {
  margin: 0;
  color: #d8dce7;
  font-size: .94rem;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .faq-guide {
    padding: 38px 0 48px;
  }

  .faq-guide__container {
    width: min(100% - 28px, 1800px);
  }

  .faq-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 22px;
    border-radius: 23px 23px 0 0;
  }

  .faq-intro > span {
    padding: 0;
    border: 0;
  }

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

  .faq-safety {
    grid-template-columns: 1fr;
    gap: 8px;
  }

}

@media (max-width: 560px) {
  .faq-column summary {
    min-height: 78px;
    padding: 17px 54px 17px 18px;
  }

  .faq-column summary::after {
    right: 16px;
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    margin: 0 18px 18px;
    padding-top: 15px;
  }

}

/* ====================== END FAQ ====================== */
@media print {
  .slots-guide {
    padding: 20px 0;
    color: #000;
    background: #fff;
  }

  .slots-category-button {
    display: none;
  }

  .slots-panels {
    margin: 0;
  }

  .slots-panel,
  #show-classic:checked ~ .slots-panels .slots-panel,
  #show-megaways:checked ~ .slots-panels .slots-panel,
  #show-cluster:checked ~ .slots-panels .slots-panel,
  #show-hold-win:checked ~ .slots-panels .slots-panel {
    display: block;
    break-inside: auto;
    margin-bottom: 24px;
    border: 1px solid #bbb;
    box-shadow: none;
  }

  .slot-game {
    break-inside: avoid;
    box-shadow: none;
  }

}

/* ===== END SLOTS SECTION ===== */
/* ===== START LIVE CASINO SECTION ===== */
.live-guide {
  --live-ink: #251b36;
  --live-muted: #685d76;
  --live-plum: #713b73;
  --live-coral: #e46661;
  --live-gold: #e4af67;
  --live-line: rgba(87, 51, 88, 0.17);
  scroll-margin-top: 110px;
  width: 100%;
  overflow: hidden;
  padding: clamp(64px, 7vw, 104px) 24px;
  color: var(--live-ink);
  background: radial-gradient(circle at 8% 18%, rgba(240, 165, 137, 0.4), transparent 29%), radial-gradient(circle at 91% 72%, rgba(137, 92, 149, 0.25), transparent 32%), linear-gradient(145deg, #f5d7c7 0%, #e8dbe3 48%, #d8c9d8 100%);
}

.live-guide__container {
  width: min(1560px, 100%);
  min-width: 0;
  margin: 0 auto;
}

.live-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  margin-bottom: 34px;
}

.live-guide__intro-copy {
  max-width: 920px;
}

.live-guide__eyebrow {
  margin: 0 0 12px;
  color: #884c72;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.live-guide h2, .live-guide h3, .live-guide h4, .live-guide p {
  max-width: 72ch;
}

.live-guide h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.live-guide__intro-copy > p:not(.live-guide__eyebrow) {
  margin: 0;
  color: var(--live-muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.live-guide__overview {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 22px;
  background: linear-gradient(145deg, #6b3d68, #44335e);
  box-shadow: 0 18px 40px rgba(76, 43, 74, 0.2);
}

.live-guide__overview h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.18rem;
}

.live-guide__overview p {
  margin: 0;
  color: #f4e8f0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.live-guide__overview .live-guide__audience {
  margin-top: 18px;
  color: #ffd0bd;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-selector {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.live-visually-hidden, .live-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.live-category-button {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  z-index: 12;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(100, 59, 93, 0.2);
  border-radius: 999px;
  color: #4c3853;
  background: rgba(255, 250, 248, 0.78);
  box-shadow: 0 5px 16px rgba(84, 49, 77, 0.07);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.live-category-button:hover {
  border-color: rgba(194, 88, 99, 0.62);
  transform: translateY(-2px);
}

.live-radio:focus-visible + .live-category-button {
  outline: 3px solid #56345d;
  outline-offset: 4px;
}

#show-live-popular:checked + label,
#show-live-roulette:checked + label,
#show-live-blackjack:checked + label,
#show-live-baccarat:checked + label,
#show-live-poker:checked + label,
#show-live-shows:checked + label,
#show-live-other:checked + label {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(125deg, var(--live-coral), var(--live-plum));
  box-shadow: 0 12px 28px rgba(116, 58, 102, 0.25);
}

.live-panels {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 8px;
}

.live-panel {
  --live-panel-inline: clamp(22px, 3vw, 38px);
  display: none;
  overflow: hidden;
  padding: 0 var(--live-panel-inline) 24px;
  border: 1px solid rgba(113, 59, 115, 0.3);
  border-radius: 25px;
  background: linear-gradient(145deg, #fff3ef, #fffaf7);
  box-shadow: 0 22px 60px rgba(95, 51, 87, 0.2);
}

#show-live-popular:checked ~ .live-panels .live-panel--popular,
#show-live-roulette:checked ~ .live-panels .live-panel--roulette,
#show-live-blackjack:checked ~ .live-panels .live-panel--blackjack,
#show-live-baccarat:checked ~ .live-panels .live-panel--baccarat,
#show-live-poker:checked ~ .live-panels .live-panel--poker,
#show-live-shows:checked ~ .live-panels .live-panel--shows,
#show-live-other:checked ~ .live-panels .live-panel--other {
  display: block;
}

.live-panel__heading {
  margin: 0 calc(var(--live-panel-inline) * -1) 20px;
  padding: clamp(20px, 2.2vw, 28px) var(--live-panel-inline) 24px;
  background: linear-gradient(125deg, #8b4e79, #d46b68);
}

.live-panel__heading h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.live-panel__heading p {
  max-width: 112ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  line-height: 1.45;
}

.live-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.live-game {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--live-line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(76, 43, 71, 0.09);
}

.live-card-grid:has(.live-game details[open]) {
  align-items: start;
}

.live-card-grid:has(.live-game details[open]) .live-game {
  height: auto;
}

.live-game > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 427 / 575;
  object-fit: cover;
  color: transparent;
  background: linear-gradient(135deg, #f0c8b8, #d4bad1);
}

.live-game__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 12px 13px 10px;
}

.live-game h4 {
  margin: 0;
  color: var(--live-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.live-provider {
  margin: 4px 0 9px;
  color: #a34f68;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.live-game__body > p:not(.live-provider) {
  margin: 0 0 11px;
  color: var(--live-muted);
  font-size: 0.82rem;
  line-height: 1.43;
}

.live-game details {
  margin-top: auto;
  border-top: 1px solid var(--live-line);
}

.live-game summary {
  position: relative;
  padding: 11px 28px 1px 0;
  color: #8b4566;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.live-game summary::-webkit-details-marker {
  display: none;
}

.live-game summary::after {
  content: "+";
  position: absolute;
  top: 8px;
  right: 1px;
  font-size: 1.35rem;
  font-weight: 500;
}

.live-game details[open] summary::after {
  content: "−";
}

.live-game summary:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(228, 102, 97, 0.48);
  outline-offset: 4px;
}

.live-game dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin: 15px 0 3px;
  padding-top: 14px;
  border-top: 1px dashed rgba(113, 59, 115, 0.22);
  font-size: 0.8rem;
  line-height: 1.48;
}

.live-game dt {
  color: var(--live-ink);
  font-weight: 800;
}

.live-game dt:not(:first-child) {
  margin-top: 8px;
}

.live-game dd {
  min-width: 0;
  margin: 0 0 3px;
  color: var(--live-muted);
}

.live-player-notes {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(100, 59, 93, 0.16);
  border-radius: 20px;
  background: rgba(255, 249, 246, 0.88);
  box-shadow: 0 14px 34px rgba(76, 43, 71, 0.1);
}

.live-player-notes > summary {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 60px 18px 22px;
  list-style: none;
  cursor: pointer;
}

.live-player-notes > summary::-webkit-details-marker {
  display: none;
}

.live-player-notes > summary:hover {
  background: rgba(228, 102, 97, 0.08);
}

.live-player-notes > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--live-plum);
  font-size: 1.65rem;
  transform: translateY(-50%);
}

.live-player-notes[open] > summary::after {
  content: "−";
}

.live-player-notes__title {
  color: var(--live-ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.live-player-notes__summary {
  max-width: 92ch;
  color: var(--live-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.live-player-notes__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 18px 18px;
}

.live-player-notes__content article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(100, 59, 93, 0.13);
  border-radius: 16px;
  background: #fff;
}

.live-player-notes__content h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.live-player-notes__content p {
  margin: 0;
  color: var(--live-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .live-guide__intro {
    grid-template-columns: 1fr;
  }

  .live-guide__overview {
    max-width: 720px;
  }

  .live-selector {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .live-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .live-category-button {
    position: static;
  }

  .live-player-notes__content {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .live-guide {
    scroll-margin-top: 84px;
    padding: 55px 15px;
  }

  .live-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .live-category-button {
    min-height: 51px;
    padding: 9px 10px;
    border-radius: 15px;
    font-size: 0.79rem;
  }

  .live-panel {
    --live-panel-inline: 14px;
    padding: 0 var(--live-panel-inline) 20px;
    border-radius: 22px;
  }

  .live-panel__heading {
    padding: 20px var(--live-panel-inline);
  }

  .live-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-game dl {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .live-game dd {
    margin-bottom: 7px;
  }

  .live-player-notes > summary {
    padding: 16px 52px 16px 16px;
  }

  .live-player-notes__content {
    padding: 0 12px 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .live-category-button {
    transition: none;
  }

}

@media print {
  .live-guide {
    padding: 20px 0;
    color: #000;
    background: #fff;
  }

  .live-category-button {
    display: none;
  }

  .live-panel,
  #show-live-popular:checked ~ .live-panels .live-panel,
  #show-live-roulette:checked ~ .live-panels .live-panel,
  #show-live-blackjack:checked ~ .live-panels .live-panel,
  #show-live-baccarat:checked ~ .live-panels .live-panel,
  #show-live-poker:checked ~ .live-panels .live-panel,
  #show-live-shows:checked ~ .live-panels .live-panel,
  #show-live-other:checked ~ .live-panels .live-panel {
    display: block;
    break-inside: auto;
    margin-bottom: 24px;
    border: 1px solid #bbb;
    box-shadow: none;
  }

  .live-game {
    break-inside: avoid;
    box-shadow: none;
  }

}

/* ===== END LIVE CASINO SECTION ===== */
/* ===== START CASINO GAMES SECTION ===== */
.games-guide {
  --games-ink: #14233f;
  --games-muted: #60708c;
  --games-blue: #2678d8;
  --games-teal: #13a6a1;
  scroll-margin-top: 92px;
  padding: 64px clamp(18px, 4.4vw, 86px);
  color: var(--games-ink);
  background: radial-gradient(circle at 8% 8%, rgba(70, 207, 201, 0.2), transparent 30%), radial-gradient(circle at 92% 12%, rgba(76, 126, 230, 0.2), transparent 34%), linear-gradient(135deg, #dff4f3 0%, #e9f1ff 51%, #f4ecff 100%);
}

.games-guide__container {
  max-width: 1720px;
  margin: 0 auto;
}

.games-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.games-guide__eyebrow {
  margin: 0 0 14px;
  color: #3271c8;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.games-guide__intro h2 {
  max-width: 950px;
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 4.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.games-guide__intro > div > p:last-child {
  max-width: 1000px;
  margin: 0;
  color: var(--games-muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.58;
}

.games-guide__overview {
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #174e8f, #176f78);
  box-shadow: 0 16px 36px rgba(24, 66, 116, 0.16);
}

.games-guide__overview h3, .games-guide__overview p {
  margin: 0;
}

.games-guide__overview h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.games-guide__overview p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.55;
}

.games-guide__audience {
  margin-top: 17px !important;
  color: #92eee8 !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.games-selector {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.games-visually-hidden, .games-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.games-category-button {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(29, 75, 126, 0.14);
  border-radius: 999px;
  color: #30415e;
  font-size: 0.87rem;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 7px 20px rgba(40, 73, 120, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.games-category-button:hover {
  transform: translateY(-2px);
}

#show-games-crash:checked + .games-category-button,
#show-games-plinko:checked + .games-category-button,
#show-games-mines:checked + .games-category-button,
#show-games-table:checked + .games-category-button,
#show-games-arcade:checked + .games-category-button {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(100deg, var(--games-blue), var(--games-teal));
  box-shadow: 0 12px 28px rgba(38, 120, 216, 0.24);
}

.games-panels {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 8px;
}

.games-panel {
  --games-panel-inline: clamp(18px, 2.4vw, 42px);
  display: none;
  overflow: hidden;
  padding: 0 var(--games-panel-inline) 20px;
  border: 1px solid rgba(26, 75, 128, 0.14);
  border-top: 5px solid #2e90d4;
  border-radius: 28px;
  background: rgba(250, 252, 255, 0.9);
  box-shadow: 0 22px 48px rgba(43, 70, 113, 0.13);
}

#show-games-crash:checked ~ .games-panels .games-panel--crash,
#show-games-plinko:checked ~ .games-panels .games-panel--plinko,
#show-games-mines:checked ~ .games-panels .games-panel--mines,
#show-games-table:checked ~ .games-panels .games-panel--table,
#show-games-arcade:checked ~ .games-panels .games-panel--arcade {
  display: block;
}

.games-panel__heading {
  margin: 0 calc(var(--games-panel-inline) * -1) 16px;
  padding: 27px var(--games-panel-inline) 25px;
  color: #fff;
  background: linear-gradient(105deg, #236fc9, #139d9a);
}

.games-panel--plinko .games-panel__heading {
  background: linear-gradient(105deg, #6c52d9, #368bd4);
}

.games-panel--mines .games-panel__heading {
  background: linear-gradient(105deg, #215c73, #218b78);
}

.games-panel--table .games-panel__heading {
  background: linear-gradient(105deg, #2455a1, #6547b1);
}

.games-panel--arcade .games-panel__heading {
  background: linear-gradient(105deg, #196f91, #6d50c7);
}

.games-panel__heading h3 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 2.35vw, 2.45rem);
  line-height: 1.05;
}

.games-panel__heading p {
  max-width: 1120px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.91rem;
  line-height: 1.52;
}

.other-game-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.other-game {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(36, 65, 105, 0.15);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(38, 64, 102, 0.08);
}

.other-game__art {
  position: relative;
  display: flex;
  min-height: 242px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 14px;
  isolation: isolate;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(145deg, #173864, #14a39e);
}

.other-game > img.other-game__art {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 427 / 575;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #dce8f3;
}

.other-game__art::before {
  content: "";
  position: absolute;
  inset: 10% 18% 33%;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(104, 243, 235, 0.75), inset 0 0 32px rgba(255, 255, 255, 0.18);
  transform: rotate(-10deg);
}

.other-game__art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.7;
  background: repeating-linear-gradient(115deg, transparent 0 20px, rgba(255, 255, 255, 0.07) 21px 22px);
}

.other-game__art span {
  font-size: clamp(1rem, 1.25vw, 1.34rem);
  font-weight: 900;
  line-height: 1.02;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.other-game__art small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.other-game:nth-child(2n) .other-game__art {
  background: linear-gradient(145deg, #4e3fb7, #287dc8);
}

.other-game:nth-child(3n) .other-game__art {
  background: linear-gradient(145deg, #8c3f83, #2f69b8);
}

.other-game:nth-child(4n) .other-game__art {
  background: linear-gradient(145deg, #096875, #42a074);
}

.other-game:nth-child(5n) .other-game__art {
  background: linear-gradient(145deg, #344f9c, #7c4ec6);
}

.other-game:nth-child(6n) .other-game__art {
  background: linear-gradient(145deg, #185b89, #bc4d7a);
}

.other-game__body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 12px 14px 0;
}

.other-game__body h4 {
  min-height: 1.23em;
  margin: 0 0 2px;
  font-size: 0.96rem;
  line-height: 1.23;
}

.other-game__provider {
  min-height: 1.2em;
  margin: 0 0 6px;
  color: #337dc1;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.other-game__body > p:last-of-type {
  min-height: 3em;
  margin: 0;
  color: var(--games-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.other-game details {
  margin-top: 7px;
  border-top: 1px solid rgba(46, 71, 111, 0.15);
}

.other-game summary {
  position: relative;
  padding: 10px 24px 10px 0;
  color: #2678b8;
  font-size: 0.77rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.other-game summary::-webkit-details-marker {
  display: none;
}

.other-game summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.15rem;
}

.other-game details[open] summary::after {
  content: "−";
}

.other-game dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin: 0;
  padding: 12px 0 16px;
  border-top: 1px dashed rgba(46, 71, 111, 0.15);
}

.other-game dt {
  margin-top: 7px;
  color: var(--games-ink);
  font-size: 0.7rem;
  font-weight: 850;
}

.other-game dd {
  margin: 0;
  color: var(--games-muted);
  font-size: 0.72rem;
  line-height: 1.42;
}

.games-player-notes {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(28, 77, 127, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
}

.games-player-notes > summary {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 58px 18px 22px;
  list-style: none;
  cursor: pointer;
}

.games-player-notes > summary::-webkit-details-marker {
  display: none;
}

.games-player-notes > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--games-blue);
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.games-player-notes[open] > summary::after {
  content: "−";
}

.games-player-notes__title {
  font-weight: 850;
}

.games-player-notes__summary {
  max-width: 98ch;
  color: var(--games-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.games-player-notes__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  padding: 0 16px 16px;
}

.games-player-notes__content article {
  padding: 17px;
  border: 1px solid rgba(28, 77, 127, 0.12);
  border-radius: 16px;
  background: #fff;
}

.games-player-notes__content h3 {
  margin: 0 0 7px;
  font-size: 0.94rem;
}

.games-player-notes__content p {
  margin: 0;
  color: var(--games-muted);
  font-size: 0.81rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .games-guide__intro {
    grid-template-columns: 1fr;
  }

  .games-guide__overview {
    max-width: 720px;
  }

  .games-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .other-game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .games-player-notes__content {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .games-guide {
    scroll-margin-top: 84px;
    padding: 52px 15px;
  }

  .games-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .games-category-button {
    min-height: 49px;
    padding: 8px;
    border-radius: 15px;
    font-size: 0.76rem;
  }

  .games-panel {
    --games-panel-inline: 13px;
    padding-bottom: 18px;
    border-radius: 22px;
  }

  .games-panel__heading {
    padding: 20px var(--games-panel-inline);
  }

  .other-game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .other-game__art {
    min-height: 0;
  }

  .other-game__body {
    min-height: 0;
    padding: 12px 10px 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  .games-category-button {
    transition: none;
  }

}

@media print {
  .games-guide {
    padding: 20px 0;
    color: #000;
    background: #fff;
  }

  .games-category-button {
    display: none;
  }

  .games-panel,
  #show-games-crash:checked ~ .games-panels .games-panel,
  #show-games-plinko:checked ~ .games-panels .games-panel,
  #show-games-mines:checked ~ .games-panels .games-panel,
  #show-games-table:checked ~ .games-panels .games-panel,
  #show-games-arcade:checked ~ .games-panels .games-panel {
    display: block;
    break-inside: auto;
    margin-bottom: 24px;
    box-shadow: none;
  }

  .other-game {
    break-inside: avoid;
    box-shadow: none;
  }

}

/* ===== END CASINO GAMES SECTION ===== */
/* ===== START SPORTS AND E-SPORTS SECTION ===== */
.sports-guide {
  --sports-navy: #102440;
  --sports-muted: #58708d;
  --sports-blue: #1678c8;
  --sports-teal: #08a89b;
  --sports-line: rgba(25, 88, 135, 0.16);
  scroll-margin-top: 90px;
  padding: 58px 4.4% 72px;
  color: var(--sports-navy);
  background: radial-gradient(circle at 8% 8%, rgba(31, 190, 170, 0.18), transparent 30%), radial-gradient(circle at 94% 22%, rgba(58, 118, 230, 0.16), transparent 34%), linear-gradient(135deg, #e7f6f4 0%, #eef4ff 52%, #f6f1e9 100%);
}

.sports-guide[hidden] {
  display: none;
}

.sports-guide__container {
  width: min(1780px, 100%);
  margin: 0 auto;
}

.sports-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.sports-guide__eyebrow, .sports-section-label, .sports-panel__heading > p {
  margin: 0 0 9px;
  color: #087e78;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sports-guide__intro h2 {
  max-width: 900px;
  margin: 0 0 13px;
  font-size: clamp(2.15rem, 4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.sports-guide__intro-copy > p:last-child {
  max-width: 900px;
  margin: 0;
  color: var(--sports-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.sports-guide__overview {
  display: grid;
  gap: 8px;
  padding: 21px 23px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 22px;
  color: #dffcf7;
  background: linear-gradient(135deg, #143d63, #087f80);
  box-shadow: 0 18px 42px rgba(19, 66, 103, 0.18);
}

.sports-guide__overview strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 1rem;
}

.sports-guide__overview span {
  font-size: 0.78rem;
  line-height: 1.35;
}

.sports-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.sports-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin: 0;
  padding: 0;
  border: 0;
}

.sports-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sports-category-button {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(28, 78, 123, 0.13);
  border-radius: 18px;
  color: #24405e;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 8px 20px rgba(34, 71, 110, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.sports-category-button:hover {
  transform: translateY(-2px);
}

.sports-radio:focus-visible + .sports-category-button {
  outline: 3px solid rgba(13, 154, 146, 0.35);
  outline-offset: 3px;
}#show-sports-australia:checked + label,
#show-sports-more:checked + label,
#show-sports-esports:checked + label {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--sports-blue), var(--sports-teal));
  box-shadow: 0 13px 26px rgba(14, 117, 151, 0.23);
}

.sports-panels {
  grid-column: 1 / -1;
}

.sports-panel {
  display: none;
  overflow: hidden;
  margin-top: 13px;
  border: 1px solid rgba(23, 91, 139, 0.13);
  border-radius: 27px;
  background: rgba(248, 252, 255, 0.9);
  box-shadow: 0 24px 60px rgba(24, 61, 100, 0.12);
}#show-sports-australia:checked ~ .sports-panels .sports-panel--australia,
#show-sports-more:checked ~ .sports-panels .sports-panel--more,
#show-sports-esports:checked ~ .sports-panels .sports-panel--esports {
  display: block;
}

.sports-panel__heading {
  padding: 25px 28px 21px;
  color: #eafffb;
  background: linear-gradient(120deg, #123e67, #087f80);
}

.sports-panel__heading > p {
  color: #9ce9dd;
}

.sports-panel__heading h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.sports-panel__heading span {
  display: block;
  max-width: 1120px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.sports-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  padding: 17px;
}

.sports-panel--australia .sports-card-grid, .sports-panel--more .sports-card-grid, .sports-panel--esports .sports-card-grid {
  align-items: stretch;
}

.sports-card-grid:has(.sport-card details[open]) {
  align-items: start;
}

.sport-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--sports-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(24, 61, 100, 0.07);
}

.sport-card__media {
  position: relative;
  height: 94px;
  overflow: hidden;
  isolation: isolate;
  background: #123e67;
}

.sport-card__media::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -12px;
  background-image: var(--sport-media-image);
  background-position: center;
  background-size: cover;
  filter: blur(10px) brightness(.58) saturate(.8);
  transform: scale(1.08);
}

.sport-card__media::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7,31,52,.22), transparent 28%, transparent 72%, rgba(7,31,52,.22));
}

.sport-card__media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(.96) contrast(1.04);
  transition: transform .3s ease, filter .3s ease;
}

.sport-card:hover .sport-card__media img {
  transform: scale(1.018);
  filter: saturate(1) contrast(1.05);
}

.sport-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 82px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(120deg, #174f86, #07978e);
}

.sport-card__visual::before, .sport-card__visual::after {
  content: '';
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
}

.sport-card__visual::before {
  width: 125px;
  height: 125px;
  left: -35px;
  top: -72px;
}

.sport-card__visual::after {
  width: 82px;
  height: 82px;
  right: -18px;
  bottom: -48px;
  animation: sports-pulse 4s ease-in-out infinite;
}

.sport-card__visual span {
  padding: 0 10px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
}

@keyframes sports-pulse {
  0%,100% {
    transform: scale(.9);
    opacity: .55;
  }

  50% {
    transform: scale(1.14);
    opacity: 1;
  }

}

.sport-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 14px 0;
}

.sport-card__type {
  margin: 0 0 6px;
  color: #168985;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sport-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.sport-card__summary {
  margin: 0;
  color: var(--sports-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.sport-card__markets {
  margin: 10px 0 0;
  padding: 9px 10px;
  border-radius: 11px;
  color: #315b73;
  background: #edf8f7;
  font-size: 0.69rem;
  line-height: 1.42;
}

.sport-card__markets strong {
  color: #087e78;
}

.sport-card details {
  margin-top: 13px;
  border-top: 1px solid var(--sports-line);
}

.sports-panel--australia .sport-card details, .sports-panel--more .sport-card details, .sports-panel--esports .sport-card details {
  margin-top: auto;
}

.sport-card summary {
  position: relative;
  padding: 12px 20px 12px 0;
  color: #087e78;
  font-size: 0.75rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.sport-card summary::-webkit-details-marker {
  display: none;
}

.sport-card summary::after {
  content: '+';
  position: absolute;
  right: 1px;
  font-size: 1.05rem;
  line-height: 1;
}

.sport-card details[open] summary::after {
  content: '−';
}

.sport-card dl {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0 0 15px;
}

.sport-card dt {
  margin-top: 5px;
  color: var(--sports-navy);
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.3;
}

.sport-card dd {
  margin: 0;
  color: var(--sports-muted);
  font-size: 0.7rem;
  line-height: 1.42;
}.sports-responsibility,
.sports-faq {
  margin-top: 25px;
  border: 1px solid var(--sports-line);
  border-radius: 25px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 38px rgba(25, 66, 106, 0.08);
}

.sports-general {
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid var(--sports-line);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 38px rgba(25,66,106,.08);
}

.sports-general > summary {
  position: relative;
  padding: 18px 58px 18px 24px;
  color: var(--sports-navy);
  font-size: .9rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.sports-general > summary::-webkit-details-marker {
  display: none;
}

.sports-general > summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  color: #087e78;
  font-size: 1.25rem;
}

.sports-general[open] > summary::after {
  content: '−';
}

.sports-general__content {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr);
  gap: 24px;
  align-items: center;
  padding: 0 24px 24px;
}

.sports-general__content h3 {
  margin: 0 0 7px;
  font-size: clamp(1.3rem,2vw,1.9rem);
}

.sports-general__content p:not(.sports-section-label) {
  margin: 0;
  color: var(--sports-muted);
  font-size: .8rem;
  line-height: 1.55;
}

.sports-reference {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--sports-line);
  border-radius: 25px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 38px rgba(25,66,106,.08);
}

.sports-reference__heading h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem,2.2vw,2.15rem);
  letter-spacing: -.025em;
}

.sports-reference__heading > p:last-child {
  max-width: 850px;
  margin: 0;
  color: var(--sports-muted);
  font-size: .8rem;
  line-height: 1.5;
}

.sports-reference__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.sports-reference__item {
  display: contents;
}

.sports-reference__item > summary {
  position: relative;
  display: grid;
  grid-row: 1;
  gap: 3px;
  min-width: 0;
  padding: 14px 42px 14px 16px;
  border: 1px solid var(--sports-line);
  border-radius: 16px;
  background: #fff;
  list-style: none;
  cursor: pointer;
}

.sports-reference__item > summary::-webkit-details-marker {
  display: none;
}

.sports-reference__item > summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #087e78;
  font-size: 1.2rem;
}

.sports-reference__item[open] > summary::after {
  content: '−';
}

.sports-reference__item[open] > summary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, #174f86, #07978e);
}

.sports-reference__item[open] > summary span, .sports-reference__item[open] > summary small, .sports-reference__item[open] > summary::after {
  color: #fff;
}

.sports-reference__item > summary span {
  color: var(--sports-navy);
  font-size: .86rem;
  font-weight: 850;
}

.sports-reference__item > summary small {
  color: var(--sports-muted);
  font-size: .72rem;
  line-height: 1.4;
}

.sports-reference .sports-panel {
  display: none;
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 2px 0 0;
  border-radius: 18px;
  box-shadow: none;
}

.sports-reference__item[open] .sports-panel {
  display: block;
}

.sports-reference .sports-panel__heading {
  display: none;
}.sports-responsibility h3,
.sports-faq h3 {
  margin: 0 0 9px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}.sports-responsibility p {
  margin: 7px 0 0;
  color: var(--sports-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.odds-example {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 19px;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(125deg, #143e68, #078c85);
}

.odds-example div {
  display: grid;
  gap: 4px;
  text-align: center;
}

.odds-example span {
  color: #c9f6ef;
  font-size: 0.67rem;
}

.odds-example strong {
  font-size: 1.13rem;
}

.sports-responsibility {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 25px;
  padding: 27px;
}

.sports-help-links {
  display: grid;
  gap: 9px;
  align-content: start;
}

.sports-help-links > span {
  display: block;
  padding: 12px 14px;
  border-radius: 13px;
  color: #fff;
  background: #15547b;
  font-size: 0.75rem;
  font-weight: 750;
}

.sports-help-links p {
  margin: 4px 0 0;
}

.sports-help-links p a {
  color: #087e78;
  font-weight: 800;
}

.sports-faq__drawer > summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px 62px 16px 27px;
  list-style: none;
  cursor: pointer;
}

.sports-faq__drawer > summary::-webkit-details-marker {
  display: none;
}

.sports-faq__drawer > summary::after {
  content: '+';
  position: absolute;
  right: 27px;
  color: #087e78;
  font-size: 1.35rem;
  font-weight: 700;
}

.sports-faq__drawer[open] > summary::after {
  content: '−';
}

.sports-faq__heading span {
  display: grid;
  gap: 5px;
}

.sports-faq__heading .sports-section-label {
  margin: 0;
  font-size: .68rem;
}

.sports-faq__heading strong {
  color: #132540;
  font-size: 1.05rem;
  line-height: 1.2;
}

.sports-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 27px 27px;
}

.sports-faq__list > details {
  border: 1px solid var(--sports-line);
  border-radius: 15px;
  background: #fff;
}

.sports-faq__list > details > summary {
  position: relative;
  padding: 14px 38px 14px 15px;
  font-size: 0.78rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.sports-faq__list > details > summary::-webkit-details-marker {
  display: none;
}

.sports-faq__list > details > summary::after {
  content: '+';
  position: absolute;
  right: 15px;
  color: #087e78;
  font-size: 1rem;
}

.sports-faq__list > details[open] > summary::after {
  content: '−';
}

.sports-faq__list > details > p {
  margin: 0;
  padding: 0 15px 15px;
  color: var(--sports-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .sports-guide__intro {
    grid-template-columns: 1fr;
  }

  .sports-guide__overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sports-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sports-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sports-general__content {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {
  .sports-guide {
    scroll-margin-top: 82px;
    padding: 45px 14px 55px;
  }

  .sports-guide__overview {
    grid-template-columns: 1fr;
  }

  .sports-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sports-category-button {
    min-height: 48px;
    padding: 7px;
    font-size: 0.73rem;
  }

  .sports-panel__heading {
    padding: 20px 16px 17px;
  }

  .sports-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 11px;
  }

  .sport-card__media, .sport-card__visual {
    height: 76px;
  }

  .sport-card__body {
    padding: 11px 10px 0;
  }.sports-responsibility {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .sports-general > summary {
    padding: 16px 48px 16px 16px;
  }

  .sports-general__content {
    padding: 0 16px 18px;
  }

  .sports-reference {
    padding: 18px 12px;
  }

  .sports-reference__list {
    grid-template-columns: 1fr;
  }

  .sports-reference__item > summary {
    grid-row: auto;
  }

  .sports-reference .sports-panel {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }

  .odds-example {
    grid-template-columns: 1fr;
  }

  .odds-example > span {
    display: none;
  }.sports-faq__list {
    grid-template-columns: 1fr;
    padding: 0 16px 18px;
  }

  .sports-faq__drawer > summary {
    min-height: 68px;
    padding: 14px 48px 14px 16px;
  }

  .sports-faq__drawer > summary::after {
    right: 16px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .sports-category-button, .sport-card__media img {
    transition: none;
  }

  .sport-card__visual::after {
    animation: none;
  }

}

/* ================= START TOURNAMENTS GUIDE ================= */
.tournament-guide {
  --tournament-ink: #172640;
  --tournament-muted: #667691;
  --tournament-line: #d9dfeb;
  scroll-margin-top: var(--header-height);
  padding: 34px 0 54px;
  color: var(--tournament-ink);
  background: radial-gradient(circle at 12% 8%, rgba(255,219,139,.42), transparent 30%), linear-gradient(135deg, #f4f1ec, #edf1fb 56%, #eee9fa);
}

.tournament-guide__container {
  width: min(1800px, calc(100% - 8.8%));
  margin: 0 auto;
}

.tournament-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(70,60,125,.18);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(118deg, #172b55, #4b347e 64%, #8c5f42);
  box-shadow: 0 20px 52px rgba(36,31,75,.18);
}

.tournament-guide__intro > div {
  align-self: center;
  padding: 36px 42px;
}

.tournament-guide__eyebrow {
  margin: 0 0 12px;
  color: #ffd98a;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.tournament-guide__intro h2 {
  margin: 0 0 14px;
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.tournament-guide__intro p:last-child {
  max-width: 1040px;
  margin: 0;
  color: #e3e7f3;
  font-size: .95rem;
  line-height: 1.65;
}

.tournament-guide__intro img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(90deg, transparent, #000 28%);
}

.tournament-entry {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 2.3fr);
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(63,64,108,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 28px rgba(37,42,86,.07);
}

.tournament-entry__heading {
  align-self: center;
  padding: 4px 8px;
}

.tournament-entry__heading p {
  margin: 0 0 6px;
  color: #916018;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.tournament-entry__heading h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.tournament-entry ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: tournament-step;
}

.tournament-entry li {
  position: relative;
  min-width: 0;
  padding: 12px 10px 11px 38px;
  border-radius: 13px;
  background: #f6f3fb;
  counter-increment: tournament-step;
}

.tournament-entry li::before {
  content: counter(tournament-step);
  position: absolute;
  top: 12px;
  left: 10px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: #65458e;
  font-size: .65rem;
  font-weight: 900;
}

.tournament-entry strong, .tournament-entry span {
  display: block;
}

.tournament-entry strong {
  margin-bottom: 4px;
  color: #24334f;
  font-size: .68rem;
  line-height: 1.25;
}

.tournament-entry span {
  color: var(--tournament-muted);
  font-size: .64rem;
  line-height: 1.4;
}

.tournament-selector {
  min-width: 0;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.tournament-selector > input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.tournament-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.tournament-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.tournament-tabs label {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 11px 15px;
  border: 1px solid rgba(63,64,108,.15);
  border-radius: 999px;
  color: #263552;
  background: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.tournament-tabs label:hover {
  transform: translateY(-1px);
}

#show-tournament-formats:checked ~ .tournament-tabs label[for="show-tournament-formats"],
#show-tournament-timing:checked ~ .tournament-tabs label[for="show-tournament-timing"],
#show-tournament-scoring:checked ~ .tournament-tabs label[for="show-tournament-scoring"],
#show-tournament-rewards:checked ~ .tournament-tabs label[for="show-tournament-rewards"] {
  color: #17213b;
  background: linear-gradient(110deg, #ffd56f, #efaa54);
  box-shadow: 0 8px 22px rgba(184,119,43,.2);
}

.tournament-panel {
  display: none;
  overflow: hidden;
  border: 1px solid rgba(63,64,108,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 48px rgba(37,42,86,.09);
}

#show-tournament-formats:checked ~ .tournament-panels .tournament-panel--formats,
#show-tournament-timing:checked ~ .tournament-panels .tournament-panel--timing,
#show-tournament-scoring:checked ~ .tournament-panels .tournament-panel--scoring,
#show-tournament-rewards:checked ~ .tournament-panels .tournament-panel--rewards {
  display: block;
}

.tournament-panel__heading {
  padding: 27px 31px 23px;
  color: #fff;
  background: linear-gradient(115deg, #1b315d, #55417f 62%, #9b6940);
}

.tournament-panel__heading p {
  margin: 0 0 7px;
  color: #ffd98a;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.tournament-panel__heading h3 {
  margin: 0 0 9px;
  font-size: clamp(1.75rem, 2.7vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.tournament-panel__heading span {
  display: block;
  max-width: 1160px;
  color: #e1e5f2;
  font-size: .85rem;
  line-height: 1.55;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  padding: 18px;
}

.tournament-grid:has(.tournament-card details[open]) {
  align-items: stretch;
}

.tournament-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 17px 15px 0;
  border: 1px solid var(--tournament-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(32,42,78,.055);
}

.tournament-card__tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #5b3c13;
  background: #fff0ca;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.tournament-card h4 {
  min-height: 2.25em;
  margin: 0 0 8px;
  font-size: .96rem;
  line-height: 1.12;
}

.tournament-card__metric {
  display: block;
  margin: 0 0 7px;
  padding: 11px 10px;
  border: 1px solid #ead7ff;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(115deg, #4b327d, #7a4fa2);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
  box-shadow: 0 7px 16px rgba(73,50,118,.16);
}

.tournament-card__places {
  display: block;
  min-height: 2.5em;
  margin: 0 0 10px;
  color: #945f0f;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.tournament-card__facts {
  display: grid;
  gap: 7px;
  margin: 0 0 11px;
}

.tournament-card__facts p {
  margin: 0;
  color: var(--tournament-muted);
  font-size: .69rem;
  line-height: 1.42;
}

.tournament-card__facts b {
  color: #253654;
}

.tournament-card > p {
  flex: 1;
  margin: 0 0 13px;
  color: var(--tournament-muted);
  font-size: .72rem;
  line-height: 1.48;
}

.tournament-card details {
  margin-top: auto;
  border-top: 1px solid var(--tournament-line);
}

.tournament-card summary {
  position: relative;
  padding: 12px 23px 12px 0;
  color: #674697;
  font-size: .69rem;
  font-weight: 850;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.tournament-card summary::-webkit-details-marker {
  display: none;
}

.tournament-card summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: .95rem;
}

.tournament-card details[open] summary::after {
  content: '−';
}

.tournament-card details p {
  margin: 0;
  padding: 0 0 14px;
  color: var(--tournament-muted);
  font-size: .7rem;
  line-height: 1.48;
}

.tournament-primer {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(63,64,108,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 32px rgba(37,42,86,.07);
}

.tournament-primer > summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 15px 60px 15px 25px;
  list-style: none;
  cursor: pointer;
}

.tournament-primer > summary::-webkit-details-marker {
  display: none;
}

.tournament-primer > summary::after {
  content: '+';
  position: absolute;
  right: 25px;
  color: #674697;
  font-size: 1.35rem;
  font-weight: 800;
}

.tournament-primer[open] > summary::after {
  content: '−';
}

.tournament-primer > summary span {
  display: grid;
  gap: 4px;
}

.tournament-primer > summary small {
  color: #8c621d;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.tournament-primer > summary strong {
  font-size: .95rem;
}

.tournament-primer__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 25px 25px;
}

.tournament-primer__content article {
  padding: 15px;
  border-radius: 15px;
  background: #f7f5fb;
}

.tournament-primer__content h3 {
  margin: 0 0 7px;
  font-size: .8rem;
}

.tournament-primer__content p {
  margin: 0;
  color: var(--tournament-muted);
  font-size: .72rem;
  line-height: 1.5;
}

@media (max-width: 1250px) {
  .tournament-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .tournament-guide {
    padding: 24px 0 38px;
  }

  .tournament-guide__container {
    width: min(100% - 28px, 1800px);
  }

  .tournament-guide__intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tournament-guide__intro > div {
    padding: 28px 22px;
  }

  .tournament-guide__intro img {
    height: 150px;
    min-height: 0;
    mask-image: linear-gradient(180deg, transparent, #000 25%);
  }

  .tournament-entry {
    grid-template-columns: 1fr;
  }

  .tournament-entry ol {
    grid-template-columns: 1fr;
  }

  .tournament-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .tournament-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .tournament-card h4 {
    min-height: 0;
  }

  .tournament-panel__heading {
    padding: 23px 20px 19px;
  }

  .tournament-primer__content {
    grid-template-columns: 1fr;
    padding: 0 14px 14px;
  }

  .tournament-primer > summary {
    padding: 14px 48px 14px 16px;
  }

  .tournament-primer > summary::after {
    right: 16px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .tournament-tabs label {
    transition: none;
  }

}

/* ================== END TOURNAMENTS GUIDE ================== */
/* ================= START BONUSES GUIDE ================= */
.bonus-guide {
  --bonus-ink:#18243d;
  --bonus-muted:#66748e;
  --bonus-line:#eaded8;
  scroll-margin-top:var(--header-height);
  padding:34px 0 54px;
  color:var(--bonus-ink);
  background:radial-gradient(circle at 8% 8%,rgba(255,209,145,.38),transparent 30%),linear-gradient(135deg,#fff8f1,#f4eef8 58%,#edf4ff);
}

.bonus-guide__container {
  width:min(1800px,calc(100% - 8.8%));
  margin:0 auto;
}

.bonus-hero {
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(300px,.55fr);
  overflow:hidden;
  min-height:250px;
  border:1px solid rgba(120,64,82,.18);
  border-radius:28px;
  color:#fff;
  background:linear-gradient(115deg,#352451,#80455e 60%,#bb6948);
  box-shadow:0 20px 52px rgba(72,42,65,.18);
}

.bonus-hero > div {
  align-self:center;
  padding:36px 42px;
}

.bonus-eyebrow {
  margin:0 0 12px;
  color:#ffd791;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.16em;
}

.bonus-hero h2 {
  margin:0 0 14px;
  font-size:clamp(2.15rem,4vw,4rem);
  line-height:.98;
  letter-spacing:-.045em;
}

.bonus-hero p:last-child {
  max-width:1050px;
  margin:0;
  color:#f1e8ee;
  font-size:.96rem;
  line-height:1.62;
}

.bonus-hero img {
  width:100%;
  height:100%;
  min-height:250px;
  object-fit:cover;
  mask-image:linear-gradient(90deg,transparent,#000 28%);
}

.bonus-start {
  display:grid;
  grid-template-columns:minmax(210px,.65fr) minmax(0,2.35fr);
  gap:16px;
  margin-top:18px;
  padding:18px;
  border:1px solid rgba(112,65,88,.15);
  border-radius:22px;
  background:rgba(255,255,255,.86);
  box-shadow:0 10px 28px rgba(60,42,75,.07);
}

.bonus-start > div {
  align-self:center;
  padding:4px 8px;
}

.bonus-start > div p {
  margin:0 0 6px;
  color:#a05234;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.13em;
}

.bonus-start h3 {
  margin:0;
  font-size:1.15rem;
  line-height:1.2;
}

.bonus-start__notes {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
}

.bonus-start__notes p {
  margin:0;
  padding:13px;
  border-radius:13px;
  background:#faf4f4;
}

.bonus-start strong,.bonus-start span {
  display:block;
}

.bonus-start strong {
  margin-bottom:4px;
  font-size:.79rem;
  line-height:1.25;
}

.bonus-start span {
  color:var(--bonus-muted);
  font-size:.76rem;
  line-height:1.46;
}

.bonus-selector {
  min-width:0;
  margin:18px 0 0;
  padding:0;
  border:0;
}

.bonus-selector > input {
  position:absolute;
  inline-size:1px;
  block-size:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}

.bonus-visually-hidden {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

.bonus-tabs {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-bottom:18px;
}

.bonus-tabs label {
  display:grid;
  place-items:center;
  min-height:54px;
  padding:11px 15px;
  border:1px solid rgba(112,65,88,.15);
  border-radius:999px;
  background:rgba(255,255,255,.84);
  font-size:.82rem;
  font-weight:850;
  text-align:center;
  cursor:pointer;
  transition:transform .2s ease,background .2s ease;
}

.bonus-tabs label:hover {
  transform:translateY(-1px);
}

#show-bonus-welcome:checked~.bonus-tabs label[for="show-bonus-welcome"],
#show-bonus-cashback:checked~.bonus-tabs label[for="show-bonus-cashback"],
#show-bonus-coins:checked~.bonus-tabs label[for="show-bonus-coins"],
#show-bonus-rules:checked~.bonus-tabs label[for="show-bonus-rules"] {
  color:#fff;
  background:linear-gradient(110deg,#a94f67,#e38958);
  box-shadow:0 8px 22px rgba(150,70,90,.2);
}

.bonus-panel {
  display:none;
  overflow:hidden;
  border:1px solid rgba(112,65,88,.16);
  border-radius:28px;
  background:rgba(255,255,255,.76);
  box-shadow:0 18px 48px rgba(60,42,75,.09);
}

#show-bonus-welcome:checked~.bonus-panels .bonus-panel--welcome,
#show-bonus-cashback:checked~.bonus-panels .bonus-panel--cashback,
#show-bonus-coins:checked~.bonus-panels .bonus-panel--coins,
#show-bonus-rules:checked~.bonus-panels .bonus-panel--rules {
  display:block;
}

.bonus-panel__heading {
  padding:27px 31px 23px;
  color:#fff;
  background:linear-gradient(115deg,#472b5d,#9b5265 62%,#c3794c);
}

.bonus-panel__heading p {
  margin:0 0 7px;
  color:#ffd791;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.15em;
}

.bonus-panel__heading h3 {
  margin:0 0 9px;
  font-size:clamp(1.75rem,2.7vw,2.8rem);
  line-height:1;
  letter-spacing:-.03em;
}

.bonus-panel__heading span {
  display:block;
  max-width:1180px;
  color:#f3e8ed;
  font-size:.88rem;
  line-height:1.55;
}

.bonus-grid {
  display:grid;
  gap:13px;
  align-items:start;
  padding:18px;
}

.bonus-grid--four {
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.bonus-grid--three {
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.bonus-card {
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:18px 16px 0;
  border:1px solid var(--bonus-line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 20px rgba(68,42,64,.055);
}

.bonus-card__tag {
  align-self:flex-start;
  margin-bottom:10px;
  padding:6px 9px;
  border-radius:999px;
  color:#7a4226;
  background:#fff0da;
  font-size:.64rem;
  font-weight:900;
  letter-spacing:.08em;
}

.bonus-card h4 {
  margin:0 0 10px;
  font-size:1.05rem;
  line-height:1.18;
}

.bonus-card__metric {
  display:block;
  margin:0 0 8px;
  padding:13px 12px;
  border-radius:13px;
  color:#fff;
  background:linear-gradient(115deg,#7d3e68,#c35d65 58%,#dd8752);
  font-size:clamp(1.3rem,2vw,2rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.035em;
  box-shadow:0 8px 18px rgba(136,60,91,.16);
}

.bonus-card__extra {
  display:block;
  min-height:1.5em;
  margin:0 0 10px;
  color:#a1582f;
  font-size:.78rem;
  line-height:1.35;
  text-transform:uppercase;
}

.bonus-card > p {
  margin:0 0 14px;
  color:var(--bonus-muted);
  font-size:.86rem;
  line-height:1.52;
}

.bonus-card__steps {
  display:grid;
  gap:7px;
  margin:0 0 14px;
}

.bonus-card__steps p {
  margin:0;
  color:var(--bonus-muted);
  font-size:.84rem;
  line-height:1.48;
}

.bonus-card__steps b {
  color:#27344c;
}

.bonus-card__steps strong {
  color:#9b405e;
}

.bonus-card details {
  margin-top:auto;
  border-top:1px solid var(--bonus-line);
}

.bonus-card summary {
  position:relative;
  padding:13px 25px 13px 0;
  color:#8e425f;
  font-size:.82rem;
  font-weight:850;
  line-height:1.25;
  list-style:none;
  cursor:pointer;
}

.bonus-card summary::-webkit-details-marker {
  display:none;
}

.bonus-card summary::after {
  content:'+';
  position:absolute;
  right:0;
  font-size:1rem;
}

.bonus-card details[open] summary::after {
  content:'−';
}

.bonus-card details p {
  margin:0;
  padding:0 0 15px;
  color:var(--bonus-muted);
  font-size:.84rem;
  line-height:1.52;
}

.bonus-primer {
  margin-top:22px;
  overflow:hidden;
  border:1px solid rgba(112,65,88,.16);
  border-radius:22px;
  background:rgba(255,255,255,.86);
  box-shadow:0 12px 32px rgba(60,42,75,.07);
}

.bonus-primer > summary {
  position:relative;
  display:flex;
  align-items:center;
  min-height:76px;
  padding:15px 60px 15px 25px;
  list-style:none;
  cursor:pointer;
}

.bonus-primer > summary::-webkit-details-marker {
  display:none;
}

.bonus-primer > summary::after {
  content:'+';
  position:absolute;
  right:25px;
  color:#95455f;
  font-size:1.35rem;
  font-weight:800;
}

.bonus-primer[open] > summary::after {
  content:'−';
}

.bonus-primer > summary span {
  display:grid;
  gap:4px;
}

.bonus-primer > summary small {
  color:#a1582f;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.13em;
}

.bonus-primer > summary strong {
  font-size:1rem;
}

.bonus-primer__content {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  padding:0 25px 25px;
}

.bonus-primer__content article {
  padding:16px;
  border-radius:15px;
  background:#faf4f6;
}

.bonus-primer__content h3 {
  margin:0 0 7px;
  font-size:.9rem;
}

.bonus-primer__content p {
  margin:0;
  color:var(--bonus-muted);
  font-size:.84rem;
  line-height:1.52;
}

@media (max-width:1100px) {
  .bonus-grid--four,.bonus-grid--three {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .bonus-start {
    grid-template-columns:1fr;
  }

  .bonus-start__notes {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}

@media (max-width:820px) {
  .bonus-guide {
    padding:24px 0 38px;
  }

  .bonus-guide__container {
    width:min(100% - 28px,1800px);
  }

  .bonus-hero {
    grid-template-columns:1fr;
    min-height:0;
  }

  .bonus-hero > div {
    padding:28px 22px;
  }

  .bonus-hero img {
    height:150px;
    min-height:0;
    mask-image:linear-gradient(180deg,transparent,#000 25%);
  }

  .bonus-start__notes,.bonus-grid--four,.bonus-grid--three,.bonus-primer__content {
    grid-template-columns:1fr;
  }

  .bonus-tabs {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }

  .bonus-panel__heading {
    padding:23px 20px 19px;
  }

  .bonus-grid {
    padding:12px;
  }

  .bonus-primer__content {
    padding:0 14px 14px;
  }

  .bonus-primer > summary {
    padding:14px 48px 14px 16px;
  }

  .bonus-primer > summary::after {
    right:16px;
  }

}

@media (prefers-reduced-motion:reduce) {
  .bonus-tabs label {
    transition:none;
  }

}

/* ================== END BONUSES GUIDE ================== */
/* ================= START VIP CLUB GUIDE ================= */
.vip-guide {
  --vip-ink:#17243d;
  --vip-muted:#68768e;
  --vip-line:#dfe2eb;
  scroll-margin-top:var(--header-height);
  padding:34px 0 54px;
  color:var(--vip-ink);
  background:radial-gradient(circle at 10% 5%,rgba(116,217,224,.24),transparent 30%),linear-gradient(135deg,#eef8f8,#edf1fa 58%,#f1edf9);
}

.vip-guide__container {
  width:min(1800px,calc(100% - 8.8%));
  margin:0 auto;
}

.vip-hero {
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(300px,.55fr);
  overflow:hidden;
  min-height:260px;
  border:1px solid rgba(56,82,126,.18);
  border-radius:28px;
  color:#fff;
  background:linear-gradient(115deg,#142b50,#194d69 58%,#73604a);
  box-shadow:0 20px 52px rgba(29,49,84,.18);
}

.vip-hero>div {
  align-self:center;
  padding:38px 42px;
}

.vip-eyebrow {
  margin:0 0 12px;
  color:#9ce7e4;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.16em;
}

.vip-hero h2 {
  margin:0 0 14px;
  font-size:clamp(2.15rem,4vw,4rem);
  line-height:.98;
  letter-spacing:-.045em;
}

.vip-hero p:last-child {
  max-width:1050px;
  margin:0;
  color:#e4edf3;
  font-size:.96rem;
  line-height:1.62;
}

.vip-hero img {
  width:100%;
  height:100%;
  min-height:260px;
  object-fit:cover;
  mask-image:linear-gradient(90deg,transparent,#000 28%);
}

.vip-join {
  display:grid;
  grid-template-columns:minmax(220px,.65fr) minmax(0,2.35fr);
  gap:16px;
  margin-top:18px;
  padding:18px;
  border:1px solid rgba(56,82,126,.14);
  border-radius:22px;
  background:rgba(255,255,255,.86);
  box-shadow:0 10px 28px rgba(29,49,84,.07);
}

.vip-join>div:first-child {
  align-self:center;
  padding:4px 8px;
}

.vip-join>div:first-child p,.vip-levels>header>p {
  margin:0 0 6px;
  color:#237d82;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.13em;
}

.vip-join h3 {
  margin:0;
  font-size:1.15rem;
  line-height:1.23;
}

.vip-join__steps {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
}

.vip-join__steps article {
  padding:13px;
  border-radius:14px;
  background:#f1f7f8;
}

.vip-join__steps span {
  display:block;
  margin-bottom:6px;
  color:#26868a;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.09em;
}

.vip-join__steps strong {
  display:block;
  margin-bottom:5px;
  font-size:.79rem;
  line-height:1.25;
}

.vip-join__steps p {
  margin:0;
  color:var(--vip-muted);
  font-size:.76rem;
  line-height:1.46;
}

.vip-levels {
  margin-top:18px;
  overflow:hidden;
  border:1px solid rgba(56,82,126,.15);
  border-radius:24px;
  background:rgba(255,255,255,.82);
  box-shadow:0 14px 36px rgba(29,49,84,.08);
}

.vip-levels>header {
  padding:23px 28px 19px;
}

.vip-levels>header h3 {
  margin:0 0 7px;
  font-size:clamp(1.25rem,2vw,1.85rem);
}

.vip-levels>header span {
  display:block;
  max-width:1200px;
  color:var(--vip-muted);
  font-size:.84rem;
  line-height:1.5;
}

.vip-levels__grid {
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:8px;
  padding:0 18px 18px;
}

.vip-levels__grid article {
  position:relative;
  min-width:0;
  padding:16px 13px;
  border:1px solid #dce3eb;
  border-radius:16px;
  background:#f8fafc;
}

.vip-levels__grid h4 {
  margin:0 0 8px;
  font-size:1rem;
}

.vip-levels__grid strong {
  display:block;
  min-height:2.7em;
  margin-bottom:7px;
  color:#235f6c;
  font-size:.74rem;
  line-height:1.35;
}

.vip-levels__grid p {
  margin:0;
  color:var(--vip-muted);
  font-size:.74rem;
  line-height:1.46;
}

.vip-levels__grid [data-level="bronze"] {
  background:linear-gradient(145deg,#f4e2d5,#c7855d);
  border-color:#c98761;
}

.vip-levels__grid [data-level="silver"] {
  background:linear-gradient(145deg,#f8fafc,#b9c6d2);
  border-color:#b9c5cf;
}

.vip-levels__grid [data-level="gold"] {
  background:linear-gradient(145deg,#fff7d8,#d7a72b);
  border-color:#d9ad3d;
}

.vip-levels__grid [data-level="platinum"] {
  background:linear-gradient(145deg,#f2fbfb,#85b7ba);
  border-color:#91b9bc;
}

.vip-levels__grid [data-level="black"] {
  color:#fff;
  background:#20283a;
  border-color:#20283a;
}

.vip-levels__grid [data-level="black"] p,.vip-levels__grid [data-level="black"] strong {
  color:#dce7ee;
}

.vip-levels__grid [data-level="supreme"] {
  color:#fff;
  background:linear-gradient(145deg,#143a56,#247f82);
  border-color:#247f82;
}

.vip-levels__grid [data-level="supreme"] p,.vip-levels__grid [data-level="supreme"] strong {
  color:#e1f2f2;
}

.vip-selector {
  min-width:0;
  margin:18px 0 0;
  padding:0;
  border:0;
}

.vip-selector>input {
  position:absolute;
  inline-size:1px;
  block-size:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}

.vip-visually-hidden {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

.vip-tabs {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-bottom:18px;
}

.vip-tabs label {
  display:grid;
  place-items:center;
  min-height:54px;
  padding:11px 15px;
  border:1px solid rgba(56,82,126,.15);
  border-radius:999px;
  background:rgba(255,255,255,.84);
  font-size:.82rem;
  font-weight:850;
  text-align:center;
  cursor:pointer;
}

#show-vip-privileges:checked~.vip-tabs label[for="show-vip-privileges"],
#show-vip-money:checked~.vip-tabs label[for="show-vip-money"],
#show-vip-service:checked~.vip-tabs label[for="show-vip-service"] {
  color:#fff;
  background:linear-gradient(110deg,#19466a,#1e8b8a);
  box-shadow:0 8px 22px rgba(27,99,111,.2);
}

.vip-panel {
  display:none;
  overflow:hidden;
  border:1px solid rgba(56,82,126,.16);
  border-radius:28px;
  background:rgba(255,255,255,.76);
  box-shadow:0 18px 48px rgba(29,49,84,.09);
}

#show-vip-privileges:checked~.vip-panels .vip-panel--privileges,
#show-vip-money:checked~.vip-panels .vip-panel--money,
#show-vip-service:checked~.vip-panels .vip-panel--service {
  display:block;
}

.vip-panel>header {
  padding:27px 31px 23px;
  color:#fff;
  background:linear-gradient(115deg,#183557,#1b6875 62%,#8d744c);
}

.vip-panel>header p {
  margin:0 0 7px;
  color:#a8ebe6;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.15em;
}

.vip-panel>header h3 {
  margin:0 0 9px;
  font-size:clamp(1.75rem,2.7vw,2.8rem);
  line-height:1;
  letter-spacing:-.03em;
}

.vip-panel>header span {
  color:#e3eef1;
  font-size:.88rem;
  line-height:1.55;
}

.vip-card-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:13px;
  align-items:start;
  padding:18px;
}

.vip-panel--money .vip-card-grid {
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.vip-card {
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:18px 16px 0;
  border:1px solid var(--vip-line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 20px rgba(29,49,84,.055);
}

.vip-card>b {
  align-self:flex-start;
  margin-bottom:10px;
  padding:6px 9px;
  border-radius:999px;
  color:#236a70;
  background:#e7f6f5;
  font-size:.64rem;
  letter-spacing:.08em;
}

.vip-card h4 {
  margin:0 0 9px;
  font-size:1.05rem;
}

.vip-card>p {
  margin:0 0 15px;
  color:var(--vip-muted);
  font-size:.86rem;
  line-height:1.52;
}

.vip-card details {
  margin-top:auto;
  border-top:1px solid var(--vip-line);
}

.vip-card summary {
  position:relative;
  padding:13px 25px 13px 0;
  color:#1f7379;
  font-size:.82rem;
  font-weight:850;
  list-style:none;
  cursor:pointer;
}

.vip-card summary::-webkit-details-marker {
  display:none;
}

.vip-card summary::after {
  content:'+';
  position:absolute;
  right:0;
}

.vip-card details[open] summary::after {
  content:'−';
}

.vip-card details p {
  margin:0;
  padding:0 0 15px;
  color:var(--vip-muted);
  font-size:.84rem;
  line-height:1.52;
}

.vip-card__number {
  display:block;
  margin:0 0 11px;
  padding:13px;
  border-radius:13px;
  color:#fff;
  background:linear-gradient(115deg,#183b60,#208589);
  font-size:clamp(1.5rem,2.3vw,2.25rem);
  font-weight:900;
  line-height:1;
  letter-spacing:-.035em;
}

.vip-card-grid--levels [data-level="bronze"] .vip-card__number {
  background:linear-gradient(115deg,#8f5537,#c78459);
}

.vip-card-grid--levels [data-level="silver"] .vip-card__number {
  color:#253248;
  background:linear-gradient(115deg,#d8e0e7,#9cacba);
}

.vip-card-grid--levels [data-level="gold"] .vip-card__number {
  color:#4d3705;
  background:linear-gradient(115deg,#f3cd61,#c59418);
}

.vip-card-grid--levels [data-level="platinum"] .vip-card__number {
  color:#173d46;
  background:linear-gradient(115deg,#c6e2e3,#77adb1);
}

.vip-card-grid--levels [data-level="black"] .vip-card__number {
  background:linear-gradient(115deg,#111827,#38445a);
}

.vip-card-grid--levels [data-level="supreme"] .vip-card__number {
  background:linear-gradient(115deg,#123a56,#16878a);
}

.vip-limit-explainer {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px;
  margin:0 18px 18px;
}

.vip-limit-explainer article {
  padding:20px;
  border:1px solid var(--vip-line);
  border-radius:18px;
  background:#f5f9fa;
}

.vip-limit-explainer span {
  display:block;
  margin-bottom:7px;
  color:#237a7d;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.11em;
}

.vip-limit-explainer h4 {
  margin:0 0 9px;
  font-size:1.05rem;
}

.vip-limit-explainer p {
  margin:0;
  color:var(--vip-muted);
  font-size:.86rem;
  line-height:1.55;
}

.vip-primer {
  margin-top:22px;
  overflow:hidden;
  border:1px solid rgba(56,82,126,.16);
  border-radius:22px;
  background:rgba(255,255,255,.86);
}

.vip-primer>summary {
  position:relative;
  min-height:76px;
  display:flex;
  align-items:center;
  padding:15px 60px 15px 25px;
  list-style:none;
  cursor:pointer;
}

.vip-primer>summary::-webkit-details-marker {
  display:none;
}

.vip-primer>summary::after {
  content:'+';
  position:absolute;
  right:25px;
  color:#1f7379;
  font-size:1.35rem;
  font-weight:800;
}

.vip-primer[open]>summary::after {
  content:'−';
}

.vip-primer>summary span {
  display:grid;
  gap:4px;
}

.vip-primer>summary small {
  color:#247a7d;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.13em;
}

.vip-primer>summary strong {
  font-size:1rem;
}

.vip-primer>div {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  padding:0 25px 25px;
}

.vip-primer article {
  padding:16px;
  border-radius:15px;
  background:#f1f7f8;
}

.vip-primer h3 {
  margin:0 0 7px;
  font-size:.9rem;
}

.vip-primer p {
  margin:0;
  color:var(--vip-muted);
  font-size:.84rem;
  line-height:1.52;
}

@media(max-width:1250px) {
  .vip-levels__grid {
    grid-template-columns:repeat(4,minmax(0,1fr))
  }

  .vip-card-grid,.vip-panel--money .vip-card-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }

  .vip-join {
    grid-template-columns:1fr
  }

  .vip-join__steps {
    grid-template-columns:repeat(3,minmax(0,1fr))
  }

}

@media(max-width:820px) {
  .vip-guide {
    padding:24px 0 38px
  }

  .vip-guide__container {
    width:min(100% - 28px,1800px)
  }

  .vip-hero {
    grid-template-columns:1fr;
    min-height:0
  }

  .vip-hero>div {
    padding:28px 22px
  }

  .vip-hero img {
    height:150px;
    min-height:0;
    mask-image:linear-gradient(180deg,transparent,#000 25%)
  }

  .vip-join__steps,.vip-levels__grid,.vip-card-grid,.vip-panel--money .vip-card-grid,.vip-primer>div,.vip-limit-explainer {
    grid-template-columns:1fr
  }

  .vip-tabs {
    grid-template-columns:1fr;
    gap:8px
  }

  .vip-panel>header {
    padding:23px 20px 19px
  }

  .vip-card-grid {
    padding:12px
  }

  .vip-limit-explainer {
    margin:0 12px 12px
  }

  .vip-primer>div {
    padding:0 14px 14px
  }

}

/* ================== END VIP CLUB GUIDE ================== */
/* ================= START CONTENT READABILITY ================= */
.slot-game__body > p:not(.slot-provider),
.live-game__body > p:not(.live-provider),
.other-game__body > p:last-of-type,
.sport-card__summary,
.sport-card__markets,
.tournament-card > p,
.tournament-card__facts p {
  font-size: 0.84rem;
  line-height: 1.5;
}.slot-game dd,
.live-game dd,
.other-game dd,
.sport-card dd,
.tournament-card details p,
.games-player-notes__content p,
.sports-responsibility p,
.sports-faq__list > details > p,
.tournament-primer__content p {
  font-size: 0.82rem;
  line-height: 1.52;
}

.tournament-entry strong {
  font-size: 0.78rem;
}

.tournament-entry span {
  font-size: 0.76rem;
  line-height: 1.48;
}

.slot-game summary,
.live-game summary,
.other-game summary,
.sport-card summary,
.tournament-card summary,
.sports-faq__list > details > summary {
  font-size: 0.8rem;
}

/* ================== END CONTENT READABILITY ================== */
/* ================= START PAYMENT METHODS ================= */
.payments-guide {
  --payments-ink: #f6fbff;
  --payments-muted: #b9cad8;
  --payments-line: rgba(202, 230, 239, 0.16);
  padding: 54px 0 68px;
  color: var(--payments-ink);
  background: radial-gradient(circle at 10% 10%, rgba(48, 191, 181, 0.18), transparent 28%), radial-gradient(circle at 90% 80%, rgba(116, 91, 220, 0.18), transparent 31%), linear-gradient(145deg, #0c2135 0%, #12324a 48%, #10283d 100%);
}

.payments-guide__container {
  width: min(100% - 88px, 1800px);
  margin-inline: auto;
}

.payments-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(620px, .85fr);
  gap: 32px;
  align-items: end;
  padding: 32px;
  border: 1px solid var(--payments-line);
  border-radius: 28px;
  background: rgba(8, 28, 44, .5);
  box-shadow: 0 24px 65px rgba(1, 11, 21, .24);
}

.payments-eyebrow {
  margin: 0 0 9px;
  color: #7de2d5;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.payments-hero h2 {
  margin: 0 0 13px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.payments-hero__copy > p:last-child {
  max-width: 780px;
  margin: 0;
  color: #d1dee8;
  font-size: .98rem;
  line-height: 1.6;
}

.payments-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payments-hero__facts article {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--payments-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .07);
}

.payments-hero__facts span {
  display: block;
  margin-bottom: 7px;
  color: #86ded5;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.payments-hero__facts strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.payments-hero__facts small {
  display: block;
  color: var(--payments-muted);
  font-size: .74rem;
  line-height: 1.4;
}

.payments-switcher {
  min-width: 0;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.payments-switcher > input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.payments-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.payments-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.payments-tabs label {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 18px;
  border: 1px solid var(--payments-line);
  border-radius: 999px;
  color: #d8e5ec;
  background: rgba(255, 255, 255, .065);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.payments-tabs label:hover {
  transform: translateY(-2px);
}

.payments-tabs label span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #9adbd4;
  background: rgba(120, 225, 213, .1);
  font-size: .62rem;
  letter-spacing: .1em;
}

#show-payment-deposits:checked ~ .payments-tabs label[for="show-payment-deposits"],
#show-payment-withdrawals:checked ~ .payments-tabs label[for="show-payment-withdrawals"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(110deg, #137ca7, #18a991);
  box-shadow: 0 12px 30px rgba(10, 174, 154, .18);
}

.payments-panel {
  display: none;
  overflow: hidden;
  border: 1px solid var(--payments-line);
  border-radius: 28px;
  background: rgba(8, 25, 40, .46);
  box-shadow: 0 22px 55px rgba(0, 10, 20, .22);
}

#show-payment-deposits:checked ~ .payments-panels .payments-panel--deposits,
#show-payment-withdrawals:checked ~ .payments-panels .payments-panel--withdrawals {
  display: block;
}

.payments-panel__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  gap: 28px;
  align-items: end;
  padding: 26px 30px 21px;
  background: linear-gradient(110deg, rgba(23, 104, 132, .52), rgba(21, 151, 136, .3));
}

.payments-panel__heading > div > p, .payments-crypto header p, .payment-limits > header p {
  margin: 0 0 6px;
  color: #7de2d5;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.payments-panel__heading h3, .payments-crypto header h3, .payment-limits > header h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.payments-panel__heading > p {
  margin: 0;
  color: #d6e3ea;
  font-size: .91rem;
  line-height: 1.55;
}

.payments-panel__heading > p strong {
  color: #fff;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
  padding: 18px;
}

.payment-method {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--payments-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .07);
}

.payment-method__brand {
  display: grid;
  place-items: center;
  height: 58px;
  margin-bottom: 12px;
  padding: 9px 13px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a4059, #1c6871);
}

.payment-method__brand img {
  display: block;
  max-width: 126px;
  width: 100%;
  max-height: 42px;
  height: 100%;
  object-fit: contain;
}

.payment-method__brand img[src$="apple-pay.svg"], .withdrawal-route__icons img[src$="apple-pay.svg"] {
  filter: invert(1);
}

.payment-method__brand--wordmark {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.025em;
}

.payment-method h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.payment-method > p {
  margin: 0 0 13px;
  color: var(--payments-muted);
  font-size: .82rem;
  line-height: 1.4;
}

.payment-method dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.payment-method dl div {
  min-width: 0;
  padding: 8px;
  border-radius: 9px;
  background: rgba(4, 21, 34, .42);
}

.payment-method dt {
  margin-bottom: 3px;
  color: #8fa8b9;
  font-size: .61rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.payment-method dd {
  margin: 0;
  color: #fff;
  font-size: .79rem;
  font-weight: 850;
}

.payments-crypto {
  margin: 0 18px 18px;
  padding: 20px;
  border: 1px solid var(--payments-line);
  border-radius: 21px;
  background: rgba(3, 18, 30, .45);
}

.payments-crypto > header {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 15px;
}

.payments-crypto > header > span {
  max-width: 560px;
  color: var(--payments-muted);
  font-size: .87rem;
  line-height: 1.5;
  text-align: right;
}

.payment-crypto-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.payment-crypto-grid article {
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .075);
}

.payment-crypto-grid img, .payments-crypto__more img {
  flex: 0 0 auto;
  width: 88px;
  height: 44px;
  object-fit: contain;
}

.payment-crypto-grid h4 {
  margin: 0 0 3px;
  font-size: .84rem;
}

.payment-crypto-grid strong {
  color: #87e3d8;
  font-size: .79rem;
}

.payments-crypto__more {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--payments-line);
}

.payments-crypto__more > span {
  margin-right: auto;
  color: var(--payments-muted);
  font-size: .82rem;
}

.payments-crypto__more b {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  font-size: .76rem;
}

.payments-crypto__more img {
  width: 29px;
  height: 29px;
}

.payment-howto {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding: 0 18px 18px;
}

.payment-howto article {
  padding: 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .06);
}

.payment-howto span {
  display: block;
  margin-bottom: 7px;
  color: #7de2d5;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.payment-howto p {
  margin: 0;
  color: #cedce5;
  font-size: .85rem;
  line-height: 1.52;
}

.withdrawal-route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
  padding: 18px;
}

.withdrawal-route-grid article {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--payments-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .07);
}.withdrawal-route__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  min-height: 56px;
  margin-bottom: 12px;
}

.withdrawal-route__icons img {
  max-width: 92px;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.withdrawal-route__icons--wallets img {
  max-width: 76px;
  height: 32px;
}

.withdrawal-route__icons--crypto {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-height: 88px;
}

.withdrawal-route__icons--crypto img {
  justify-self: center;
  width: 82px;
  height: 36px;
}

.withdrawal-route-grid article > p {
  margin: 0 0 5px;
  color: #7de2d5;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.withdrawal-route-grid h4 {
  min-height: 2.5em;
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.withdrawal-route-grid strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: .91rem;
}

.withdrawal-route-grid span {
  display: block;
  color: var(--payments-muted);
  font-size: .82rem;
  line-height: 1.47;
}

.withdrawal-timing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 0 18px 18px;
}

.withdrawal-timing article {
  padding: 16px 18px;
  border: 1px solid var(--payments-line);
  border-radius: 15px;
  background: rgba(26, 91, 107, .28);
}

.withdrawal-timing span {
  display: block;
  margin-bottom: 5px;
  color: #7de2d5;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.withdrawal-timing strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1rem;
}

.withdrawal-timing p {
  margin: 0;
  color: var(--payments-muted);
  font-size: .83rem;
  line-height: 1.48;
}

.payment-limits {
  margin: 0 18px 18px;
  overflow: hidden;
  border: 1px solid var(--payments-line);
  border-radius: 21px;
  background: rgba(3, 18, 30, .45);
}

.payment-limits > header {
  padding: 20px 20px 15px;
}

.payment-limits > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  padding: 0 14px 14px;
}

.payment-limits article {
  padding: 17px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .075);
}

.payment-limits article span {
  display: block;
  margin-bottom: 8px;
  color: #7de2d5;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.payment-limits article strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.payment-limits article p {
  margin: 0;
  color: var(--payments-muted);
  font-size: .84rem;
  line-height: 1.48;
}

.payments-notes__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 5px 24px;
  margin-top: 22px;
  padding: 0 4px;
}

.payments-notes__heading p {
  grid-column: 1 / -1;
  margin: 0;
  color: #7de2d5;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.payments-notes__heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.payments-notes__heading span {
  color: var(--payments-muted);
  font-size: .84rem;
}

.payments-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  align-items: start;
  margin-top: 12px;
}

.payments-notes details {
  overflow: hidden;
  border: 1px solid var(--payments-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .065);
}

.payments-notes summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 14px 48px 14px 17px;
  list-style: none;
  cursor: pointer;
}

.payments-notes summary::-webkit-details-marker {
  display: none;
}

.payments-notes summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  color: #7de2d5;
  font-size: 1.3rem;
  font-weight: 900;
}

.payments-notes details[open] summary::after {
  content: '−';
}

.payments-notes summary span {
  display: grid;
  gap: 5px;
}

.payments-notes summary small {
  color: #7de2d5;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.payments-notes summary strong {
  font-size: .91rem;
  line-height: 1.35;
}

.payments-notes details > p {
  margin: 0;
  padding: 0 17px 18px;
  color: var(--payments-muted);
  font-size: .86rem;
  line-height: 1.55;
}

@media (max-width: 1300px) {
  .payments-hero {
    grid-template-columns: 1fr;
  }

  .payment-method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .payment-crypto-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .withdrawal-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .payments-guide {
    padding: 34px 0 46px;
  }

  .payments-guide__container {
    width: min(100% - 28px, 1800px);
  }

  .payments-hero {
    padding: 23px;
    border-radius: 22px;
  }

  .payments-hero__facts, .payments-notes, .payment-limits > div, .withdrawal-timing {
    grid-template-columns: 1fr;
  }

  .payments-notes__heading {
    grid-template-columns: 1fr;
  }

  .payments-panel__heading {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px;
  }

  .payment-method-grid, .withdrawal-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .payments-crypto {
    margin: 0 12px 12px;
    padding: 15px;
  }

  .payments-crypto > header {
    display: block;
  }

  .payments-crypto > header > span {
    display: block;
    margin-top: 9px;
    text-align: left;
  }

  .payment-howto {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 12px 12px;
  }

  .payment-limits {
    margin: 0 12px 12px;
  }

  .withdrawal-timing {
    margin: 0 12px 12px;
  }

}

@media (max-width: 560px) {
  .payments-tabs {
    gap: 8px;
  }

  .payments-tabs label {
    flex-direction: column;
    gap: 5px;
    min-height: 66px;
    font-size: .91rem;
  }

  .payments-hero__facts, .payment-method-grid, .payment-crypto-grid, .withdrawal-route-grid, .payment-howto {
    grid-template-columns: 1fr;
  }

  .payment-method {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 12px;
  }

  .payment-method__brand {
    grid-row: 1 / 4;
    height: 100%;
    min-height: 82px;
    margin: 0;
  }

  .payment-method h4 {
    align-self: end;
  }

  .payment-method dl {
    grid-column: 2;
  }

}

/* ================== END PAYMENT METHODS ================== */
/* ================= START ACCOUNT AND SECURITY ================= */
.security-guide {
  --security-ink: #13253b;
  --security-muted: #61758a;
  --security-line: #d7e1e8;
  padding: 60px 0 72px;
  color: var(--security-ink);
  background: radial-gradient(circle at 8% 12%, rgba(63, 192, 171, .13), transparent 30%), radial-gradient(circle at 94% 82%, rgba(99, 112, 215, .12), transparent 31%), #edf3f5;
}

.security-guide__container {
  width: min(100% - 88px, 1800px);
  margin-inline: auto;
}

.security-hero {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(640px, .88fr);
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(120deg, #112b45 0%, #185f71 58%, #267f77 100%);
  box-shadow: 0 25px 65px rgba(27, 51, 71, .18);
}

.security-hero__copy {
  padding: 38px 36px;
}

.security-hero__copy > p {
  margin: 0 0 10px;
  color: #8ce4d4;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.security-hero h2 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.security-hero__copy > span {
  display: block;
  max-width: 830px;
  color: #d9e8ec;
  font-size: .98rem;
  line-height: 1.62;
}

.security-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, .13);
}

.security-hero__metrics article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px 20px;
  background: rgba(7, 31, 48, .48);
}

.security-hero__metrics small {
  margin-bottom: 8px;
  color: #8ce4d4;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.security-hero__metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.06;
}

.security-hero__metrics span {
  color: #c5d6df;
  font-size: .83rem;
  line-height: 1.48;
}

.security-nonnegotiables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  margin-top: 18px;
}

.security-nonnegotiables article {
  position: relative;
  padding: 19px 20px 19px 25px;
  border: 1px solid var(--security-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 10px 24px rgba(29, 57, 79, .06);
}

.security-nonnegotiables article::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 12px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(#1c9b8c, #2784ae);
}

.security-nonnegotiables b {
  display: block;
  margin-bottom: 7px;
  color: #157b75;
  font-size: .68rem;
  letter-spacing: .1em;
}

.security-nonnegotiables p {
  margin: 0;
  color: var(--security-muted);
  font-size: .87rem;
  line-height: 1.52;
}

.security-switcher {
  min-width: 0;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.security-switcher > input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.security-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.security-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 17px;
}

.security-tabs label {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid #cfdbe3;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  font-size: .91rem;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.security-tabs label:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 64, 86, .09);
}

#show-security-access:checked ~ .security-tabs label[for="show-security-access"],
#show-security-verification:checked ~ .security-tabs label[for="show-security-verification"],
#show-security-response:checked ~ .security-tabs label[for="show-security-response"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(110deg, #163d5d, #1a9587);
  box-shadow: 0 12px 28px rgba(25, 105, 112, .2);
}

.security-panel {
  display: none;
  overflow: hidden;
  border: 1px solid #d4dfe6;
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 52px rgba(29, 57, 79, .09);
}

#show-security-access:checked ~ .security-panels .security-panel--access,
#show-security-verification:checked ~ .security-panels .security-panel--verification,
#show-security-response:checked ~ .security-panels .security-panel--response {
  display: block;
}

.security-panel > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: 28px;
  align-items: end;
  padding: 27px 30px 23px;
  color: #fff;
  background: #142e47;
}

.security-panel > header p {
  margin: 0 0 7px;
  color: #78ded0;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.security-panel > header h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.7vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.security-panel > header > span {
  color: #c8d8e1;
  font-size: .89rem;
  line-height: 1.56;
}

.security-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.security-control-grid article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 19px;
  border: 1px solid var(--security-line);
  border-radius: 17px;
  background: #fff;
}

.security-control-grid article > b {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #13756f;
  background: #e5f5f2;
  font-size: .63rem;
  letter-spacing: .09em;
}

.security-control-grid h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.security-control-grid p {
  margin: 0 0 15px;
  color: var(--security-muted);
  font-size: .9rem;
  line-height: 1.56;
}

.security-control-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--security-line);
  color: #1b6f75;
  font-size: .82rem;
}

.security-kyc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, .7fr);
  gap: 14px;
  padding: 18px;
}

.security-kyc-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.security-kyc-flow article {
  padding: 20px;
  border: 1px solid var(--security-line);
  border-radius: 17px;
  background: #fff;
}

.security-kyc-flow span, .security-document-card > p {
  display: block;
  margin: 0 0 8px;
  color: #168076;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.security-kyc-flow h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.security-kyc-flow p {
  margin: 0;
  color: var(--security-muted);
  font-size: .9rem;
  line-height: 1.56;
}

.security-document-card {
  padding: 23px;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(145deg, #183955, #1b756f);
}

.security-document-card > strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.security-document-card > span {
  display: block;
  margin-bottom: 8px;
  color: #b9dedb;
  font-size: .82rem;
}

.security-document-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 19px;
}

.security-document-card > div b {
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  font-size: .7rem;
}

.security-document-card ul {
  margin: 0;
  padding-left: 19px;
  color: #d5e6e8;
  font-size: .87rem;
  line-height: 1.7;
}

.security-response-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  padding: 18px;
}

.security-response-grid article {
  padding: 20px;
  border: 1px solid var(--security-line);
  border-radius: 17px;
  background: #fff;
}

.security-response-grid span {
  display: block;
  margin-bottom: 8px;
  color: #b45343;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.security-response-grid h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.security-response-grid p {
  margin: 0;
  color: var(--security-muted);
  font-size: .9rem;
  line-height: 1.56;
}

.security-response-order {
  display: grid;
  grid-template-columns: auto 1fr 28px auto 1fr 28px auto 1fr 28px auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 0 18px 18px;
  padding: 16px 18px;
  border-radius: 16px;
  color: #fff;
  background: #172f47;
}

.security-response-order b {
  color: #84ded2;
  font-size: .7rem;
  letter-spacing: .09em;
}

.security-response-order span {
  color: #d1dfe6;
  font-size: .8rem;
  line-height: 1.35;
}

.security-response-order i {
  height: 1px;
  background: rgba(255, 255, 255, .25);
}

.security-details__heading {
  margin-top: 24px;
}

.security-details__heading p {
  margin: 0 0 6px;
  color: #168076;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.security-details__heading h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.15rem);
}

.security-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  align-items: start;
  margin-top: 13px;
}

.security-details details {
  overflow: hidden;
  border: 1px solid var(--security-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
}

.security-details summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 14px 50px 14px 18px;
  list-style: none;
  cursor: pointer;
}

.security-details summary::-webkit-details-marker {
  display: none;
}

.security-details summary::after {
  content: '+';
  position: absolute;
  right: 19px;
  color: #168076;
  font-size: 1.3rem;
  font-weight: 900;
}

.security-details details[open] summary::after {
  content: '−';
}

.security-details summary span {
  display: grid;
  gap: 5px;
}

.security-details summary small {
  color: #168076;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.security-details summary strong {
  font-size: .94rem;
}

.security-details details > p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--security-muted);
  font-size: .89rem;
  line-height: 1.57;
}

@media (max-width: 1280px) {
  .security-hero {
    grid-template-columns: 1fr;
  }

  .security-control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-response-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-response-order {
    grid-template-columns: auto 1fr;
  }

  .security-response-order i {
    display: none;
  }

}

@media (max-width: 860px) {
  .security-guide {
    padding: 38px 0 48px;
  }

  .security-guide__container {
    width: min(100% - 28px, 1800px);
  }

  .security-hero {
    border-radius: 23px;
  }

  .security-hero__copy {
    padding: 27px 22px;
  }

  .security-hero__metrics,
  .security-nonnegotiables,
  .security-tabs,
  .security-panel > header,
  .security-control-grid,
  .security-kyc-layout,
  .security-kyc-flow,
  .security-response-grid,
  .security-details {
    grid-template-columns: 1fr;
  }

  .security-tabs {
    gap: 8px;
  }

  .security-panel > header {
    gap: 12px;
    padding: 23px 20px;
  }

  .security-control-grid, .security-kyc-layout, .security-response-grid {
    padding: 12px;
  }

  .security-response-order {
    margin: 0 12px 12px;
  }

}

/* ================== END ACCOUNT AND SECURITY ================== */
/* ================= START MOBILE CASINO ================= */
.mobile-guide {
  --mobile-ink: #1b243a;
  --mobile-muted: #68758c;
  --mobile-line: #d9dce8;
  padding: 62px 0 74px;
  color: var(--mobile-ink);
  background: radial-gradient(circle at 11% 10%, rgba(255, 174, 91, .2), transparent 29%), radial-gradient(circle at 91% 85%, rgba(111, 81, 204, .14), transparent 32%), #f4f1f5;
}

.mobile-guide__container {
  width: min(100% - 88px, 1800px);
  margin-inline: auto;
}

.mobile-hero {
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(116deg, #182753 0%, #4c3474 58%, #b2674c 100%);
  box-shadow: 0 26px 68px rgba(40, 31, 67, .2);
}

.mobile-hero__copy {
  padding: 38px 38px 31px;
}

.mobile-hero__copy > p {
  margin: 0 0 10px;
  color: #ffd184;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.mobile-hero h2 {
  margin: 0 0 14px;
  font-size: clamp(2.45rem, 4.3vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.mobile-hero__copy > span {
  display: block;
  max-width: 1160px;
  color: #e8e4ef;
  font-size: 1rem;
  line-height: 1.62;
}

.mobile-platform-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, .14);
}

.mobile-platform-strip article {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 20px 23px;
  background: rgba(19, 24, 56, .55);
}

.mobile-platform-strip b {
  color: #ffd184;
  font-size: .69rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mobile-platform-strip strong {
  font-size: 1.08rem;
}

.mobile-platform-strip span {
  color: #cfc9db;
  font-size: .84rem;
  line-height: 1.42;
}

.mobile-showcase {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(20px, 3vw, 54px);
  align-items: center;
  margin-top: 19px;
  padding: clamp(24px, 3vw, 52px);
  border: 1px solid var(--mobile-line);
  border-radius: 28px;
  background: linear-gradient(125deg, rgba(255,255,255,.92), rgba(245,242,250,.76));
  box-shadow: 0 22px 52px rgba(34, 29, 61, .08);
}

.mobile-showcase__intro {
  align-self: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.mobile-showcase__intro > p {
  margin: 0 0 8px;
  color: #8a5a32;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.mobile-showcase__intro h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.mobile-showcase__intro span {
  color: var(--mobile-muted);
  font-size: .92rem;
  line-height: 1.58;
}

.mobile-device-art {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  background: transparent;
}

.mobile-device-art::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 12% 0 8% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 87, 195, .2), rgba(26, 158, 160, .08) 48%, transparent 72%);
  filter: blur(16px);
}

.mobile-device-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 24px 24px rgba(35, 25, 60, .18));
}

.mobile-device-art figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  margin-top: -8px;
  color: var(--mobile-ink);
}

.mobile-device-art figcaption span {
  color: #8a5a32;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.mobile-device-art figcaption strong {
  font-size: .86rem;
  text-align: right;
}

.mobile-switcher {
  min-width: 0;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.mobile-switcher > input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mobile-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 17px;
}

.mobile-tabs label {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid var(--mobile-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  font-size: .92rem;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.mobile-tabs label:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(54, 43, 82, .09);
}

#show-mobile-ios:checked ~ .mobile-tabs label[for="show-mobile-ios"],
#show-mobile-android:checked ~ .mobile-tabs label[for="show-mobile-android"],
#show-mobile-desktop:checked ~ .mobile-tabs label[for="show-mobile-desktop"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(110deg, #283e83, #9b5268 62%, #d4804f);
  box-shadow: 0 12px 28px rgba(91, 57, 103, .22);
}

.mobile-panel {
  display: none;
  overflow: hidden;
  border: 1px solid var(--mobile-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 20px 52px rgba(54, 43, 82, .09);
}

#show-mobile-ios:checked ~ .mobile-panels .mobile-panel--ios,
#show-mobile-android:checked ~ .mobile-panels .mobile-panel--android,
#show-mobile-desktop:checked ~ .mobile-panels .mobile-panel--desktop {
  display: block;
}

.mobile-panel > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: end;
  padding: 27px 30px 23px;
  color: #fff;
  background: linear-gradient(110deg, #172750, #4f386f);
}

.mobile-panel > header p {
  margin: 0 0 7px;
  color: #ffd184;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.mobile-panel > header h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.mobile-panel > header > span {
  color: #d7d4e4;
  font-size: .9rem;
  line-height: 1.56;
}

.mobile-install-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  padding: 18px;
}

.mobile-install-flow article {
  position: relative;
  padding: 20px;
  border: 1px solid var(--mobile-line);
  border-radius: 17px;
  background: #fff;
}

.mobile-install-flow article:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 19px;
  right: -11px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: #805077;
  font-size: .75rem;
  font-weight: 900;
}

.mobile-install-flow b {
  display: block;
  margin-bottom: 9px;
  color: #9b5d37;
  font-size: .65rem;
  letter-spacing: .1em;
}

.mobile-install-flow h4 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.mobile-install-flow p {
  margin: 0;
  color: var(--mobile-muted);
  font-size: .9rem;
  line-height: 1.55;
}

.mobile-platform-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: center;
  margin: 0 18px 18px;
  padding: 16px 19px;
  border-radius: 15px;
  color: #fff;
  background: #202b52;
}

.mobile-platform-note strong {
  color: #ffd184;
  font-size: .86rem;
}

.mobile-platform-note span {
  color: #d5d5e1;
  font-size: .86rem;
  line-height: 1.5;
}

.mobile-feature-set {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--mobile-line);
  border-radius: 27px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 45px rgba(54, 43, 82, .08);
}

.mobile-feature-set > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 24px;
  align-items: end;
  padding: 25px 28px 19px;
}

.mobile-feature-set > header > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #935c38;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.mobile-feature-set > header h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
}

.mobile-feature-set > header > span {
  color: var(--mobile-muted);
  font-size: .86rem;
}

.mobile-feature-set > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}

.mobile-feature-set article {
  min-width: 0;
  padding: 17px;
  border-radius: 16px;
  background: #f1edf3;
}

.mobile-feature-set article > span {
  display: block;
  margin-bottom: 8px;
  color: #8c4f70;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.mobile-feature-set h4 {
  margin: 0 0 8px;
  font-size: .98rem;
}

.mobile-feature-set article > p {
  margin: 0;
  color: var(--mobile-muted);
  font-size: .85rem;
  line-height: 1.52;
}

.mobile-advice__heading {
  margin-top: 24px;
}

.mobile-advice__heading p {
  margin: 0 0 6px;
  color: #935c38;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.mobile-advice__heading h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.15rem);
}

.mobile-advice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  align-items: start;
  margin-top: 13px;
}

.mobile-advice details {
  overflow: hidden;
  border: 1px solid var(--mobile-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
}

.mobile-advice summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 14px 50px 14px 18px;
  list-style: none;
  cursor: pointer;
}

.mobile-advice summary::-webkit-details-marker {
  display: none;
}

.mobile-advice summary::after {
  content: '+';
  position: absolute;
  right: 19px;
  color: #8c4f70;
  font-size: 1.3rem;
  font-weight: 900;
}

.mobile-advice details[open] summary::after {
  content: '−';
}

.mobile-advice summary span {
  display: grid;
  gap: 5px;
}

.mobile-advice summary small {
  color: #935c38;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.mobile-advice summary strong {
  font-size: .94rem;
}

.mobile-advice details > p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--mobile-muted);
  font-size: .89rem;
  line-height: 1.57;
}

@media (max-width: 1300px) {
  .mobile-showcase {
    grid-template-columns: minmax(280px, .75fr) minmax(430px, 1.25fr);
  }

  .mobile-feature-set > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .mobile-guide {
    padding: 38px 0 50px;
  }

  .mobile-guide__container {
    width: min(100% - 28px, 1800px);
  }

  .mobile-hero {
    border-radius: 23px;
  }

  .mobile-hero__copy {
    padding: 28px 22px 24px;
  }.mobile-platform-strip,
.mobile-showcase,
.mobile-tabs,
.mobile-panel > header,
.mobile-install-flow,
.mobile-feature-set > div,
.mobile-advice {
    grid-template-columns: 1fr;
  }

  .mobile-showcase {
    gap: 24px;
    padding: 24px 20px;
  }

  .mobile-device-art img {
    max-height: none;
    object-position: center;
  }

  .mobile-device-art figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-device-art figcaption strong {
    text-align: left;
  }

  .mobile-tabs {
    gap: 8px;
  }

  .mobile-panel > header {
    gap: 12px;
    padding: 23px 20px;
  }

  .mobile-install-flow {
    padding: 12px;
  }

  .mobile-install-flow article:not(:last-child)::after {
    content: '↓';
    top: auto;
    right: 18px;
    bottom: -11px;
  }

  .mobile-feature-set > header {
    grid-template-columns: 1fr;
  }

  .mobile-platform-note {
    grid-template-columns: 1fr;
    margin: 0 12px 12px;
  }

}

/* ================== END MOBILE CASINO ================== */
/* ==================== START ABOUT ==================== */
.about-guide {
  --about-ink: #17233f;
  --about-muted: #687690;
  --about-line: rgba(41, 55, 91, .14);
  padding: 62px 0 72px;
  color: var(--about-ink);
  background: radial-gradient(circle at 8% 12%, rgba(255, 194, 111, .2), transparent 28%), radial-gradient(circle at 92% 38%, rgba(116, 92, 214, .16), transparent 34%), linear-gradient(145deg, #f8f4ed 0%, #f4f5fb 48%, #e9eef9 100%);
}

.about-guide__container {
  width: min(100% - 88px, 1800px);
  margin-inline: auto;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(118deg, #15264f 0%, #48316f 57%, #a25e49 100%);
  box-shadow: 0 28px 70px rgba(36, 32, 72, .2);
}

.about-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  padding: clamp(34px, 5vw, 76px);
}

.about-intro__copy > p, .about-intro__promise > p, .about-experience > header > p, .about-account__copy > p, .about-principles > header > p {
  margin: 0 0 10px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.about-intro__copy > p {
  color: #ffd17f;
}

.about-intro h2 {
  max-width: 980px;
  margin: 0 0 20px;
  font-size: clamp(2.65rem, 4.6vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.about-intro__copy > span {
  display: block;
  max-width: 980px;
  color: #e6e1ee;
  font-size: 1.04rem;
  line-height: 1.68;
}

.about-intro__promise {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 18px;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 24px;
  background: rgba(12, 24, 55, .42);
  backdrop-filter: blur(16px);
}

.about-intro__promise > p {
  color: #72ded2;
}

.about-intro__promise h3 {
  margin: 0 0 13px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.about-intro__promise > span {
  color: #d8d8e5;
  font-size: .98rem;
  line-height: 1.62;
}

.about-intro__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-intro__signals b {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.07);
  font-size: .65rem;
  letter-spacing: .1em;
}

.about-experience {
  margin-top: 22px;
  padding: clamp(27px, 3.2vw, 48px);
  border: 1px solid var(--about-line);
  border-radius: 30px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 20px 54px rgba(41, 48, 84, .09);
}

.about-experience > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 7px 40px;
  align-items: end;
  margin-bottom: 25px;
}

.about-experience > header > p {
  grid-column: 1 / -1;
  color: #8a5736;
}

.about-experience > header h3, .about-account h3, .about-principles h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.about-experience > header > span {
  color: var(--about-muted);
  font-size: .98rem;
  line-height: 1.58;
}

.about-experience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.about-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--about-line);
  border-radius: 21px;
  background: #fff;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--about-accent, #7b62d3);
}

.about-card > span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--about-accent-dark, #554098);
  background: var(--about-tint, #eee9ff);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.about-card h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.about-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: .96rem;
  line-height: 1.62;
}

.about-card--live {
  --about-accent: #dc655b;
  --about-accent-dark: #934139;
  --about-tint: #ffebe8;
}

.about-card--sport {
  --about-accent: #199992;
  --about-accent-dark: #0c746f;
  --about-tint: #e0f5f2;
}

.about-card--compete {
  --about-accent: #d09a3d;
  --about-accent-dark: #8b621c;
  --about-tint: #fff1d2;
}

.about-card--reward {
  --about-accent: #b54f73;
  --about-accent-dark: #8c3655;
  --about-tint: #fbe7ee;
}

.about-card--vip {
  --about-accent: #334e78;
  --about-accent-dark: #243c62;
  --about-tint: #e5ebf4;
}

.about-account {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(32px, 4vw, 64px);
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(125deg, #10263e, #174e65 62%, #1c726e);
  box-shadow: 0 24px 62px rgba(24, 49, 71, .17);
}

.about-account__copy > p {
  color: #77e4d8;
}

.about-account__copy > span {
  display: block;
  margin-top: 18px;
  color: #d6e4e8;
  font-size: 1rem;
  line-height: 1.68;
}

.about-account__features {
  display: grid;
  gap: 11px;
}

.about-account__features article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}

.about-account__features article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #ffd180;
  background: rgba(255,255,255,.1);
  font-size: 1.35rem;
  font-weight: 800;
}

.about-account__features h4 {
  margin: 0 0 6px;
  font-size: 1.06rem;
}

.about-account__features p {
  margin: 0;
  color: #d0e0e5;
  font-size: .94rem;
  line-height: 1.56;
}

.about-principles {
  margin-top: 22px;
  padding: clamp(28px, 3.5vw, 50px);
  border: 1px solid var(--about-line);
  border-radius: 30px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 48px rgba(41,48,84,.08);
}

.about-principles > header > p {
  color: #8a5736;
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 24px;
}

.about-principles__grid article {
  padding: 23px;
  border-left: 4px solid #6f58bb;
  border-radius: 0 17px 17px 0;
  background: #f1eef7;
}

.about-principles__grid h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.about-principles__grid p {
  margin: 0;
  color: var(--about-muted);
  font-size: .95rem;
  line-height: 1.6;
}

.about-principles__note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 15px;
  color: #596680;
  background: #e8edf5;
  font-size: .91rem;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro__copy {
    min-height: auto;
  }

  .about-intro__promise {
    margin-top: 0;
  }

  .about-experience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .about-guide {
    padding: 38px 0 48px;
  }

  .about-guide__container {
    width: min(100% - 28px, 1800px);
  }

  .about-intro, .about-experience, .about-account, .about-principles {
    border-radius: 23px;
  }

  .about-intro__copy {
    padding: 32px 22px;
  }

  .about-intro__promise {
    margin: 0 12px 12px;
    padding: 24px 20px;
  }

  .about-experience > header, .about-account {
    grid-template-columns: 1fr;
  }

  .about-experience > header {
    align-items: start;
  }

}

@media (max-width: 620px) {
  .about-experience, .about-account, .about-principles {
    padding: 24px 18px;
  }

  .about-experience__grid, .about-principles__grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: auto;
  }

  .about-account__features article {
    grid-template-columns: 40px 1fr;
    gap: 13px;
    padding: 17px;
  }

  .about-account__features article > span {
    width: 40px;
    height: 40px;
  }

}

/* ===================== END ABOUT ===================== */
@media print {
  .sports-guide {
    padding: 20px 0;
    color: #000;
    background: #fff;
  }

  .sports-category-button {
    display: none;
  }.sports-panel,
#show-sports-australia:checked ~ .sports-panels .sports-panel,
#show-sports-more:checked ~ .sports-panels .sports-panel,
#show-sports-esports:checked ~ .sports-panels .sports-panel {
    display: block;
    break-inside: auto;
    margin-bottom: 20px;
    box-shadow: none;
  }

  .sport-card {
    break-inside: avoid;
    box-shadow: none;
  }

}

/* ===== END SPORTS AND E-SPORTS SECTION ===== */

/* ===== SIMPLE LEGAL PAGE FIX ===== */

.site-header--simple .header-inner {
  justify-content: space-between;
}

.site-header--simple .brand {
  margin-right: auto;
}

.site-footer--legal .footer-inner {
  grid-template-columns: 1fr;
}

.site-footer--legal .footer-brand-column {
  max-width: 760px;
}

.legal-links-text {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.legal-links-text span {
  color: #cbd2df;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .site-header--simple .header-inner {
    width: min(100% - 32px, 1560px);
    gap: 16px;
  }

  .site-header--simple .brand {
    font-size: 24px;
  }

  .site-header--simple .play-now {
    min-width: auto;
    padding: 13px 16px;
    font-size: 12px;
  }

  .legal-links-text {
    display: grid;
    gap: 10px;
  }
}
