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

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* VARIABLES */
:root {
  --cp-bg: #ffffff;
  --cp-bg-raised: #f5f0ff;
  --cp-bg-dark: #1a1f4f;
  --cp-text: #1a1f4f;
  --cp-text-muted: #6b7280;
  --cp-accent: #7b2cbf;
  --cp-accent-deep: #3d1184;
  --cp-accent-2: #ffd000;
  --cp-green: #00a651;
  --cp-border: #e5e0f5;
  --cp-radius: 12px;
  --cp-shadow: 0 4px 20px rgba(123, 44, 191, 0.12);
  --container: 1240px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--cp-text); line-height: 1.2; }
p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; font-family: 'Inter', sans-serif; }
h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(22px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
p { line-height: 1.7; color: var(--cp-text); }

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

/* BUTTONS */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  transition: opacity 0.15s, box-shadow 0.15s;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
}
.cp-btn:hover { opacity: 0.9; }
.cp-btn--green { background: var(--cp-green); color: #fff; }
.cp-btn--yellow { background: var(--cp-accent-2); color: var(--cp-text); }
.cp-btn--purple { background: var(--cp-accent); color: #fff; }
.cp-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.cp-btn--lg { padding: 15px 40px; font-size: 16px; border-radius: 999px; }

/* TOPBAR */
.cp-topbar {
  background: var(--cp-bg-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 0;
}
.cp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  flex-wrap: wrap;
}
.cp-topbar__sep { opacity: 0.35; }
@media (max-width: 639px) {
  .cp-topbar { font-size: 11px; }
  .cp-topbar__inner { gap: 5px 10px; }
}

/* HEADER */
.cp-header {
  background: var(--cp-accent);
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.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;
}
.cp-header__search {
  display: none;
  flex: 1;
  min-width: 0;
  position: relative;
}
.cp-header__search input {
  width: 100%;
  max-width: 130px;
  padding: 7px 14px;
  border-radius: 20px;
  border: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  outline: none;
  font-family: inherit;
}
.cp-header__search input::placeholder { color: rgba(255,255,255,0.6); }
.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: 0.02em;
}
.cp-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.cp-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
@media (min-width: 760px) {
  .cp-header__logo img { height: 44px; max-width: none; }
  .cp-header__inner { gap: 18px; padding: 14px 0; }
  .cp-header__search { display: flex; }
  .cp-header__search input { max-width: 200px; }
  .cp-header__actions .cp-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: 0.04em; }
}
@media (max-width: 479px) {
  .cp-header__actions .cp-btn { padding: 7px 10px; font-size: 11px; }
}

/* SUBNAV */
.cp-subnav {
  background: #fff;
  border-bottom: 1px 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;
  min-width: max-content;
  margin: 0 auto;
}
.cp-subnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cp-text);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  border-bottom: 2px solid transparent;
}
.cp-subnav a:hover, .cp-subnav a.active {
  color: var(--cp-accent);
  border-bottom-color: var(--cp-accent);
}
.cp-subnav svg { width: 20px; height: 20px; flex-shrink: 0; }

/* HERO */
.cp-hero {
  background: linear-gradient(135deg, var(--cp-accent-deep) 0%, var(--cp-accent) 100%);
  color: #fff;
  padding-block: 60px 80px;
  position: relative;
  overflow: hidden;
}
.cp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cp-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  min-width: 0;
  max-width: 100%;
}
.cp-hero h1 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(28px, 5vw, 52px);
}
.cp-hero__lead {
  font-size: clamp(15px, 2.5vw, 20px);
  color: rgba(255,255,255,0.88);
  max-width: 700px;
  margin: 0 auto 30px;
  font-family: 'Inter', sans-serif;
}
.cp-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 639px) {
  .cp-hero { padding-block: 36px 50px; }
  .cp-hero__lead { font-size: 16px; }
  .cp-hero__ctas .cp-btn--lg { padding: 13px 18px; font-size: 14px; width: 100%; }
  .cp-hero__ctas { flex-direction: column; align-items: stretch; }
}

/* BREADCRUMBS */
.cp-breadcrumbs { padding: 14px 0; }
.cp-breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}
.cp-breadcrumbs li { font-size: 13px; color: var(--cp-text-muted); }
.cp-breadcrumbs li a { color: var(--cp-accent); }
.cp-breadcrumbs li + li::before {
  content: '›';
  margin-right: 4px;
  color: var(--cp-text-muted);
}

