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

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { border: 0; background: none; cursor: pointer; font: inherit; }
h1, h2, h3, h4, h5, h6, p, li, blockquote, td, th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--pc-text);
  background: var(--pc-bg);
}

h1, h2, h3, h4,
.pc-offers__name,
.pc-slots__name,
.pc-author__name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800;
  line-height: 1.2;
}

/* CSS VARIABLES — palette from promotionscasinoplayojo.online */
:root {
  --pc-bg: #ffffff;
  --pc-bg-raised: #faf6fd;
  --pc-bg-card: #ffffff;
  --pc-bg-header: #6e25a3;
  --pc-text: #2a1340;
  --pc-text-muted: #7f7290;
  --pc-accent: #ffce00;
  --pc-accent-rgb: 255, 206, 0;
  --pc-purple: #9b3ed7;
  --pc-purple-deep: #6e25a3;
  --pc-green: #26c33b;
  --pc-pink: #ff5da2;
  --pc-border: #e8def0;
  --pc-border-accent: rgba(255,206,0,0.35);
  --pc-radius: 12px;
  --pc-shadow: 0 4px 24px rgba(74,25,121,0.12);
  --pc-container: 1240px;
}

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

/* CONTENT IMAGES */
article img,
section.content img,
main p img {
  max-width: 720px;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 24px auto;
  border-radius: var(--pc-radius);
}
.hero img, .banner img, img.banner {
  max-width: 100%;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
  height: auto;
}
footer img[src*="img_listing_casinos"] {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  article img, section.content img, main p img { max-height: 320px; }
  .hero img, .banner img { max-height: 360px; }
}

/* BUTTONS */
.pc-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: 0.04em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  max-width: 100%;
  white-space: nowrap;
}
.pc-btn--primary {
  background: var(--pc-accent);
  color: #0d1226;
}
.pc-btn--primary:hover { background: #ffe033; }
.pc-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.pc-btn--outline:hover { border-color: var(--pc-accent); color: var(--pc-accent); }
.pc-btn--lg { padding: 14px 32px; font-size: 15px; }
.pc-btn--green {
  background: var(--pc-green);
  color: #fff;
}
.pc-btn--green:hover { background: #00c060; }

/* HEADER */
.pc-header {
  background: var(--pc-bg-header);
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
}
.pc-header::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #7b2cbf, #ffd000, #00a651, #7b2cbf);
}
.pc-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.pc-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: visible;
}
.pc-header__logo img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (min-width: 760px) {
  .pc-header__logo img { height: 48px; max-width: none; }
  .pc-header__inner { gap: 18px; padding: 14px 0; }
}

/* HEADER NAV */
.pc-header__nav {
  display: none;
  flex: 1;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
@media (min-width: 1024px) { .pc-header__nav { display: flex; } }
.pc-header__nav a {
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s;
  white-space: nowrap;
}
.pc-header__nav a:hover,
.pc-header__nav a[aria-current="page"] { color: var(--pc-accent); }

/* HEADER ACTIONS */
.pc-header__search {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 140px;
}
@media (min-width: 900px) { .pc-header__search { max-width: 220px; } }
.pc-header__search input {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 7px 30px 7px 12px;
  color: #fff;
  font-size: 12px;
  outline: none;
  transition: background .15s, border-color .15s;
}
@media (min-width: 900px) {
  .pc-header__search input { padding: 7px 34px 7px 14px; font-size: 13px; }
}
.pc-header__search input::placeholder { color: rgba(255,255,255,.45); }
.pc-header__search input:focus { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }
.pc-header__search svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,.5);
  pointer-events: none;
}

.pc-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  flex-shrink: 0;
}
.pc-header__actions .pc-btn {
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
@media (min-width: 760px) {
  .pc-header__actions { gap: 10px; }
  .pc-header__actions .pc-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: 0.04em; }
}
@media (max-width: 479px) {
  .pc-header__actions .pc-btn--login { display: none; }
}

