﻿/* PlayOJO Real Money Casino UK — style.css — prefix: poj */

/* === 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; background: #f5f3ff; color: #1a1a2e; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: 0; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,p,li,blockquote,td,th { overflow-wrap: anywhere; word-break: break-word; }

/* === ROOT === */
:root {
  --poj-purple:        #6200ea;
  --poj-purple-dark:   #4a00b4;
  --poj-purple-mid:    #7c3aed;
  --poj-purple-hero:   #5e17eb;
  --poj-purple-footer: #150030;
  --poj-purple-foot2:  #200045;
  --poj-yellow:        #ffd600;
  --poj-yellow-dark:   #e6c000;
  --poj-green:         #00c853;
  --poj-green-dark:    #008c3a;
  --poj-bg:            #ffffff;
  --poj-bg-light:      #f5f3ff;
  --poj-text:          #1a1a2e;
  --poj-text-muted:    #6b6b8a;
  --poj-border:        #ded6f5;
  --poj-radius:        12px;
  --poj-radius-sm:     8px;
  --poj-radius-lg:     18px;
  --poj-shadow:        0 4px 24px rgba(98,0,234,.18);
  --poj-container:     1300px;
}

/* === CONTAINER === */
.poj-container {
  max-width: var(--poj-container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 760px)  { .poj-container { padding-inline: 28px; } }
@media (min-width: 1200px) { .poj-container { padding-inline: 40px; } }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(26px, 5vw, 52px); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(16px, 2vw, 22px); font-weight: 700; }
p  { font-size: 15px; }

/* === BUTTONS === */
.poj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s, box-shadow .15s;
  white-space: nowrap;
  max-width: 100%;
}
.poj-btn--login {
  background: var(--poj-green);
  color: #fff;
  box-shadow: 0 3px 12px rgba(0,200,83,.35);
}
.poj-btn--login:hover { background: var(--poj-green-dark); }
.poj-btn--join {
  background: var(--poj-yellow);
  color: #1a1a2e;
  box-shadow: 0 3px 12px rgba(255,214,0,.4);
}
.poj-btn--join:hover { background: var(--poj-yellow-dark); }
.poj-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}
.poj-btn--outline {
  background: transparent;
  border: 2px solid var(--poj-yellow);
  color: var(--poj-yellow);
}
.poj-btn--outline:hover { background: var(--poj-yellow); color: #1a1a2e; }

/* ============================================================
   HEADER
   ============================================================ */
.poj-header {
  background: var(--poj-purple);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.poj-header__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  min-width: 0;
}
.poj-header__burger {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background .15s;
}
.poj-header__burger:hover { background: rgba(255,255,255,.12); }
.poj-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.poj-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.poj-header__logo img {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.poj-header__search {
  display: none;
  flex: 1;
  min-width: 0;
  position: relative;
}
.poj-header__search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border-radius: 50px;
  border: 0;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: background .15s;
}
.poj-header__search input::placeholder { color: rgba(255,255,255,.65); }
.poj-header__search input:focus { background: rgba(255,255,255,.22); }
.poj-header__search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .7;
  pointer-events: none;
}
.poj-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.poj-header__actions .poj-btn {
  padding: 9px 14px;
  font-size: 12px;
}
@media (min-width: 760px) {
  .poj-header__search { display: flex; }
  .poj-header__inner { gap: 14px; padding: 12px 0; }
  .poj-header__logo img { height: 46px; max-width: none; }
  .poj-header__actions { gap: 10px; }
  .poj-header__actions .poj-btn { padding: 10px 22px; font-size: 13.5px; }
}
@media (max-width: 479px) {
  .poj-header__actions .poj-btn--login { display: none; }
}