/* SECTIONS */
.cp-section { padding-block: 54px; }
.cp-section--alt { background: var(--cp-bg-raised); }
.cp-section__title {
  text-align: center;
  margin-bottom: 38px;
}
.cp-section__title h2 { margin-bottom: 10px; }
.cp-section__title p { color: var(--cp-text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* CONTENT */
.cp-content { max-width: 820px; margin: 0 auto; }
.cp-content h2, .cp-content h3 { margin-top: 36px; margin-bottom: 14px; }
.cp-content p { margin-bottom: 18px; }
.cp-content ul, .cp-content ol { padding-left: 22px; margin-bottom: 18px; }
.cp-content ul { list-style: disc; }
.cp-content ol { list-style: decimal; }
.cp-content li { margin-bottom: 8px; line-height: 1.65; }
.cp-content blockquote {
  border-left: 4px solid var(--cp-accent);
  background: var(--cp-bg-raised);
  padding: 18px 22px;
  border-radius: 0 var(--cp-radius) var(--cp-radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--cp-text-muted);
}
.cp-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.cp-content th, .cp-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--cp-border);
  font-size: 14px;
}
.cp-content th { background: var(--cp-bg-raised); font-weight: 700; color: var(--cp-text); }
.cp-content tr:hover td { background: #faf8ff; }

/* CONTENT IMAGES */
.cp-content img, article img, section.content 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 img, article img { max-height: 320px; }
}

/* OFFERS LISTING */
.cp-offers { padding-block: 54px; }
.cp-offers__grid {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: stretch;
  justify-content: center;
}
.cp-offers__card {
  position: relative;
  flex: 1;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 24px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.cp-offers__card:hover { box-shadow: var(--cp-shadow); }
.cp-offers__card--top {
  border-color: var(--cp-accent-2);
  border-width: 2px;
  transform: scale(1.02);
  padding-top: 36px;
  box-shadow: 0 8px 32px rgba(123,44,191,0.18);
}

/* Pointer events for casino cards */
.cp-offers__card * { pointer-events: none; }
.cp-offers__overlay-link, .cp-offers__review-link { pointer-events: auto !important; cursor: pointer; }

/* Overlay link */
.cp-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
}
/* All non-overlay children above overlay */
.cp-offers__card > *:not(.cp-offers__overlay-link) { position: relative; z-index: 2; }
.cp-offers__review-link { position: relative; z-index: 3 !important; }