/* BURGER */
.pc-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
  cursor: pointer;
}
@media (min-width: 1024px) { .pc-header__burger { display: none; } }
.pc-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.pc-header--open .pc-header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pc-header--open .pc-header__burger span:nth-child(2) { opacity: 0; }
.pc-header--open .pc-header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
.pc-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42,19,64,0.98);
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}
.pc-mobile-menu.is-open { display: flex; }
.pc-mobile-menu__close {
  align-self: flex-end;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
}
.pc-mobile-menu nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pc-mobile-menu nav a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--pc-border);
}
.pc-mobile-menu nav a:hover { color: var(--pc-accent); }
.pc-mobile-menu__cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* SUBNAV */
.pc-subnav {
  background: #faf6fd;
  border-bottom: 2px solid #e8def0;
}
.pc-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0;
}
.pc-subnav__inner::-webkit-scrollbar { display: none; }
.pc-subnav__inner a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: #7f7290;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  position: relative;
}
.pc-subnav__inner a:hover,
.pc-subnav__inner a.is-active {
  color: #6e25a3;
  border-bottom-color: var(--pc-accent);
}

/* HERO */
.pc-hero {
  background:
    linear-gradient(135deg, rgba(30,8,60,0.72) 0%, rgba(80,20,130,0.65) 50%, rgba(100,30,160,0.60) 100%),
    url("/img/banner.jpg");
  background-size: cover, cover;
  background-position: center, center right;
}
.pc-hero-DISABLED-START {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 500'%3E%3Cdefs%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='3' result='blur'/%3E%3CfeMerge%3E%3CfeMergeNode in='blur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3C!-- Stars --%3E%3Ccircle cx='50' cy='80' r='2' fill='%23c77dff' opacity='.7'/%3E%3Ccircle cx='150' cy='40' r='1.5' fill='%23e0aaff' opacity='.5'/%3E%3Ccircle cx='300' cy='120' r='2' fill='%23c77dff' opacity='.6'/%3E%3Ccircle cx='900' cy='60' r='2.5' fill='%23e0aaff' opacity='.5'/%3E%3Ccircle cx='1050' cy='30' r='1.5' fill='%23c77dff' opacity='.7'/%3E%3Ccircle cx='1150' cy='90' r='2' fill='%23e0aaff' opacity='.4'/%3E%3Ccircle cx='700' cy='20' r='1.5' fill='%23c77dff' opacity='.6'/%3E%3Ccircle cx='500' cy='450' r='2' fill='%23e0aaff' opacity='.4'/%3E%3Ccircle cx='80' cy='400' r='1.5' fill='%23c77dff' opacity='.5'/%3E%3Ccircle cx='1100' cy='420' r='2' fill='%23e0aaff' opacity='.5'/%3E%3C!-- Roulette wheel (top center) --%3E%3Cg transform='translate(580,60) rotate(-15)' filter='url(%23glow)'%3E%3Ccircle cx='0' cy='0' r='80' fill='none' stroke='%23c77dff' stroke-width='2.5' opacity='.55'/%3E%3Ccircle cx='0' cy='0' r='60' fill='none' stroke='%23e040fb' stroke-width='1.5' opacity='.4'/%3E%3Ccircle cx='0' cy='0' r='40' fill='none' stroke='%23c77dff' stroke-width='1.5' opacity='.35'/%3E%3Ccircle cx='0' cy='0' r='15' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.5'/%3E%3Cline x1='0' y1='-80' x2='0' y2='80' stroke='%23c77dff' stroke-width='1' opacity='.3'/%3E%3Cline x1='-80' y1='0' x2='80' y2='0' stroke='%23c77dff' stroke-width='1' opacity='.3'/%3E%3Cline x1='-57' y1='-57' x2='57' y2='57' stroke='%23c77dff' stroke-width='1' opacity='.25'/%3E%3Cline x1='57' y1='-57' x2='-57' y2='57' stroke='%23c77dff' stroke-width='1' opacity='.25'/%3E%3C/g%3E%3C!-- Slot drum reel 1 --%3E%3Cg transform='translate(870,120)' filter='url(%23glow)'%3E%3Cellipse cx='40' cy='12' rx='40' ry='12' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.55'/%3E%3Crect x='0' y='12' width='80' height='200' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.45'/%3E%3Cellipse cx='40' cy='212' rx='40' ry='12' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.55'/%3E%3Cline x1='0' y1='80' x2='80' y2='80' stroke='%23ff9800' stroke-width='1' opacity='.3'/%3E%3Cline x1='0' y1='145' x2='80' y2='145' stroke='%23ff9800' stroke-width='1' opacity='.3'/%3E%3Ctext x='40' y='70' text-anchor='middle' font-size='28' fill='%23ff5252' opacity='.7' font-weight='bold'%3E♥%3C/text%3E%3Ctext x='40' y='135' text-anchor='middle' font-size='34' fill='%23ff5252' opacity='.8' font-weight='bold'%3E7%3C/text%3E%3Ctext x='40' y='200' text-anchor='middle' font-size='28' fill='%23ffce00' opacity='.65'%3E★%3C/text%3E%3C/g%3E%3C!-- Slot drum reel 2 --%3E%3Cg transform='translate(970,100)' filter='url(%23glow)'%3E%3Cellipse cx='40' cy='12' rx='40' ry='12' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.55'/%3E%3Crect x='0' y='12' width='80' height='230' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.45'/%3E%3Cellipse cx='40' cy='242' rx='40' ry='12' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.55'/%3E%3Cline x1='0' y1='90' x2='80' y2='90' stroke='%23ff9800' stroke-width='1' opacity='.3'/%3E%3Cline x1='0' y1='165' x2='80' y2='165' stroke='%23ff9800' stroke-width='1' opacity='.3'/%3E%3Ctext x='40' y='80' text-anchor='middle' font-size='28' fill='%23ffce00' opacity='.65'%3E★%3C/text%3E%3Ctext x='40' y='155' text-anchor='middle' font-size='34' fill='%23ff5252' opacity='.8' font-weight='bold'%3E7%3C/text%3E%3Ctext x='40' y='232' text-anchor='middle' font-size='28' fill='%23e040fb' opacity='.65'%3E♦%3C/text%3E%3C/g%3E%3C!-- Slot drum reel 3 --%3E%3Cg transform='translate(1070,130)' filter='url(%23glow)'%3E%3Cellipse cx='40' cy='12' rx='40' ry='12' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.55'/%3E%3Crect x='0' y='12' width='80' height='210' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.45'/%3E%3Cellipse cx='40' cy='222' rx='40' ry='12' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.55'/%3E%3Cline x1='0' y1='85' x2='80' y2='85' stroke='%23ff9800' stroke-width='1' opacity='.3'/%3E%3Cline x1='0' y1='155' x2='80' y2='155' stroke='%23ff9800' stroke-width='1' opacity='.3'/%3E%3Ctext x='40' y='75' text-anchor='middle' font-size='28' fill='%23e040fb' opacity='.65'%3E♣%3C/text%3E%3Ctext x='40' y='145' text-anchor='middle' font-size='34' fill='%23ffce00' opacity='.8' font-weight='bold'%3E★%3C/text%3E%3Ctext x='40' y='215' text-anchor='middle' font-size='28' fill='%23ff5252' opacity='.65'%3E7%3C/text%3E%3C/g%3E%3C!-- Playing cards (left, tilted) --%3E%3Cg transform='translate(60,180) rotate(-25)' filter='url(%23glow)'%3E%3Crect x='0' y='0' width='90' height='130' rx='10' fill='none' stroke='%23c77dff' stroke-width='2' opacity='.55'/%3E%3Ctext x='45' y='80' text-anchor='middle' font-size='40' fill='%23c77dff' opacity='.6'%3E♠%3C/text%3E%3C/g%3E%3Cg transform='translate(130,220) rotate(-10)' filter='url(%23glow)'%3E%3Crect x='0' y='0' width='90' height='130' rx='10' fill='none' stroke='%23e040fb' stroke-width='2' opacity='.5'/%3E%3Ctext x='45' y='80' text-anchor='middle' font-size='40' fill='%23e040fb' opacity='.55'%3E♥%3C/text%3E%3C/g%3E%3C!-- Diamond (bottom left) --%3E%3Cg transform='translate(30,310)' filter='url(%23glow)'%3E%3Cpolygon points='60,0 110,60 60,120 10,60' fill='none' stroke='%23c77dff' stroke-width='2' opacity='.45'/%3E%3C/g%3E%3C!-- Chips (scattered) --%3E%3Ccircle cx='820' cy='400' r='35' fill='none' stroke='%2300e5ff' stroke-width='2' opacity='.35' filter='url(%23glow)'/%3E%3Ccircle cx='820' cy='400' r='25' fill='none' stroke='%2300e5ff' stroke-width='1' opacity='.25'/%3E%3Ccircle cx='400' cy='420' r='28' fill='none' stroke='%23ff9800' stroke-width='2' opacity='.3' filter='url(%23glow)'/%3E%3Ccircle cx='400' cy='420' r='18' fill='none' stroke='%23ff9800' stroke-width='1' opacity='.2'/%3E%3C!-- Arrow/cursor (center glow) --%3E%3Cg transform='translate(560,220)' filter='url(%23glow)'%3E%3Ccircle cx='0' cy='0' r='45' fill='none' stroke='%23e040fb' stroke-width='1.5' opacity='.25'/%3E%3Cpath d='M-10,-30 L10,-30 L5,10 L15,10 L0,30 L-15,10 L-5,10 Z' fill='none' stroke='%23c77dff' stroke-width='1.5' opacity='.35'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}
.pc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255,152,0,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 50%, rgba(224,64,251,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.pc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pc-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 60px 0 70px;
  min-width: 0;
  max-width: 100%;
}
.pc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,208,0,0.12);
  border: 1px solid rgba(255,208,0,0.3);
  color: var(--pc-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.pc-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
  max-width: 680px;
}
.pc-hero h1 span { color: var(--pc-accent); }
.pc-hero__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
}
.pc-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pc-hero__ctas .pc-btn {
  max-width: 100%;
}
.pc-hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pc-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  font-weight: 600;
}
.pc-hero__trust-item svg { color: var(--pc-green); filter: drop-shadow(0 0 2px rgba(0,0,0,.6)); }
@media (max-width: 639px) {
  .pc-hero__inner { padding: 36px 0 44px; gap: 14px; }
  .pc-hero__lead { font-size: 14px; }
  .pc-hero__ctas .pc-btn--lg { padding: 13px 18px; font-size: 13.5px; width: 100%; }
}