/* === SECONDARY NAV BAR === */
.poj-subnav {
  background: var(--poj-purple-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  overflow-x: auto;
  scrollbar-width: none;
}
.poj-subnav::-webkit-scrollbar { display: none; }
.poj-subnav__inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
  padding: 0 16px;
}
.poj-subnav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  max-width: none;
}
.poj-subnav a:hover { color: #fff; border-color: var(--poj-yellow); }
.poj-subnav a svg { flex-shrink: 0; }
@media (min-width: 760px) {
  .poj-subnav__inner { padding: 0 24px; }
  .poj-subnav a { padding: 11px 16px; font-size: 13px; }
}
/* Desktop: center the subnav links */
@media (min-width: 1024px) {
  .poj-subnav { overflow-x: visible; }
  .poj-subnav__inner {
    min-width: auto;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ============================================================
   MENU DRAWER (side panel — all screen sizes)
   ============================================================ */
.poj-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 500;
  flex-direction: column;
  background: var(--poj-purple);
  box-shadow: 4px 0 32px rgba(0,0,0,.45);
}
/* backdrop */
.poj-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  left: 100%;
  background: rgba(0,0,0,.55);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.poj-overlay.is-open { display: flex; }
.poj-overlay.is-open::before { opacity: 1; width: 100vw; pointer-events: auto; }
.poj-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--poj-purple-dark);
  flex-shrink: 0;
}
.poj-overlay__head img { height: 38px; width: auto; }
.poj-overlay__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.poj-overlay__body {
  overflow-y: auto;
  flex: 1;
  padding: 12px 0 80px;
}
.poj-overlay__section { padding: 6px 0; }
.poj-overlay__label {
  padding: 8px 20px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.poj-overlay__section a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background .12s, border-color .12s;
}
.poj-overlay__section a:hover { background: rgba(255,255,255,.08); border-left-color: var(--poj-yellow); }
.poj-overlay__actions {
  padding: 16px 20px;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.poj-overlay__actions .poj-btn { flex: 1; justify-content: center; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.poj-carousel {
  position: relative;
  overflow: hidden;
  background: var(--poj-purple);
}
.poj-carousel__track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.poj-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.poj-carousel__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(98,0,234,.92) 0%, rgba(94,23,235,.7) 45%, rgba(0,30,160,.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.poj-carousel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.poj-carousel__content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  width: 100%;
}
.poj-carousel__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
.poj-carousel__text {
  max-width: 540px;
  text-align: right;
}
.poj-carousel__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.poj-carousel__text h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
  margin-bottom: 10px;
  font-size: clamp(28px, 5vw, 54px);
}
.poj-carousel__text p {
  color: rgba(255,255,255,.88);
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 24px;
  line-height: 1.5;
}
.poj-carousel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--poj-yellow);
  color: #1a1a2e;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(255,214,0,.45);
  transition: background .15s, box-shadow .15s;
}
.poj-carousel__cta:hover { background: var(--poj-yellow-dark); }
.poj-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .15s;
  cursor: pointer;
}
.poj-carousel__arrow:hover { background: rgba(255,255,255,.32); }
.poj-carousel__arrow--prev { left: 16px; }
.poj-carousel__arrow--next { right: 16px; }
.poj-carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.poj-carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.poj-carousel__dot.is-active { background: var(--poj-yellow); transform: scale(1.3); }