/* Ribbon */
.cp-offers__ribbon {
  position: absolute !important;
  top: 30px;
  right: -44px;
  width: 175px;
  transform: rotate(45deg);
  background: var(--cp-accent-2);
  color: var(--cp-text);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 0;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Card logo */
.cp-offers__logo {
  width: 80px;
  height: 80px;
  background: var(--cp-bg-raised);
  border-radius: var(--cp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
}
.cp-offers__logo img { width: 80px; height: 80px; object-fit: contain; border-radius: var(--cp-radius); }
.cp-offers__brand { font-size: 18px; font-weight: 800; color: var(--cp-text); margin-bottom: 8px; }
.cp-offers__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.cp-offers__stars { color: var(--cp-accent-2); font-size: 16px; }
.cp-offers__rating-num { font-weight: 700; font-size: 14px; color: var(--cp-text); }
.cp-offers__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cp-offers__tag {
  background: var(--cp-bg-raised);
  color: var(--cp-accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--cp-border);
}
.cp-offers__tag--hot { background: var(--cp-accent); color: #fff; border-color: var(--cp-accent); }
.cp-offers__bonus {
  background: linear-gradient(135deg, var(--cp-accent-deep), var(--cp-accent));
  color: #fff;
  padding: 14px 20px;
  width: 100%;
  margin: 10px 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
}
.cp-offers__bonus-sub { font-size: 12px; font-weight: 500; opacity: 0.85; margin-top: 3px; }
.cp-offers__usps {
  padding: 14px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-offers__usp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cp-text);
}
.cp-offers__usp::before { content: '✓'; color: var(--cp-green); font-weight: 900; flex-shrink: 0; }
.cp-offers__social {
  font-size: 13px;
  color: var(--cp-text-muted);
  margin-bottom: 8px;
}
.cp-offers__social strong { color: var(--cp-accent); font-weight: 800; }
.cp-offers__timer { margin-bottom: 10px; font-size: 12px; color: var(--cp-text-muted); }
.cp-offers__timer span { font-weight: 800; color: var(--cp-accent-deep); font-size: 16px; font-family: monospace; }
.cp-offers__cta-row {
  padding: 16px 20px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-offers__cta {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 15px;
  text-align: center;
  background: var(--cp-green);
  color: #fff;
  letter-spacing: 0.04em;
}
.cp-offers__review-link {
  display: block;
  font-size: 13px;
  color: var(--cp-accent);
  font-weight: 600;
  text-decoration: underline;
  text-align: center;
}
.cp-offers__urgency {
  font-size: 11px;
  color: var(--cp-text-muted);
  padding: 0 16px 14px;
  width: 100%;
}
.cp-offers__aggregate {
  text-align: center;
  margin-top: 28px;
  font-size: 15px;
  color: var(--cp-text-muted);
}
.cp-offers__aggregate strong { color: var(--cp-accent-2); font-size: 18px; }

@media (max-width: 759px) {
  .cp-offers__grid { flex-direction: column; align-items: center; }
  .cp-offers__card { max-width: 100%; width: 100%; }
  .cp-offers__card--top { transform: none; order: -1; }
}

/* SLOTS LISTING */
.cp-slots { padding-block: 54px; background: var(--cp-bg-raised); }
.cp-slots__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cp-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--cp-radius);
  overflow: hidden;
  border: 1px solid var(--cp-border);
  background: var(--cp-bg-dark);
}
.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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  max-width: none;
  max-height: none;
}
.cp-slots__top-row,
.cp-slots__meta-row,
.cp-slots__overlay,
.cp-slots__play-icon { pointer-events: none; }
.cp-slots__top-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 3;
}
.cp-slots__hot {
  background: #ff4757;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.cp-slots__rtp {
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.cp-slots__meta-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,31,79,0.95));
  padding: 24px 8px 8px;
  z-index: 3;
}
.cp-slots__name {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cp-slots__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.75);
}
.cp-slots__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(123,44,191,0.6);
  z-index: 5;
  transition: opacity 0.2s;
  font-size: 32px;
  color: #fff;
}
.cp-slots__grid > div:hover .cp-slots__play-icon { opacity: 1; }
.cp-slots__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,17,132,0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.2s;
  padding: 12px;
}
.cp-slots__grid > div:hover .cp-slots__overlay { opacity: 1; }
.cp-slots__overlay-name {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.cp-slots__overlay-meta { font-size: 11px; color: rgba(255,255,255,0.8); text-align: center; }
.cp-slots__overlay-btn {
  background: var(--cp-accent-2);
  color: var(--cp-text);
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  margin-top: 4px;
}
.cp-slots__show-more { text-align: center; margin-top: 28px; }

@media (max-width: 900px) { .cp-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cp-slots__grid { grid-template-columns: repeat(2, 1fr); } }

/* AUTHOR BLOCK */
.cp-author {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--cp-bg-raised);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: 28px;
  max-width: 100%;
  margin: 36px 0;
}
.cp-author__img {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cp-accent);
}
.cp-author__img img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  object-position: center 15%;
  margin-left: -15%;
  margin-top: -10%;
  border-radius: 50%;
}
.cp-author__info { flex: 1; min-width: 0; }
.cp-author__name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.cp-author__role { font-size: 13px; color: var(--cp-accent); font-weight: 600; margin-bottom: 10px; }
.cp-author__bio { font-size: 14px; color: var(--cp-text-muted); line-height: 1.65; margin-bottom: 14px; }
.cp-author__links { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cp-author__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0a66c2;
}
.cp-author__badge {
  font-size: 11px;
  background: var(--cp-bg-dark);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .cp-author { flex-direction: column; align-items: center; text-align: center; }
  .cp-author__links { justify-content: center; }
}

/* FAQ */
.cp-faq { padding-block: 54px; }
.cp-faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.cp-faq__item {
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  overflow: hidden;
}
.cp-faq__item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  color: var(--cp-text);
  list-style: none;
}
.cp-faq__item summary::-webkit-details-marker { display: none; }
.cp-faq__item summary::after { content: '+'; font-size: 22px; color: var(--cp-accent); flex-shrink: 0; }
.cp-faq__item[open] summary::after { content: '−'; }
.cp-faq__answer {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--cp-text-muted);
  line-height: 1.7;
  background: #fff;
}
.cp-faq__item[open] summary { background: var(--cp-bg-raised); }

/* RELATED LINKS */
.cp-related { padding-block: 36px; background: var(--cp-bg-raised); }
.cp-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.cp-related__link {
  display: block;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--cp-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cp-accent);
  transition: border-color 0.15s;
}
.cp-related__link:hover { border-color: var(--cp-accent); }