/* BREADCRUMBS */
.pc-breadcrumbs {
  padding: 10px 0;
  border-bottom: 1px solid var(--pc-border);
}
.pc-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.pc-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--pc-text-muted);
}
.pc-breadcrumbs li a { color: var(--pc-text-muted); }
.pc-breadcrumbs li a:hover { color: var(--pc-accent); }
.pc-breadcrumbs li:not(:last-child)::after { content: '›'; }

/* SECTIONS */
.pc-section { padding: 52px 0; }
.pc-section--sm { padding: 32px 0; }
.pc-section__head {
  margin-bottom: 32px;
}
.pc-section__title {
  font-size: clamp(22px, 3vw, 32px);
  color: #2a1340;
  margin-bottom: 8px;
}
.pc-section__lead {
  color: var(--pc-text-muted);
  font-size: 15px;
}

/* CONTENT SECTION */
.pc-content { padding: 40px 0; }
.pc-content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #2a1340;
  margin-bottom: 16px;
}
.pc-content p { color: var(--pc-text); margin-bottom: 16px; line-height: 1.75; }
.pc-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--pc-text);
  margin-bottom: 16px;
}
.pc-content ul li { margin-bottom: 8px; }
blockquote {
  border-left: 3px solid var(--pc-accent);
  padding: 16px 20px;
  background: var(--pc-bg-raised);
  border-radius: 0 var(--pc-radius) var(--pc-radius) 0;
  margin: 24px 0;
  color: #4a3b66;
  font-style: italic;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 0;
}
th {
  background: var(--pc-bg-raised);
  color: var(--pc-accent);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--pc-border-accent);
}
td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--pc-border);
  color: var(--pc-text);
}
tr:hover td { background: rgba(255,255,255,0.02); }
.pc-table-wrap { overflow-x: auto; border-radius: var(--pc-radius); border: 1px solid var(--pc-border); }

