/* GLOBAL OVERFLOW GUARD */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6, p, li, blockquote, td, th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ROOT VARIABLES */
:root {
  --cp-purple:      #7b2cbf;
  --cp-purple-dark: #3d1184;
  --cp-purple-deep: #1a1f4f;
  --cp-green:       #00a651;
  --cp-yellow:      #ffd000;
  --cp-white:       #ffffff;
  --cp-bg:          #ffffff;
  --cp-text:        #1a1f4f;
  --cp-text-muted:  #5a5f8a;
  --cp-border:      #e0e0f0;
  --cp-radius:      12px;
  --cp-shadow:      0 4px 18px rgba(0,0,0,.1);
  --cp-shadow-lg:   0 8px 32px rgba(123,44,191,.2);
  --container:      1240px;
}

/* CONTAINER */
.cp-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 760px) {
  .cp-container { padding-inline: 20px; }
}

/* FONTS — Plus Jakarta Sans + Inter */
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cp-text);
  background: var(--cp-bg);
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.25;
  color: var(--cp-text);
}

/* BUTTONS */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: filter .15s, box-shadow .15s;
  white-space: nowrap;
  max-width: 100%;
  cursor: pointer;
}
.cp-btn--login {
  background: var(--cp-green);
  color: var(--cp-white);
}
.cp-btn--register {
  background: var(--cp-yellow);
  color: var(--cp-purple-deep);
}
.cp-btn--primary {
  background: var(--cp-yellow);
  color: var(--cp-purple-deep);
  padding: 14px 32px;
  font-size: 15px;
}
.cp-btn--ghost {
  background: transparent;
  border: 2px solid var(--cp-white);
  color: var(--cp-white);
  padding: 12px 28px;
}
.cp-btn:hover { filter: brightness(1.08); }
.cp-btn--lg { padding: 16px 40px; font-size: 16px; }

/* HEADER */
.cp-header {
  background: var(--cp-purple);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(61,17,132,.35);
}
.cp-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.cp-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.cp-header__logo img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (min-width: 760px) {
  .cp-header__logo img { height: 44px; max-width: none; }
  .cp-header__inner { gap: 18px; padding: 14px 0; }
}

/* HEADER SEARCH */
.cp-header__search {
  display: none;
  flex: 1;
  min-width: 0;
  position: relative;
}
@media (min-width: 760px) { .cp-header__search { display: flex; } }
.cp-header__search input {
  width: 100%;
  padding: 9px 16px 9px 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.cp-header__search input::placeholder { color: rgba(255,255,255,.65); }
.cp-header__search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* HEADER ACTIONS */
.cp-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.cp-header__actions .cp-btn {
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: .02em;
}
@media (min-width: 760px) {
  .cp-header__actions { gap: 10px; }
  .cp-header__actions .cp-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: .04em; }
}
@media (max-width: 479px) {
  .cp-header__actions .cp-btn--login { display: none; }
}

/* BURGER */
.cp-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px 0;
}
.cp-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
@media (min-width: 1024px) { .cp-burger { display: none; } }
.cp-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cp-burger.is-active span:nth-child(2) { opacity: 0; }
.cp-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
.cp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,31,79,.97);
  z-index: 200;
  overflow-y: auto;
  padding: 24px 20px;
}
.cp-menu-overlay.is-open { display: flex; flex-direction: column; gap: 8px; }
.cp-menu-overlay__close {
  align-self: flex-end;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  margin-bottom: 16px;
  background: none;
  border: none;
}
.cp-menu-overlay a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: block;
}
.cp-menu-overlay a:hover { color: var(--cp-yellow); }
.cp-menu-overlay__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* SUBNAV */
.cp-subnav {
  background: var(--cp-white);
  border-bottom: 2px solid var(--cp-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.cp-subnav::-webkit-scrollbar { display: none; }
.cp-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.cp-subnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  color: var(--cp-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.cp-subnav a svg { width: 22px; height: 22px; color: var(--cp-purple); }
.cp-subnav a:hover,
.cp-subnav a.is-active {
  color: var(--cp-purple);
  border-bottom-color: var(--cp-purple);
}

/* HERO */
.cp-hero {
  background:
    linear-gradient(135deg, rgba(60,10,120,0.82) 0%, rgba(123,44,191,0.75) 60%, rgba(123,44,191,0.65) 100%),
    url('/img/banner.jpg') center center / cover no-repeat;
  color: #fff;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.cp-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 40px;
  background: var(--cp-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.cp-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}
.cp-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  max-width: 760px;
}
.cp-hero__lead {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  max-width: 620px;
}
.cp-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  margin-top: 8px;
}
@media (max-width: 639px) {
  .cp-hero { padding: 36px 0 48px; }
  .cp-hero__inner { gap: 14px; }
  .cp-hero__lead { font-size: 15px; }
  .cp-hero__ctas .cp-btn { width: 100%; }
}

/* BREADCRUMBS */
.cp-breadcrumbs {
  padding: 14px 0 6px;
}
.cp-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  font-size: 13px;
  color: var(--cp-text-muted);
}
.cp-breadcrumbs ol li + li::before {
  content: '›';
  margin: 0 6px;
  color: var(--cp-text-muted);
}
.cp-breadcrumbs a { color: var(--cp-purple); }
.cp-breadcrumbs a:hover { text-decoration: underline; }

/* CONTENT SECTIONS */
.cp-content { padding: 36px 0; }
.cp-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--cp-text);
}
.cp-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.cp-content p { margin-bottom: 16px; color: var(--cp-text); }
.cp-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.cp-content ul li { margin-bottom: 8px; color: var(--cp-text); }