/* TRUST BLOCK */
.cp-trust { padding-block: 48px; }
.cp-trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px 36px;
  flex-wrap: wrap;
}
.cp-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cp-text-muted);
  font-weight: 600;
  text-align: center;
}
.cp-trust__item svg { width: 36px; height: 36px; color: var(--cp-accent); }

/* FAB */
.cp-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 38px;
  background: var(--cp-accent-2);
  color: var(--cp-text);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255,208,0,0.45), 0 2px 8px rgba(0,0,0,0.5);
  transition: background 0.15s, transform 0.15s;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
.cp-fab::after { content: "▶"; font-size: 11px; }
.cp-fab:hover { transform: translate(-50%, -2px); }
.cp-fab:active { transform: translate(-50%, 0); }
@media (max-width: 979px) { .cp-fab { display: inline-flex; } }
@media (max-width: 480px) { .cp-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }
body.is-cookies-shown .cp-fab { bottom: 110px; }
@media (max-width: 480px) { body.is-cookies-shown .cp-fab { bottom: 150px; } }

/* FOOTER */
.cp-footer {
  background: var(--cp-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 52px 0 0;
  font-size: 14px;
}
.cp-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cp-footer__brand { grid-column: 1 / -1; }
.cp-footer__brand img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}
.cp-footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 320px;
}
.cp-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cp-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  transition: background 0.15s;
}
.cp-footer__social:hover { background: var(--cp-accent); color: #fff; }
.cp-footer__social svg { width: 18px; height: 18px; }
.cp-footer__col h4 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cp-footer__col ul li { margin-bottom: 8px; }
.cp-footer__col a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.cp-footer__col a:hover { color: var(--cp-accent-2); }

@media (min-width: 600px) {
  .cp-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .cp-footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 24px; }
  .cp-footer__brand { grid-column: auto; }
}
@media (max-width: 599px) {
  .cp-footer { padding: 28px 0 0; font-size: 12px; }
  .cp-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .cp-footer__col ul li { margin-bottom: 4px; }
  .cp-footer__col a { font-size: 12px; }
  .cp-footer__brand img { max-height: 50px; margin-bottom: 10px; }
  .cp-footer__brand p { font-size: 12px; }
}

/* PAYMENT ICONS FOOTER */
.cp-footer__pay { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cp-footer__pay h4 {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.cp-footer__pay-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.cp-footer__pay-item {
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-footer__pay-item img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: none;
  max-height: none;
}
@media (max-width: 599px) {
  .cp-footer__pay-grid { gap: 8px 12px; }
  .cp-footer__pay-item img { height: 20px; }
}

/* RESPONSIBLE GAMING FOOTER */
.cp-footer__rg {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cp-footer__rg-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.cp-footer__rg-badge {
  background: var(--cp-accent-2);
  color: var(--cp-text);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cp-footer__rg p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.cp-footer__rg a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* COPYRIGHT */
.cp-footer__bottom {
  padding: 18px 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cp-footer__copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.cp-footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cp-footer__legal a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.cp-footer__legal a:hover { color: var(--cp-accent-2); }
@media (max-width: 599px) {
  .cp-footer__bottom { flex-direction: column; align-items: flex-start; padding-bottom: 100px; }
}

/* MOBILE MENU */
.cp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,31,79,0.97);
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}
.cp-menu-overlay.is-open { display: flex; }
.cp-menu-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.cp-menu-overlay__logo { display: block; margin: 0 auto; }
.cp-menu-overlay__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.cp-menu-overlay__close {
  color: #fff;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}
.cp-menu-overlay nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
}
.cp-menu-overlay nav a:hover { color: var(--cp-accent-2); }
.cp-menu-overlay__ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.cp-menu-overlay__ctas .cp-btn { text-align: center; justify-content: center; padding: 14px; font-size: 15px; }

/* SITEMAP PAGE */
.cp-sitemap-section { padding-block: 48px; }
.cp-sitemap-section h2 { margin-bottom: 24px; font-size: 22px; }
.cp-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}
.cp-sitemap__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  transition: border-color 0.15s;
}
.cp-sitemap__card:hover { border-color: var(--cp-accent); }
.cp-sitemap__card a { font-size: 14px; font-weight: 700; color: var(--cp-accent); }
.cp-sitemap__card p { font-size: 12px; color: var(--cp-text-muted); }