/* OFFERS LISTING */
.pc-offers {
  padding: 52px 0;
}
.pc-offers__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.pc-offers__card {
  position: relative;
  background: var(--pc-bg-card);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pc-offers__card:hover {
  border-color: rgba(255,208,0,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.pc-offers__card--top {
  border-color: rgba(255,208,0,0.4);
  box-shadow: 0 4px 24px rgba(255,208,0,0.12);
  padding-top: 36px;
}
.pc-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
}
.pc-offers__card > *:not(.pc-offers__overlay-link) {
  position: relative;
  z-index: 2;
}
.pc-offers__card * { pointer-events: none; }
.pc-offers__card .pc-offers__overlay-link,
.pc-offers__card .pc-offers__review-link {
  pointer-events: auto;
  cursor: pointer;
}
.pc-offers__review-link { position: relative; z-index: 3; }

/* RIBBON */
.pc-offers__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--pc-accent);
  color: #0d1226;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  text-align: center;
  transform: none;
  z-index: 3;
  pointer-events: none;
}

/* CARD TOP ROW */
.pc-offers__top {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 20px 20px 0;
  align-items: start;
}
.pc-offers__logo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-offers__logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  padding: 6px;
}
.pc-offers__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-offers__name {
  font-size: 18px;
  font-weight: 800;
  color: #2a1340;
}
.pc-offers__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pc-offers__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,208,0,0.12);
  color: var(--pc-accent);
  border: 1px solid rgba(255,208,0,0.25);
  letter-spacing: 0.04em;
}
.pc-offers__tag--green {
  background: rgba(0,166,81,0.12);
  color: var(--pc-green);
  border-color: rgba(0,166,81,0.25);
}
.pc-offers__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--pc-text-muted);
}
.pc-offers__stars { color: var(--pc-accent); font-size: 13px; }

