/* casinoplayojo.online — PlayOJO IE — prefix: co- */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: #1a1f4f; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; color: #1a1f4f; overflow-wrap: anywhere; word-break: break-word; }
p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }

/* VARIABLES */
:root {
  --co-purple: #7b2cbf;
  --co-purple-dark: #3d1184;
  --co-purple-mid: #6a1fa8;
  --co-navy: #1a1f4f;
  --co-green: #00a651;
  --co-yellow: #ffd000;
  --co-white: #fff;
  --co-bg: #f5f4fa;
  --co-border: #e0d9f0;
  --co-text: #1a1f4f;
  --co-text-muted: #6b7098;
  --co-radius: 12px;
  --co-shadow: 0 4px 24px rgba(123,44,191,.13);
  --container: 1240px;
}

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

/* TYPOGRAPHY */
h1 { font-size: clamp(26px, 5vw, 48px); }
h2 { font-size: clamp(20px, 3vw, 32px); }
h3 { font-size: clamp(17px, 2.5vw, 22px); }
h4 { font-size: 16px; }

/* BUTTONS */
.co-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: filter .15s, transform .1s;
  cursor: pointer;
  text-decoration: none;
  max-width: 100%;
}
.co-btn:hover { filter: brightness(1.08); }
.co-btn--login { background: #00a651; color: #fff; }
.co-btn--register { background: #ffd000; color: #1a1f4f; }
.co-btn--primary { background: #ffd000; color: #1a1f4f; }
.co-btn--secondary { background: transparent; border: 2px solid #ffd000; color: #ffd000; }
.co-btn--lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }

/* TOPBAR */
.co-topbar {
  background: #1a1f4f;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
}
.co-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  padding: 7px 0;
  flex-wrap: wrap;
}
.co-topbar__sep { opacity: .4; }
.co-topbar a { color: #ffd000; text-decoration: underline; }
@media (max-width: 639px) {
  .co-topbar { font-size: 11px; }
  .co-topbar__inner { gap: 5px 10px; }
}

/* HEADER */
.co-header { background: #7b2cbf; position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 12px rgba(0,0,0,.25); }
.co-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.co-header__logo { flex-shrink: 0; display: flex; align-items: center; min-width: 0; }
.co-header__logo img { height: 38px; width: auto; max-width: 140px; object-fit: contain; }
@media (min-width: 760px) {
  .co-header__logo img { height: 44px; max-width: none; }
  .co-header__inner { gap: 18px; padding: 14px 0; }
}
.co-header__search {
  display: flex;
  flex: 1;
  min-width: 0;
  max-width: 140px;
  position: relative;
}
@media (min-width: 760px) { .co-header__search { max-width: none; } }
.co-header__search input {
  width: 100%;
  padding: 8px 30px 8px 12px;
  border-radius: 20px;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  outline: none;
}
@media (min-width: 760px) { .co-header__search input { padding: 9px 36px 9px 14px; font-size: 14px; border-radius: 8px; } }
.co-header__search input::placeholder { color: rgba(255,255,255,.6); }
.co-header__search svg { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; fill: rgba(255,255,255,.7); pointer-events: none; }
.co-header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.co-header__actions .co-btn { padding: 8px 12px; font-size: 12px; letter-spacing: .02em; }
@media (min-width: 760px) {
  .co-header__actions { gap: 10px; }
  .co-header__actions .co-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: .04em; }
}
@media (max-width: 479px) { .co-header__actions .co-btn--login { padding: 8px 10px; font-size: 11px; } }
.co-header__burger { display: flex; flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0; cursor: pointer; }
.co-header__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
@media (min-width: 1024px) { .co-header__burger { display: none; } }

/* MOBILE SEARCH ROW */
.co-header__mobile-search {
  display: none;
  background: #6a1fa8;
  padding: 8px 16px;
}
@media (max-width: 759px) { .co-header__mobile-search { display: flex; } }
.co-header__mobile-search input {
  width: 100%;
  padding: 9px 14px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 14px;
  outline: none;
}
.co-header__mobile-search input::placeholder { color: rgba(255,255,255,.6); }

/* SUBNAV */
.co-subnav { background: #fff; border-bottom: 1px solid #e0d9f0; overflow-x: auto; scrollbar-width: none; }
.co-subnav::-webkit-scrollbar { display: none; }
.co-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0;
  min-width: max-content;
  margin-inline: auto;
}
.co-subnav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1f4f;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.co-subnav a:hover, .co-subnav a.active {
  background: #f0e9fa;
  color: #7b2cbf;
}
.co-subnav svg { width: 16px; height: 16px; flex-shrink: 0; }

/* HERO */
.co-hero {
  background: linear-gradient(135deg, #3d1184 0%, #7b2cbf 100%);
  padding-block: 60px 72px;
  position: relative;
  overflow: hidden;
}
.co-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,208,0,.08) 0%, transparent 70%);
}
.co-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}
.co-hero h1 { color: #fff; font-size: clamp(26px, 5vw, 52px); max-width: 860px; }
.co-hero__lead { color: rgba(255,255,255,.88); font-size: clamp(15px, 2vw, 19px); max-width: 680px; line-height: 1.6; }
.co-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; width: 100%; }
@media (max-width: 639px) {
  .co-hero { padding-block: 36px 44px; }
  .co-hero__inner { gap: 14px; }
  .co-hero__lead { font-size: 16px; }
  .co-hero__ctas .co-btn--lg { padding: 13px 18px; font-size: 13.5px; width: 100%; max-width: 320px; }
}