/* TABLES */
.cp-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--cp-radius); }
table {
  min-width: 0;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th {
  background: var(--cp-purple);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}
td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--cp-border);
  color: var(--cp-text);
}
tr:nth-child(even) td { background: #f7f5ff; }
tr:last-child td { border-bottom: none; }

/* BLOCKQUOTE */
blockquote {
  border-left: 4px solid var(--cp-purple);
  background: #f7f5ff;
  padding: 18px 22px;
  border-radius: 0 var(--cp-radius) var(--cp-radius) 0;
  margin: 24px 0;
  color: var(--cp-text);
}
blockquote p { margin-bottom: 0; color: var(--cp-text); }
blockquote cite { font-size: 13px; color: var(--cp-text-muted); margin-top: 8px; display: block; }

/* CONTENT IMAGES */
.cp-content article img,
.cp-content section img,
.cp-content p img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 24px auto;
  border-radius: var(--cp-radius);
}
@media (max-width: 768px) {
  .cp-content article img,
  .cp-content section img { max-height: 320px; }
}

/* ===================== OFFERS LISTING ===================== */
.cp-offers {
  padding: 48px 0 32px;
}
.cp-offers__heading {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--cp-text);
}
.cp-offers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .cp-offers__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* CASINO CARD BASE */
.cp-offers__card {
  background: var(--cp-white);
  border: 2px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--cp-shadow);
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Top row: logo + meta side by side */
.cp-offers__top-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cp-offers__card:hover { box-shadow: var(--cp-shadow-lg); }

/* overlay-link — fills the entire card */
.cp-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
  border-radius: var(--cp-radius);
}

/* All card children above overlay */
.cp-offers__card > *:not(.cp-offers__overlay-link) {
  position: relative;
  z-index: 2;
}

/* pointer-events discipline */
.cp-offers__card * { pointer-events: none; }
.cp-offers__overlay-link,
.cp-offers__review-link { pointer-events: auto !important; cursor: pointer; }
.cp-offers__review-link { position: relative; z-index: 3 !important; }

/* TOP card highlight */
.cp-offers__card--top {
  border-color: var(--cp-yellow);
  transform: scale(1.02);
  box-shadow: 0 8px 36px rgba(255,208,0,.3);
}
@media (max-width: 759px) {
  .cp-offers__card--top { transform: none; order: -1; }
}

/* RIBBON */
.cp-offers__ribbon {
  position: absolute !important;
  top: 26px;
  right: -46px;
  width: 170px;
  background: var(--cp-yellow);
  color: var(--cp-purple-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 0;
  text-align: center;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.cp-offers__card--top { padding-top: 32px; }
.cp-offers__ribbon::after { display: none; }

/* CARD LOGO */
.cp-offers__logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #f5f0ff;
  border: 1px solid #e0d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.cp-offers__logo img {
  width: 64px;
  height: 60px;
  object-fit: contain;
}

/* CARD CONTENT WRAPPER */
.cp-offers__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* CARD BRAND NAME */
.cp-offers__name {
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--cp-text);
  margin-bottom: 2px;
}

/* RATING */
.cp-offers__rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}
.cp-offers__stars { color: var(--cp-yellow); font-size: 15px; }
.cp-offers__score { font-size: 13px; font-weight: 700; color: var(--cp-text); }