/* CARD BODY */
.pc-offers__body { padding: 16px 20px 0; }
.pc-offers__bonus {
  font-size: 20px;
  font-weight: 800;
  color: var(--pc-accent);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  margin-bottom: 12px;
}
.pc-offers__usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 14px;
}
@media (max-width: 480px) {
  .pc-offers__usps { grid-template-columns: 1fr; }
}
.pc-offers__usp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4a3b66;
}
.pc-offers__usp::before {
  content: '✓';
  color: var(--pc-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* SOCIAL PROOF */
.pc-offers__social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #7f7290;
  margin-bottom: 10px;
}
.pc-offers__social span { color: var(--pc-accent); font-weight: 700; }

/* TIMER */
.pc-offers__timer-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #7f7290;
  margin-bottom: 14px;
}
.pc-offers__timer {
  font-family: 'Plus Jakarta Sans', monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--pc-accent);
  letter-spacing: 0.04em;
}

/* CARD CTA ROW */
.pc-offers__cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px dashed var(--pc-border);
  flex-wrap: wrap;
}
.pc-offers__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--pc-accent);
  color: #0d1226;
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pc-offers__review-link {
  font-size: 12.5px;
  color: var(--pc-text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(138,147,176,0.35);
}
.pc-offers__review-link:hover { color: #6e25a3; }
.pc-offers__urgency {
  padding: 8px 20px 12px;
  font-size: 11.5px;
  color: var(--pc-text-muted);
}

/* AGGREGATE RATING */
.pc-offers__aggregate {
  max-width: 780px;
  margin: 14px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--pc-text-muted);
}
.pc-offers__aggregate span { color: var(--pc-accent); }

/* SLOTS LISTING */
.pc-slots { padding: 52px 0; }
.pc-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) {
  .pc-slots__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .pc-slots__grid { grid-template-columns: repeat(6, 1fr); gap: 14px; }
}
.pc-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--pc-border);
  background: var(--pc-bg-card);
}
.pc-slots__grid > div:hover {
  border-color: rgba(255,208,0,0.35);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.pc-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.pc-slots__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-slots__top-row,
.pc-slots__meta-row,
.pc-slots__overlay,
.pc-slots__play-icon { pointer-events: none; }
.pc-slots__top-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px;
  z-index: 2;
}
.pc-slots__hot {
  background: #e53e3e;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}
.pc-slots__rtp {
  background: rgba(0,0,0,0.65);
  color: var(--pc-accent);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}
.pc-slots__meta-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 8px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  z-index: 2;
}
.pc-slots__name {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 2px;
  display: block;
}
.pc-slots__sub {
  color: rgba(255,255,255,0.6);
  font-size: 9px;
}
.pc-slots__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,18,38,0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
}
.pc-slots__grid > div:hover .pc-slots__overlay { opacity: 1; }
.pc-slots__play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-slots__play-icon svg { color: #0d1226; width: 18px; height: 18px; }
.pc-slots__overlay-text {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* AUTHOR BLOCK */
.pc-author {
  background: var(--pc-bg-raised);
  border-radius: var(--pc-radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 40px 0;
  border: 1px solid var(--pc-border);
}
@media (max-width: 600px) {
  .pc-author { flex-direction: column; }
}
.pc-author__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.pc-author__body { flex: 1; min-width: 0; }
.pc-author__name {
  font-size: 17px;
  color: #2a1340;
  margin-bottom: 2px;
}
.pc-author__role {
  font-size: 12.5px;
  color: var(--pc-text-muted);
  margin-bottom: 10px;
}
.pc-author__bio {
  font-size: 13.5px;
  color: #4a3b66;
  line-height: 1.65;
  margin-bottom: 12px;
}
.pc-author__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pc-author__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--pc-text-muted);
  border: 1px solid var(--pc-border);
  padding: 4px 10px;
  border-radius: 999px;
  transition: color 0.15s, border-color 0.15s;
}
.pc-author__link:hover { color: var(--pc-accent); border-color: var(--pc-border-accent); }
.pc-author__badge {
  margin-top: 10px;
  font-size: 11px;
  color: #7f7290;
}
.pc-author__badge span { color: var(--pc-green); font-weight: 600; }

/* FAQ */
.pc-faq { padding: 40px 0; }
.pc-faq h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #2a1340;
  margin-bottom: 24px;
}
.pc-faq__item {
  border: 1px solid var(--pc-border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.pc-faq__item summary {
  padding: 16px 20px;
  cursor: pointer;
  color: #2a1340;
  font-weight: 600;
  font-size: 14.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--pc-bg-card);
}
.pc-faq__item summary::-webkit-details-marker { display: none; }
.pc-faq__item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--pc-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.pc-faq__item[open] summary::after { transform: rotate(45deg); }
.pc-faq__item p {
  padding: 14px 20px;
  font-size: 13.5px;
  color: #4a3b66;
  line-height: 1.7;
  background: var(--pc-bg-raised);
}

/* RELATED LINKS */
.pc-related { padding: 32px 0; border-top: 1px solid var(--pc-border); }
.pc-related h3 { color: var(--pc-text-muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pc-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pc-related__links a {
  font-size: 13px;
  color: var(--pc-text-muted);
  padding: 5px 12px;
  border: 1px solid var(--pc-border);
  border-radius: 999px;
  transition: color 0.15s, border-color 0.15s;
}
.pc-related__links a:hover { color: var(--pc-accent); border-color: var(--pc-border-accent); }

/* FAB */
.pc-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 60;
  padding: 18px 38px;
  background: var(--pc-accent);
  color: #0d1226;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(var(--pc-accent-rgb), 0.5), 0 2px 8px rgba(0,0,0,0.6);
  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;
}
.pc-fab::after { content: "▶"; font-size: 11px; }
.pc-fab:hover { transform: translate(-50%, -2px); }
.pc-fab:active { transform: translate(-50%, 0); }
@media (max-width: 979px) { .pc-fab { display: inline-flex; } }
@media (max-width: 480px) { .pc-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }
body.is-cookies-shown .pc-fab { bottom: 110px; }
@media (max-width: 480px) { body.is-cookies-shown .pc-fab { bottom: 150px; } }
@media (max-width: 979px) { .pc-foot { padding-bottom: 84px; } }

/* FOOTER — 3-STRIP FLAT */
.pc-foot {
  background: #2a1340;
  border-top: 1px solid rgba(155,62,215,0.2);
}
.pc-foot__zone1 {
  border-bottom: 1px solid var(--pc-border);
  padding: 28px 0;
}
.pc-foot__zone1-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.pc-foot__logo img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@media (max-width: 639px) {
  .pc-foot__logo img { height: 70px; max-width: 180px; }
}
.pc-foot__tagline {
  font-size: 13px;
  color: var(--pc-text-muted);
  flex: 1;
  min-width: 160px;
}
.pc-foot__newsletter {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--pc-border);
  border-radius: 999px;
  overflow: hidden;
  max-width: 300px;
  flex: 1;
}
.pc-foot__newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 9px 16px;
  font-size: 13px;
  color: #fff;
  outline: none;
  min-width: 0;
}
.pc-foot__newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.pc-foot__newsletter button {
  background: var(--pc-accent);
  border: 0;
  padding: 9px 14px;
  color: #0d1226;
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
  flex-shrink: 0;
}
.pc-foot__socials {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pc-foot__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--pc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
}
.pc-foot__social:hover { background: var(--pc-accent); color: #0d1226; border-color: var(--pc-accent); }
.pc-foot__social svg { width: 15px; height: 15px; }

.pc-foot__zone2 {
  padding: 20px 0;
  border-bottom: 1px solid var(--pc-border);
}
.pc-foot__zone2-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: baseline;
  font-size: 12.5px;
  line-height: 1.8;
}
.pc-foot__cat {
  color: var(--pc-accent);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: 2px;
}
.pc-foot__zone2-inner a {
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.pc-foot__zone2-inner a:hover { color: var(--pc-accent); }
.pc-foot__dot { color: var(--pc-border); margin: 0 2px; }

.pc-foot__zone3 { padding: 20px 0; }
.pc-foot__zone3-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pc-foot__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.pc-foot__payments img {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(20%);
}
.pc-foot__responsible {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pc-foot__rg-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--pc-border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.pc-foot__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 800px;
}
.pc-foot__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
}
.pc-foot__bottom a { color: rgba(255,255,255,0.35); }
.pc-foot__bottom a:hover { color: var(--pc-accent); }

/* SITEMAP PAGE */
.pc-sitemap { padding: 52px 0; }
.pc-sitemap__group { margin-bottom: 36px; }
.pc-sitemap__group-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pc-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--pc-border);
}
.pc-sitemap__links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 16px;
}
.pc-sitemap__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--pc-bg-card);
  border: 1px solid var(--pc-border);
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  transition: border-color 0.15s, color 0.15s;
}
.pc-sitemap__link:hover { border-color: var(--pc-border-accent); color: var(--pc-accent); }
.pc-sitemap__link::before { content: '→'; color: var(--pc-accent); font-size: 12px; }