/* BREADCRUMBS */
.co-breadcrumbs { padding: 10px 0; font-size: 13px; color: #6b7098; }
.co-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0; list-style: none; }
.co-breadcrumbs li + li::before { content: '›'; margin: 0 6px; color: #b0adc8; }
.co-breadcrumbs a { color: #7b2cbf; }
.co-breadcrumbs a:hover { text-decoration: underline; }

/* SECTIONS */
.co-section { padding-block: 40px; }
.co-section--bg { background: #f5f4fa; }
.co-section__head { text-align: center; margin-bottom: 28px; }
.co-section__head h2 { color: #1a1f4f; }
.co-section__head p { color: #6b7098; margin-top: 8px; font-size: 15px; }

/* CONTENT SECTION */
.co-content { padding-block: 32px; }
.co-content h2 { margin-bottom: 16px; }
.co-content p { margin-bottom: 14px; color: #1a1f4f; }
.co-content ul, .co-content ol { margin: 12px 0 16px 20px; }
.co-content ul { list-style: disc; }
.co-content ol { list-style: decimal; }
.co-content li { margin-bottom: 7px; }
.co-content blockquote {
  border-left: 4px solid #7b2cbf;
  padding: 14px 20px;
  background: #f5f4fa;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  color: #1a1f4f;
  font-style: italic;
}
.co-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.co-content th { background: #7b2cbf; color: #fff; padding: 10px 14px; text-align: left; font-size: 14px; }
.co-content td { padding: 9px 14px; border-bottom: 1px solid #e0d9f0; font-size: 14px; }
.co-content tr:nth-child(even) td { background: #f5f4fa; }
.co-content .table-wrap { overflow-x: auto; }

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

/* OFFERS LISTING */
.co-offers { padding-block: 40px; }
.co-offers__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.co-offers__aggregate {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #6b7098;
}
.co-offers__aggregate strong { color: #1a1f4f; }

/* CASINO CARD */
.co-offers__card {
  position: relative;
  background: #fff;
  border: 2px solid #e0d9f0;
  border-radius: var(--co-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(123,44,191,.08);
  transition: box-shadow .2s, border-color .2s;
}
.co-offers__card:hover { box-shadow: 0 6px 28px rgba(123,44,191,.18); border-color: #c3a4e8; }
.co-offers__card--top { border-color: #ffd000; box-shadow: 0 4px 24px rgba(255,208,0,.22); padding-top: 36px; }
.co-offers__card--top:hover { box-shadow: 0 8px 36px rgba(255,208,0,.30); }

/* OVERLAY LINK */
.co-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
}
.co-offers__card > *:not(.co-offers__overlay-link) { position: relative; z-index: 2; }
.co-offers__card * { pointer-events: none; }
.co-offers__overlay-link,
.co-offers__review-link { pointer-events: auto !important; cursor: pointer; }
.co-offers__review-link { position: relative; z-index: 3 !important; }

/* RIBBON */
.co-offers__ribbon {
  position: absolute !important;
  top: 26px;
  right: -46px;
  width: 170px;
  background: #ffd000;
  color: #1a1f4f;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 5px 0;
  transform: rotate(45deg);
  z-index: 4;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* CARD TOP ROW */
.co-offers__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 14px;
  text-align: center;
}
.co-offers__logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #f5f4fa;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0d9f0;
}
.co-offers__logo img { width: 80px; height: 80px; object-fit: contain; padding: 8px; }
.co-offers__meta { min-width: 0; display: flex; flex-direction: column; align-items: center; }
.co-offers__name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: #1a1f4f; margin-bottom: 4px; }
.co-offers__stars { color: #ffd000; font-size: 15px; display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.co-offers__stars span { color: #1a1f4f; font-size: 13px; font-weight: 600; }
.co-offers__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.co-offers__tag {
  background: #f0e9fa;
  color: #7b2cbf;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.co-offers__tag--gold { background: #fff6cc; color: #8a6800; }

/* CARD BODY */
.co-offers__body { padding: 0 20px 18px; display: flex; flex-direction: column; gap: 14px; }
.co-offers__bonus { text-align: center; }
.co-offers__bonus-label { font-size: 11px; font-weight: 700; color: #6b7098; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.co-offers__bonus-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: #7b2cbf; line-height: 1.1; }
.co-offers__usps { display: flex; flex-direction: column; gap: 6px; align-items: center; width: 100%; }
.co-offers__usp { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #1a1f4f; }
.co-offers__usp::before { content: '✓'; color: #00a651; font-weight: 700; flex-shrink: 0; }
.co-offers__social { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: #6b7098; padding: 10px 0; border-top: 1px solid #f0ecfa; border-bottom: 1px solid #f0ecfa; }
.co-offers__social .fire { font-size: 16px; }
.co-offers__social strong { color: #1a1f4f; }
.co-offers__timer { text-align: center; }
.co-offers__timer-label { font-size: 11px; color: #6b7098; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.co-offers__timer-digits { display: flex; justify-content: center; gap: 6px; }
.co-offers__timer-unit { background: #1a1f4f; color: #ffd000; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; padding: 8px 10px; border-radius: 6px; min-width: 42px; text-align: center; }
.co-offers__timer-sep { font-size: 20px; font-weight: 800; color: #1a1f4f; display: flex; align-items: center; }
.co-offers__cta-row { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.co-offers__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd000;
  color: #1a1f4f;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
  width: 100%;
}
.co-offers__review-link { font-size: 13px; color: #7b2cbf; text-decoration: underline; }
.co-offers__urgency { text-align: center; font-size: 11.5px; color: #6b7098; padding-bottom: 14px; }

@media (max-width: 759px) {
  .co-offers__card--top { transform: none; order: -1; }
}

/* SLOTS LISTING */
.co-slots { padding-block: 40px; }
.co-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 600px) { .co-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .co-slots__grid { grid-template-columns: repeat(6, 1fr); } }

.co-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0d9f0;
  background: #0d0920;
}
.co-slots__grid > div:hover .co-slots__overlay { opacity: 1; }
.co-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.co-slots__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.co-slots__top-row {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  z-index: 2;
}
.co-slots__hot {
  background: #ff3d3d;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.co-slots__rtp {
  background: rgba(0,0,0,.65);
  color: #ffd000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
}
.co-slots__meta-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,9,32,.92));
  padding: 32px 10px 10px;
  pointer-events: none;
  z-index: 2;
}
.co-slots__name { color: #fff; font-size: 12px; font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.co-slots__badges { display: flex; gap: 5px; flex-wrap: wrap; }
.co-slots__badge { font-size: 10px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); padding: 1px 5px; border-radius: 4px; }
.co-slots__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,17,132,.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  z-index: 3;
}
.co-slots__play-icon {
  width: 46px;
  height: 46px;
  background: #ffd000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.co-slots__play-icon svg { width: 20px; height: 20px; fill: #1a1f4f; margin-left: 3px; }
.co-slots__overlay-name { color: #fff; font-size: 13px; font-weight: 700; text-align: center; padding: 0 8px; }
.co-slots__overlay-meta { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.co-slots__overlay-badge { font-size: 11px; color: #ffd000; background: rgba(255,255,255,.1); padding: 2px 8px; border-radius: 5px; }
.co-slots__top-row, .co-slots__meta-row, .co-slots__overlay, .co-slots__play-icon { pointer-events: none; }
.co-slots__cta-wrap { text-align: center; margin-top: 24px; }

/* AUTHOR BLOCK */
.co-author {
  background: #f5f4fa;
  border-radius: var(--co-radius);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid #e0d9f0;
}
.co-author img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid #7b2cbf; }
.co-author__body { flex: 1; min-width: 0; }
.co-author__name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: #1a1f4f; }
.co-author__role { font-size: 13px; color: #6b7098; margin-bottom: 10px; }
.co-author__bio { font-size: 14px; color: #1a1f4f; line-height: 1.6; margin-bottom: 12px; }
.co-author__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.co-author__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #e0d9f0;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1f4f;
}
.co-author__badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.co-author__linkedin { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 13px; color: #0077b5; text-decoration: underline; pointer-events: auto; }
@media (max-width: 599px) {
  .co-author { flex-direction: column; }
  .co-author img { width: 72px; height: 72px; }
}

/* FAQ */
.co-faq { padding-block: 36px; }
.co-faq__list { max-width: 780px; margin: 24px auto 0; display: flex; flex-direction: column; gap: 10px; }
.co-faq__item { border: 1px solid #e0d9f0; border-radius: 10px; overflow: hidden; }
.co-faq__item summary {
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #1a1f4f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.co-faq__item summary::after { content: '+'; font-size: 20px; color: #7b2cbf; flex-shrink: 0; margin-left: 12px; }
.co-faq__item[open] summary::after { content: '−'; }
.co-faq__item summary::-webkit-details-marker { display: none; }
.co-faq__answer { padding: 0 18px 16px; font-size: 14px; color: #1a1f4f; line-height: 1.65; }

/* TRUST BLOCK */
.co-trust { padding-block: 28px; }
.co-trust__inner { display: flex; align-items: center; justify-content: center; gap: 16px 24px; flex-wrap: wrap; }
.co-trust__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f5f4fa;
  border: 1px solid #e0d9f0;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1f4f;
}
.co-trust__badge svg { width: 18px; height: 18px; flex-shrink: 0; }

/* RELATED LINKS */
.co-related { padding-block: 24px; border-top: 1px solid #e0d9f0; }
.co-related h3 { margin-bottom: 14px; font-size: 16px; }
.co-related__list { display: flex; flex-wrap: wrap; gap: 8px; }
.co-related__list a {
  background: #f5f4fa;
  border: 1px solid #e0d9f0;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: #7b2cbf;
  font-weight: 500;
  transition: background .15s;
}
.co-related__list a:hover { background: #e8dff7; }

/* FOOTER */
.co-footer { background: #1a1f4f; color: #fff; padding-block: 48px 0; }
.co-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.co-footer__brand { grid-column: 1 / -1; }
@media (min-width: 600px) { .co-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) {
  .co-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 22px; }
  .co-footer__brand { grid-column: auto; }
}
.co-footer__brand img { height: 80px; width: auto; max-width: 200px; object-fit: contain; margin-bottom: 14px; }
@media (max-width: 767px) { .co-footer__brand img { height: 70px; } }
.co-footer__tagline { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 14px; max-width: 280px; }
.co-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.co-footer__socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.co-footer__socials a:hover { background: #7b2cbf; }
.co-footer__socials svg { width: 18px; height: 18px; fill: #fff; stroke: #fff; }
.co-footer__col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.co-footer__col ul li { margin-bottom: 8px; }
.co-footer__col a { font-size: 13px; color: rgba(255,255,255,.75); transition: color .15s; }
.co-footer__col a:hover { color: #ffd000; }
@media (max-width: 599px) {
  .co-footer { padding: 28px 0 16px; font-size: 12px; }
  .co-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .co-footer__col ul li { margin-bottom: 4px; }
  .co-footer__col a { font-size: 12px; }
  .co-footer__brand img { max-height: 50px; margin-bottom: 10px; }
  .co-footer__tagline { font-size: 12px; }
}

/* FOOTER PAYMENTS */
.co-footer__pay { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); }
.co-footer__pay-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.co-footer__pay-grid { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; }
.co-footer__pay-chip {
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #1a1f4f;
}
.co-footer__pay-chip img { height: 22px; width: auto; object-fit: contain; }
@media (max-width: 599px) {
  .co-footer__pay-chip { padding: 3px 8px; }
  .co-footer__pay-chip img { height: 18px; }
}

/* FOOTER BOTTOM */
.co-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 84px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.co-footer__rg { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; }
.co-footer__rg a { color: rgba(255,255,255,.65); text-decoration: underline; }
.co-footer__copy { font-size: 12px; color: rgba(255,255,255,.35); }
.co-footer__legal-links { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.co-footer__legal-links a { font-size: 12px; color: rgba(255,255,255,.45); transition: color .15s; }
.co-footer__legal-links a:hover { color: rgba(255,255,255,.8); }

/* FAB */
.co-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 60;
  padding: 18px 38px;
  background: #ffd000;
  color: #1a1f4f;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255,208,0,.45), 0 2px 8px rgba(0,0,0,.5);
  transition: background .15s, transform .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;
}
.co-fab::after { content: "▶"; font-size: 11px; }
.co-fab:hover { transform: translate(-50%, -2px); }
.co-fab:active { transform: translate(-50%, 0); }
@media (max-width: 1023px) { .co-fab { display: inline-flex; } }
@media (max-width: 480px) { .co-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }
@media (max-width: 1023px) { .co-footer { padding-bottom: 84px; } }

/* MOBILE MENU OVERLAY */
.co-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #1a1f4f;
  z-index: 100;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.co-nav-overlay.is-open { display: flex; }
.co-nav-overlay__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.co-nav-overlay__close { font-size: 28px; color: #fff; cursor: pointer; background: none; border: none; line-height: 1; }
.co-nav-overlay__links { display: flex; flex-direction: column; gap: 4px; }
.co-nav-overlay__links a { font-size: 18px; font-weight: 600; color: #fff; padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,.1); transition: color .15s; }
.co-nav-overlay__links a:hover { color: #ffd000; }
.co-nav-overlay__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.co-nav-overlay__ctas .co-btn { width: 100%; justify-content: center; }

/* SITEMAP PAGE */
.co-sitemap__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
@media (min-width: 600px) { .co-sitemap__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .co-sitemap__grid { grid-template-columns: repeat(4, 1fr); } }
.co-sitemap__card { background: #f5f4fa; border: 1px solid #e0d9f0; border-radius: 8px; padding: 12px 14px; }
.co-sitemap__card a { font-weight: 600; color: #7b2cbf; font-size: 14px; display: block; margin-bottom: 4px; }
.co-sitemap__card a:hover { text-decoration: underline; }
.co-sitemap__card p { font-size: 12px; color: #6b7098; }
.co-sitemap__group h2 { margin: 28px 0 12px; font-size: 18px; }