/* TAGS */
.cp-offers__tags {
  display: flex;
  gap: 6px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.cp-offers__tag {
  background: #f0eaff;
  color: var(--cp-purple);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.cp-offers__tag--top { background: var(--cp-yellow); color: var(--cp-purple-deep); }

/* BONUS */
.cp-offers__bonus {
  text-align: center;
  background: #f7f5ff;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  color: var(--cp-text);
}
.cp-offers__bonus-label { font-size: 11px; text-transform: uppercase; color: var(--cp-text-muted); letter-spacing: .05em; }
.cp-offers__bonus-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--cp-purple);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* USPs */
.cp-offers__usps {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cp-offers__usps li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--cp-text);
}
.cp-offers__usps li::before {
  content: '✔';
  color: var(--cp-green);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* SOCIAL PROOF */
.cp-offers__social {
  text-align: center;
  font-size: 13px;
  color: var(--cp-text-muted);
  margin-bottom: 10px;
}
.cp-offers__social strong { color: var(--cp-purple); }

/* TIMER */
.cp-offers__timer {
  text-align: center;
  margin-bottom: 14px;
}
.cp-offers__timer-label { font-size: 11px; color: var(--cp-text-muted); text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 4px; }
.cp-offers__timer-digits {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--cp-purple);
  letter-spacing: .04em;
}

/* CTA ROW */
.cp-offers__cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.cp-offers__cta {
  display: block;
  text-align: center;
  background: var(--cp-yellow);
  color: var(--cp-purple-deep);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 999px;
  transition: filter .15s;
}
.cp-offers__cta:hover { filter: brightness(1.08); }
.cp-offers__review-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--cp-purple);
  font-weight: 600;
  text-decoration: underline;
}
.cp-offers__urgency {
  text-align: center;
  font-size: 11px;
  color: var(--cp-text-muted);
  margin-top: 10px;
}

/* AGGREGATE */
.cp-offers__aggregate {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--cp-text-muted);
}
.cp-offers__aggregate strong { color: var(--cp-text); }

/* ===================== SLOTS LISTING ===================== */
.cp-slots { padding: 48px 0 32px; }
.cp-slots__heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
  color: var(--cp-text);
}
.cp-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px) {
  .cp-slots__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .cp-slots__grid { grid-template-columns: repeat(6, 1fr); }
}

/* Slot wrapper — the visual container */
.cp-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--cp-radius);
  border: 1px solid var(--cp-border);
}
.cp-slots__grid > div:hover { border-color: var(--cp-purple); }

/* Slot tile = image holder */
.cp-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.cp-slots__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slot decorations */
.cp-slots__top-row {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px;
  pointer-events: none;
  z-index: 4;
}
.cp-slots__meta-row,
.cp-slots__overlay,
.cp-slots__play-icon { pointer-events: none; }

.cp-slots__hot {
  background: #ff3d3d;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.cp-slots__rtp-badge {
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
}

/* Slot overlay on hover */
.cp-slots__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,17,132,.92) 0%, rgba(61,17,132,.4) 60%, transparent 100%);
  opacity: 0;
  transition: opacity .2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  z-index: 3;
}
.cp-slots__grid > div:hover .cp-slots__overlay { opacity: 1; }
.cp-slots__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cp-slots__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cp-slots__meta span {
  font-size: 10px;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
  padding: 2px 7px;
  border-radius: 999px;
}

/* Play icon always visible */
.cp-slots__play-icon {
  position: absolute;
  bottom: 14px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--cp-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform .15s;
}
.cp-slots__grid > div:hover .cp-slots__play-icon { transform: scale(1.15); }
.cp-slots__play-icon svg { width: 14px; height: 14px; color: var(--cp-purple-deep); }

/* AUTHOR BLOCK */
.cp-author {
  background: #f7f5ff;
  border-radius: var(--cp-radius);
  padding: 30px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 32px 0;
}
.cp-author__photo {
  flex-shrink: 0;
}
.cp-author__photo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cp-purple);
}
.cp-author__info { min-width: 0; }
.cp-author__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--cp-text);
  margin-bottom: 4px;
}
.cp-author__role {
  font-size: 13px;
  color: var(--cp-purple);
  font-weight: 600;
  margin-bottom: 10px;
}
.cp-author__bio { font-size: 14px; color: var(--cp-text); line-height: 1.6; margin-bottom: 12px; }
.cp-author__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.cp-author__badge {
  background: var(--cp-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.cp-author__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cp-purple);
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .cp-author { flex-direction: column; padding: 20px; }
}