@media (max-width: 639px) {
  .poj-carousel__slide { min-height: 240px; }
  .poj-carousel__inner { justify-content: center; }
  .poj-carousel__text { text-align: center; max-width: 100%; }
  .poj-carousel__content { padding: 32px 0 44px; }
  .poj-carousel__cta { width: 100%; justify-content: center; }
  .poj-carousel__arrow { display: none; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .poj-carousel__slide { min-height: 300px; }
}
@media (min-width: 1024px) {
  .poj-carousel__slide { min-height: 400px; }
}

/* ============================================================
   CATEGORY NAV PILLS
   ============================================================ */
.poj-cats {
  background: #fff;
  border-bottom: 2px solid var(--poj-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.poj-cats::-webkit-scrollbar { display: none; }
.poj-cats__inner {
  display: flex;
  align-items: center;
  min-width: max-content;
  padding: 0 16px;
  gap: 4px;
}
.poj-cats a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--poj-text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.poj-cats a:hover,
.poj-cats a.is-active { color: var(--poj-purple); border-color: var(--poj-purple); }
.poj-cats__icon { font-size: 22px; line-height: 1; }
@media (min-width: 760px) {
  .poj-cats__inner { padding: 0 24px; gap: 8px; }
  .poj-cats a { flex-direction: row; gap: 7px; padding: 16px 22px; }
  .poj-cats__icon { font-size: 20px; }
}
/* Desktop: center category pills */
@media (min-width: 1024px) {
  .poj-cats { overflow-x: visible; }
  .poj-cats__inner {
    min-width: auto;
    justify-content: center;
    flex-wrap: wrap;
    max-width: var(--poj-container);
    margin-inline: auto;
    padding: 0 40px;
  }
}

/* ============================================================
   PAGE WRAPPER / CONTENT
   ============================================================ */
.poj-main { background: #f5f3ff; }
.poj-section { padding: 48px 0; }
.poj-section--white { background: #fff; }
.poj-section--purple { background: var(--poj-purple); color: #fff; }
.poj-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
  flex-wrap: wrap;
}
.poj-section__title {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  color: var(--poj-text);
}
.poj-section--purple .poj-section__title { color: #fff; }
.poj-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--poj-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 50px;
}
.poj-badge--yellow { background: var(--poj-yellow); color: #1a1a2e; }
.poj-badge--green  { background: var(--poj-green);  color: #fff; }

/* === BREADCRUMBS === */
.poj-breadcrumbs {
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--poj-text-muted);
}
.poj-breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.poj-breadcrumbs a { color: var(--poj-purple); }
.poj-breadcrumbs a:hover { text-decoration: underline; }
.poj-breadcrumbs li + li::before { content: '›'; margin-right: 4px; }

/* === LEAD PARAGRAPH === */
.poj-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--poj-text-muted);
  line-height: 1.7;
  max-width: 820px;
  padding: 20px 0 0;
}

/* === CONTENT SECTION === */
.poj-content { padding-block: 40px; }
.poj-content h2 { color: var(--poj-purple); margin-bottom: 16px; }
.poj-content p { margin-bottom: 16px; color: var(--poj-text-muted); }
.poj-content ul {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.poj-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--poj-text);
}
.poj-content ul li::before {
  content: '✓';
  color: var(--poj-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === CONTENT IMAGES === */
article img,
section.poj-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(--poj-radius);
}
.poj-hero-img, .hero img, .banner img, img.banner {
  max-width: 100%;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
header img { max-height: 48px; width: auto; object-fit: contain; }
.poj-author-photo img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; }
footer img[src*="img_listing_casinos"] { max-height: 28px; width: auto; object-fit: contain; }
@media (max-width: 768px) {
  article img, section.poj-content img { max-height: 320px; }
  .poj-hero-img { max-height: 360px; }
}

/* === TABLE === */
.poj-table-wrap { overflow-x: auto; margin: 20px 0 24px; border-radius: var(--poj-radius); }
.poj-table-wrap table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.poj-table-wrap th {
  background: var(--poj-purple);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  text-align: left;
  font-size: 13px;
  letter-spacing: .04em;
}
.poj-table-wrap td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--poj-border);
  color: var(--poj-text-muted);
}
.poj-table-wrap tr:last-child td { border-bottom: 0; }
.poj-table-wrap tr:nth-child(even) td { background: #faf8ff; }

/* === BLOCKQUOTE === */
.poj-quote {
  border-left: 4px solid var(--poj-purple);
  background: linear-gradient(90deg, #f5f0ff 0%, #fff 100%);
  border-radius: 0 var(--poj-radius) var(--poj-radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  font-size: 16px;
  color: var(--poj-text);
  line-height: 1.7;
}
.poj-quote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--poj-purple);
  margin-top: 10px;
}

/* ============================================================
   /* OFFERS LISTING */
   ============================================================ */
.poj-offers { padding: 48px 0; background: #fff; }
.poj-offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
@media (min-width: 800px) {
  .poj-offers__grid {
    grid-template-columns: 1fr 1.08fr 1fr;
    align-items: start;
  }
}

/* Base card: article + overlay-link pattern */
.poj-offers__card {
  position: relative;
  background: #fff;
  border: 2px solid var(--poj-border);
  border-radius: var(--poj-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(98,0,234,.08);
  transition: box-shadow .2s, border-color .2s;
}
.poj-offers__card:hover {
  box-shadow: 0 8px 32px rgba(98,0,234,.18);
  border-color: var(--poj-purple-mid);
}

/* Overlay-link covers the entire card */
.poj-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
}

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

/* pointer-events control */
.poj-offers__card * { pointer-events: none; }
.poj-offers__card .poj-offers__overlay-link,
.poj-offers__card .poj-offers__review-link { pointer-events: auto; cursor: pointer; }
.poj-offers__overlay-link { z-index: 1; }
.poj-offers__review-link  { position: relative; z-index: 3; }

/* Card header area */
.poj-offers__head {
  background: linear-gradient(135deg, var(--poj-purple) 0%, var(--poj-purple-mid) 100%);
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.poj-offers__logo { flex-shrink: 0; }
.poj-offers__logo img {
  height: 44px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}
.poj-offers__brand-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.poj-offers__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
}
.poj-offers__stars span {
  font-size: 14px;
  color: var(--poj-yellow);
}
.poj-offers__rating-num {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-left: 3px;
}

/* Card body */
.poj-offers__body { padding: 18px 20px; }
.poj-offers__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0ebff;
  color: var(--poj-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.poj-offers__bonus {
  font-size: 19px;
  font-weight: 900;
  color: var(--poj-text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.poj-offers__usp {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.poj-offers__usp li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13.5px;
  color: var(--poj-text-muted);
}
.poj-offers__usp li::before {
  content: '✓';
  color: var(--poj-green);
  font-weight: 700;
  flex-shrink: 0;
}
.poj-offers__cta-row { padding: 0 20px 16px; display: flex; flex-direction: column; gap: 8px; }
.poj-offers__cta {
  display: block;
  text-align: center;
  background: var(--poj-yellow);
  color: #1a1a2e;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(255,214,0,.35);
}
.poj-offers__review-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--poj-purple);
  font-weight: 600;
  text-decoration: underline;
  padding: 4px 0 2px;
}
.poj-offers__urgency {
  padding: 0 20px 14px;
  font-size: 11.5px;
  color: var(--poj-text-muted);
  text-align: center;
}

/* CENTER CARD — TOP/FEATURED */
.poj-offers__card--top {
  border-color: var(--poj-yellow);
  box-shadow: 0 6px 32px rgba(255,214,0,.25), 0 4px 20px rgba(98,0,234,.12);
}
.poj-offers__card--top .poj-offers__head {
  background: linear-gradient(135deg, #3d00b8 0%, var(--poj-purple) 100%);
}
.poj-offers__ribbon {
  position: absolute;
  top: 18px;
  right: -24px;
  z-index: 5;
  background: var(--poj-yellow);
  color: #1a1a2e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 36px;
  transform: rotate(35deg);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.poj-offers__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.poj-offers__social {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff8e1;
  border: 1px solid rgba(255,214,0,.4);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--poj-text);
  margin-bottom: 12px;
}
.poj-offers__timer-wrap {
  background: #f5f0ff;
  border-radius: var(--poj-radius-sm);
  padding: 10px 12px;
  text-align: center;
  margin-bottom: 12px;
}
.poj-offers__timer-label {
  font-size: 11px;
  color: var(--poj-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.poj-offers__timer {
  font-size: 22px;
  font-weight: 900;
  color: var(--poj-purple);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.poj-offers__timer span { color: var(--poj-purple); }
.poj-offers__card--top .poj-offers__cta {
  background: var(--poj-purple);
  color: #fff;
  box-shadow: 0 4px 18px rgba(98,0,234,.35);
}
.poj-offers__aggregate {
  text-align: center;
  font-size: 14px;
  color: var(--poj-text-muted);
  margin-top: 8px;
}
.poj-offers__aggregate strong { color: var(--poj-text); }

@media (max-width: 799px) {
  .poj-offers__card--top { order: -1; }
}

/* ============================================================
   /* SLOTS LISTING */
   ============================================================ */
.poj-slots { padding: 48px 0; background: #f5f3ff; }
.poj-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px)  { .poj-slots__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 900px)  { .poj-slots__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1200px) { .poj-slots__grid { grid-template-columns: repeat(5, 1fr); gap: 18px; } }

/* Outer div = visual container for the tile */
.poj-slots__grid > div {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--poj-radius);
  overflow: hidden;
  border: 1px solid var(--poj-border);
  box-shadow: 0 2px 10px rgba(98,0,234,.08);
  transition: box-shadow .2s, border-color .2s;
  background: #1a1a2e;
}
.poj-slots__grid > div:hover {
  box-shadow: 0 6px 24px rgba(98,0,234,.22);
  border-color: var(--poj-purple-mid);
}

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

/* pointer-events: decorations pass clicks to the <a> */
.poj-slots__top-row,
.poj-slots__meta-row,
.poj-slots__overlay,
.poj-slots__play-icon { pointer-events: none; }

.poj-slots__top-row {
  position: absolute;
  top: 8px; left: 8px; right: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 3;
}
.poj-slots__hot {
  background: #ff3d3d;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
}
.poj-slots__rtp-badge {
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
}

.poj-slots__meta-row {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  padding: 20px 10px 10px;
}
.poj-slots__name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.poj-slots__info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(255,255,255,.75);
  flex-wrap: wrap;
}
.poj-slots__volt { color: var(--poj-yellow); }
.poj-slots__maxwin { color: #a0f0a0; }

.poj-slots__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  background: rgba(98,0,234,.55);
  transition: opacity .2s;
}
.poj-slots__play-icon span {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--poj-yellow);
  color: #1a1a2e;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.poj-slots__grid > div:hover .poj-slots__play-icon { opacity: 1; }

.poj-slots__more {
  text-align: center;
  margin-top: 28px;
}

/* ============================================================
   AUTHOR BLOCK
   ============================================================ */
.poj-author {
  background: #fff;
  border: 1px solid var(--poj-border);
  border-radius: var(--poj-radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 100%;
}
.poj-author__photo {
  flex-shrink: 0;
}
.poj-author__photo img {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--poj-purple);
  display: block;
}
.poj-author__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--poj-text);
  margin-bottom: 2px;
}
.poj-author__role {
  font-size: 13px;
  color: var(--poj-purple);
  font-weight: 600;
  margin-bottom: 10px;
}
.poj-author__bio {
  font-size: 14px;
  color: var(--poj-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.poj-author__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0077b5;
}
.poj-author__linkedin:hover { text-decoration: underline; }
.poj-author__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #f0ebff;
  color: var(--poj-purple);
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 6px;
}
@media (max-width: 560px) {
  .poj-author { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   FAQ
   ============================================================ */
.poj-faq { padding: 48px 0; background: #fff; }
.poj-faq__list { max-width: 100%; }
.poj-faq__item {
  border: 1px solid var(--poj-border);
  border-radius: var(--poj-radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.poj-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--poj-text);
  background: #faf8ff;
  user-select: none;
  list-style: none;
}
.poj-faq__q::-webkit-details-marker { display: none; }
.poj-faq__q::after {
  content: '+';
  font-size: 22px;
  color: var(--poj-purple);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
details[open] > .poj-faq__q::after { transform: rotate(45deg); }
.poj-faq__a {
  padding: 14px 20px 16px;
  font-size: 14.5px;
  color: var(--poj-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--poj-border);
}

/* ============================================================
   RELATED LINKS
   ============================================================ */
.poj-related { padding: 32px 0; }
.poj-related__title { font-size: 14px; font-weight: 700; color: var(--poj-text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.poj-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.poj-related__list a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--poj-border);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--poj-purple);
  font-weight: 600;
  transition: background .15s, border-color .15s;
  pointer-events: auto;
}
.poj-related__list a:hover { background: #f0ebff; border-color: var(--poj-purple); }

/* ============================================================
   MOBILE FAB
   ============================================================ */
.poj-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 40px;
  background: var(--poj-yellow);
  color: #1a1a2e;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255,214,0,.5), 0 2px 8px rgba(0,0,0,.4);
  transition: background .15s;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  text-align: center;
}
.poj-fab::after { content: ' ▶'; font-size: 11px; }
.poj-fab:hover { background: var(--poj-yellow-dark); }
@media (max-width: 979px) { .poj-fab { display: inline-flex; } }
@media (max-width: 480px) { .poj-fab { padding: 16px 30px; font-size: 15px; min-width: 220px; } }
body.is-cookies-shown .poj-fab { bottom: 110px; }

/* ============================================================
   FOOTER
   ============================================================ */
.poj-footer {
  background: var(--poj-purple-footer);
  color: rgba(255,255,255,.8);
  padding: 52px 0 0;
  font-size: 14px;
}
.poj-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.poj-footer__brand { grid-column: 1 / -1; }
.poj-footer__brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}
.poj-footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.poj-footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.poj-footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.poj-footer__social-link:hover { background: var(--poj-purple); }
.poj-footer__social-link svg { width: 16px; height: 16px; fill: #fff; }
.poj-footer__col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.poj-footer__col ul li { margin-bottom: 7px; }
.poj-footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.poj-footer__col a:hover { color: var(--poj-yellow); }

@media (min-width: 600px) {
  .poj-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .poj-footer__top {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
  .poj-footer__brand { grid-column: auto; }
}

/* Payment methods — TEXT style */
.poj-footer__pay { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.poj-footer__pay h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.poj-footer__pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.poj-footer__pay-method {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--poj-radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
  transition: background .15s, border-color .15s;
}
.poj-footer__pay-method:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.35); }
.poj-footer__pay-method span { font-size: 16px; line-height: 1; }

/* Trust badges */
.poj-footer__trust { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.poj-footer__trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.poj-footer__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--poj-radius-sm);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.poj-footer__trust-item span { font-size: 18px; }

/* Responsible gambling */
.poj-footer__rg { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.poj-footer__rg-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.poj-footer__rg-badge {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--poj-purple);
  border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}
.poj-footer__rg p {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.poj-footer__rg a { color: rgba(255,255,255,.75); text-decoration: underline; }

/* Bottom bar */
.poj-footer__bottom {
  padding: 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.poj-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.poj-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.poj-footer__legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}
.poj-footer__legal-links a:hover { color: rgba(255,255,255,.8); }

@media (max-width: 599px) {
  .poj-footer { padding: 30px 0 0; font-size: 12px; }
  .poj-footer__col h4 { font-size: 10px; margin-bottom: 8px; }
  .poj-footer__col ul li { margin-bottom: 5px; }
  .poj-footer__col a { font-size: 12px; }
  .poj-footer__brand img { max-height: 32px; margin-bottom: 10px; }
  .poj-footer__brand p { font-size: 12px; margin-bottom: 10px; }
  .poj-footer__pay-methods { gap: 6px; }
  .poj-footer__pay-method { padding: 6px 10px; font-size: 12px; }
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.poj-sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 500px)  { .poj-sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 800px)  { .poj-sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .poj-sitemap-grid { grid-template-columns: repeat(4, 1fr); } }
.poj-sitemap-card {
  background: #fff;
  border: 1px solid var(--poj-border);
  border-radius: var(--poj-radius);
  padding: 16px 18px;
  transition: box-shadow .15s, border-color .15s;
}
.poj-sitemap-card:hover { box-shadow: var(--poj-shadow); border-color: var(--poj-purple-mid); }
.poj-sitemap-card a {
  font-weight: 700;
  font-size: 14px;
  color: var(--poj-purple);
  display: block;
  margin-bottom: 5px;
  pointer-events: auto;
}
.poj-sitemap-card a:hover { text-decoration: underline; }
.poj-sitemap-card p { font-size: 12.5px; color: var(--poj-text-muted); }
.poj-sitemap-section-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--poj-purple);
  padding: 12px 0 8px;
  border-bottom: 2px solid var(--poj-purple);
  margin-bottom: 14px;
}

/* ============================================================
   GLOBAL MOBILE PADDING GUARD ≤ 759px
   ============================================================ */
@media (max-width: 759px) {
  /* Guarantee container always has side padding */
  .poj-container { padding-inline: 20px; }

  /* Author block compact on mobile */
  .poj-author { padding: 20px; }
}