/* FAQ */
.cp-faq { padding: 32px 0 40px; }
.cp-faq h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--cp-text);
}
.cp-faq details {
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.cp-faq summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--cp-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cp-white);
}
.cp-faq summary::-webkit-details-marker { display: none; }
.cp-faq summary::after {
  content: '+';
  font-size: 20px;
  color: var(--cp-purple);
  transition: transform .2s;
  flex-shrink: 0;
}
.cp-faq details[open] summary::after { content: '−'; }
.cp-faq details[open] summary { color: var(--cp-purple); }
.cp-faq__answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--cp-text);
  line-height: 1.65;
  background: var(--cp-white);
}

/* RELATED LINKS */
.cp-related { padding: 20px 0 32px; }
.cp-related h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cp-text);
}
.cp-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cp-related__list a {
  background: #f0eaff;
  color: var(--cp-purple);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
}
.cp-related__list a:hover { background: var(--cp-purple); color: #fff; }

/* SECTION HEADER */
.cp-section-header {
  text-align: center;
  padding: 40px 0 8px;
}
.cp-section-header h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--cp-text);
}
.cp-section-header p { color: var(--cp-text-muted); margin-top: 8px; }

/* TRUST STRIP */
.cp-trust {
  background: #f7f5ff;
  border-radius: var(--cp-radius);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cp-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cp-text);
}
.cp-trust__item svg { width: 20px; height: 20px; color: var(--cp-purple); }

/* FAB */
.cp-fab {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
}
@media (max-width: 1023px) { .cp-fab { display: block; } }
.cp-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: var(--cp-yellow);
  color: var(--cp-purple-deep);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  text-decoration: none;
}
.cp-fab__btn svg { width: 16px; height: 16px; }

/* FOOTER */
.cp-footer {
  background: var(--cp-purple-deep);
  color: rgba(255,255,255,.85);
  padding: 56px 0 0;
}
.cp-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 36px;
}
.cp-footer__brand { grid-column: 1 / -1; }
@media (min-width: 600px) {
  .cp-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .cp-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 24px; }
  .cp-footer__brand { grid-column: auto; }
}

.cp-footer__brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
@media (max-width: 599px) {
  .cp-footer__brand img { height: 70px; margin-bottom: 12px; }
}
.cp-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 280px;
}

/* SOCIAL */
.cp-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cp-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: background .15s;
  color: #fff;
}
.cp-footer__social a:hover { background: var(--cp-purple); }
.cp-footer__social svg { width: 18px; height: 18px; }

/* FOOTER NAV COLS */
.cp-footer__col h4 {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cp-yellow);
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cp-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.cp-footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  transition: color .15s;
}
.cp-footer__col a:hover { color: var(--cp-yellow); }

/* PAYMENT ICONS */
.cp-footer__pay {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cp-footer__pay h4 {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.cp-footer__pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}
.cp-footer__pay-grid img {
  height: 32px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  box-sizing: content-box;
  opacity: .9;
  transition: opacity .2s;
}
.cp-footer__pay-grid img:hover { opacity: 1; }

/* RESPONSIBLE GAMING */
.cp-footer__rg {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.cp-footer__rg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.cp-footer__badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cp-footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 900px;
}

/* FOOTER BOTTOM */
.cp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.cp-footer__bottom-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.cp-footer__bottom-links a { color: rgba(255,255,255,.45); }
.cp-footer__bottom-links a:hover { color: var(--cp-yellow); }
@media (max-width: 599px) {
  .cp-footer { padding-bottom: 84px; }
  .cp-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .cp-footer__col ul { gap: 4px; }
  .cp-footer__col a { font-size: 12px; }
  .cp-footer__brand p { font-size: 12px; }
  .cp-footer__pay-grid { gap: 8px 12px; }
  .cp-footer__pay-grid img { height: 22px; }
}

/* SITEMAP PAGE */
.cp-sitemap { padding: 40px 0 60px; }
.cp-sitemap h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cp-purple);
  margin-bottom: 16px;
  margin-top: 32px;
  border-left: 4px solid var(--cp-yellow);
  padding-left: 12px;
}
.cp-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.cp-sitemap__card {
  background: #f7f5ff;
  border-radius: var(--cp-radius);
  padding: 14px 16px;
  transition: background .15s;
}
.cp-sitemap__card:hover { background: #ede7ff; }
.cp-sitemap__card a {
  color: var(--cp-purple);
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}
.cp-sitemap__card p { font-size: 12px; color: var(--cp-text-muted); }
