/* =============================================
   playojo-casino-online.com — style.css
   Prefix: pc-
   ============================================= */

/* 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: var(--pc-bg); color: var(--pc-text); font-size: 15px; line-height: 1.6; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; line-height: 1.2; }
h1, h2, h3, p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }

/* VARIABLES */
:root {
  --pc-bg: #f4f2fa;
  --pc-bg-raised: #ffffff;
  --pc-bg-dark: #0e0820;
  --pc-header-bg: #7b2cbf;
  --pc-topbar-bg: #1a1f4f;
  --pc-text: #1a1033;
  --pc-text-muted: #5e5b70;
  --pc-text-light: #ffffff;
  --pc-accent: #00a651;
  --pc-accent-hover: #008f44;
  --pc-yellow: #ffd000;
  --pc-yellow-hover: #e6bb00;
  --pc-border: #e0daf0;
  --pc-border-dark: #3a2a5e;
  --pc-radius: 12px;
  --pc-shadow: 0 4px 20px rgba(123,44,191,0.12);
  --pc-shadow-lg: 0 8px 40px rgba(123,44,191,0.2);
  --container: 1240px;
}

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

/* 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: .04em;
  text-transform: uppercase;
  transition: background .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.pc-btn:hover { transform: translateY(-1px); }
.pc-btn:active { transform: translateY(0); }
.pc-btn--login {
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
}
.pc-btn--login:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.pc-btn--register {
  background: var(--pc-yellow);
  color: var(--pc-text);
}
.pc-btn--register:hover { background: var(--pc-yellow-hover); box-shadow: 0 4px 14px rgba(255,208,0,.4); }
.pc-btn--green {
  background: var(--pc-accent);
  color: #fff;
}
.pc-btn--green:hover { background: var(--pc-accent-hover); box-shadow: 0 4px 14px rgba(0,166,81,.4); }
.pc-btn--lg { padding: 15px 36px; font-size: 15px; }
.pc-btn--hero { background: var(--pc-yellow); color: var(--pc-text); font-size: 16px; font-weight: 900; padding: 16px 40px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; box-shadow: 0 6px 24px rgba(255,208,0,.45); }
.pc-btn--hero:hover { background: var(--pc-yellow-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,208,0,.5); }

/* 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;
}
header img { max-height: 48px; width: auto; object-fit: contain; }
.author img { width: 96px; height: 96px; 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.content img, main p img { max-height: 320px; }
}

/* =============================================
   TOPBAR
   ============================================= */
.pc-topbar {
  background: var(--pc-topbar-bg);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 500;
  padding-block: 7px;
}
.pc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pc-topbar__text { display: flex; align-items: center; gap: 8px; }
.pc-topbar__badges { display: flex; align-items: center; gap: 8px; }
.pc-topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.pc-topbar__age {
  background: #c0392b;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 639px) {
  .pc-topbar { font-size: 11px; }
  .pc-topbar__inner { gap: 6px 8px; }
}

/* =============================================
   HEADER
   ============================================= */
.pc-header {
  background: var(--pc-header-bg);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.pc-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
  flex-wrap: nowrap;
  min-width: 0;
}
.pc-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.pc-header__logo img {
  height: 38px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.pc-header__search {
  flex: 1;
  min-width: 0;
  max-width: 130px;
  display: flex;
  align-items: center;
  position: relative;
}
.pc-header__search input {
  width: 100%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: #fff;
  padding: 7px 14px 7px 34px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  transition: background .15s;
}
.pc-header__search input::placeholder { color: rgba(255,255,255,.6); }
.pc-header__search input:focus { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); }
.pc-header__search-icon {
  position: absolute;
  left: 10px;
  color: rgba(255,255,255,.7);
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.pc-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.pc-header__actions .pc-btn { padding: 8px 12px; font-size: 12px; letter-spacing: .02em; }
.pc-header__burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
}
.pc-header__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
@media (min-width: 760px) {
  .pc-header__logo img { height: 44px; max-width: none; }
  .pc-header__inner { gap: 18px; padding-block: 14px; }
  .pc-header__search { max-width: 240px; }
  .pc-header__search input { font-size: 13px; padding: 8px 16px 8px 36px; }
  .pc-header__actions .pc-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: .04em; }
}
@media (max-width: 479px) {
  .pc-header__actions .pc-btn--login { display: none; }
}

/* =============================================
   SUBNAV
   ============================================= */
.pc-subnav {
  background: #fff;
  border-bottom: 1px solid var(--pc-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.pc-subnav::-webkit-scrollbar { display: none; }
.pc-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-block: 0;
  min-width: max-content;
  margin-inline: auto;
}
.pc-subnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 14px;
  color: var(--pc-text);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .15s, background .15s;
  border-bottom: 3px solid transparent;
  text-decoration: none;
}
.pc-subnav__item svg { width: 18px; height: 18px; flex-shrink: 0; }
.pc-subnav__item:hover { color: var(--pc-header-bg); border-bottom-color: var(--pc-header-bg); }
.pc-subnav__item--active { color: var(--pc-header-bg); border-bottom-color: var(--pc-header-bg); }
@media (min-width: 760px) {
  .pc-subnav__item { padding: 12px 16px; font-size: 12px; }
}

/* =============================================
   HERO CAROUSEL
   ============================================= */
.pc-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.pc-hero__slides { position: relative; flex: 1; min-height: 480px; }
.pc-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .5s ease;
  background-size: cover;
  background-position: center;
}
.pc-hero__slide--active { opacity: 1; z-index: 1; }
.pc-hero__inner {
  padding-block: 60px 80px;
  max-width: 600px;
  min-width: 0;
  max-width: 100%;
}
.pc-hero__inner h2 {
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  margin-bottom: 14px;
  font-weight: 900;
}
.pc-hero__lead {
  font-size: 18px;
  color: rgba(255,255,255,.92);
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  max-width: 500px;
}
.pc-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.pc-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background .15s;
  backdrop-filter: blur(4px);
}
.pc-hero__arrow:hover { background: rgba(255,255,255,.35); }
.pc-hero__arrow--prev { left: 16px; }
.pc-hero__arrow--next { right: 16px; }
.pc-hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.pc-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.6);
  transition: background .2s, transform .2s;
}
.pc-hero__dot--active { background: #fff; transform: scale(1.2); }
@media (max-width: 639px) {
  .pc-hero { min-height: 360px; }
  .pc-hero__slides { min-height: 360px; }
  .pc-hero__inner { padding-block: 40px 60px; }
  .pc-hero__lead { font-size: 15px; }
  .pc-hero__ctas .pc-btn--hero { width: 100%; justify-content: center; }
  .pc-hero__arrow { width: 36px; height: 36px; font-size: 14px; }
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.pc-breadcrumbs {
  padding-block: 12px;
  font-size: 12px;
  color: var(--pc-text-muted);
}
.pc-breadcrumbs a { color: var(--pc-header-bg); }
.pc-breadcrumbs a:hover { text-decoration: underline; }
.pc-breadcrumbs span { margin-inline: 6px; }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.pc-section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--pc-text);
  margin-bottom: 8px;
}
.pc-section-lead {
  color: var(--pc-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 640px;
}

/* =============================================
   OFFERS LISTING
   ============================================= */
/* OFFERS LISTING */
.pc-offers { padding-block: 40px; }
.pc-offers__header { margin-bottom: 28px; text-align: center; }
.pc-offers__grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.pc-offers__item { flex: 1; min-width: 0; }
.pc-offers__card {
  position: relative;
  background: var(--pc-bg-raised);
  border-radius: var(--pc-radius);
  overflow: hidden;
  border: 2px solid var(--pc-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 20px;
  transition: box-shadow .2s;
  height: 100%;
}
.pc-offers__card:hover { box-shadow: var(--pc-shadow-lg); }
.pc-offers__card--top {
  border-color: var(--pc-yellow) !important;
  transform: scale(1.02);
  z-index: 2;
  padding-top: 36px;
  box-shadow: var(--pc-shadow-lg);
}
.pc-offers__overlay-link {
  position: absolute !important;
  inset: 0;
  font-size: 0;
  color: transparent;
  z-index: 1;
}
.pc-offers__card > *:not(.pc-offers__overlay-link) { position: relative; z-index: 2; }
.pc-offers__card * { pointer-events: none; }
.pc-offers__overlay-link,
.pc-offers__review-link { pointer-events: auto !important; cursor: pointer; }
.pc-offers__review-link { position: relative; z-index: 3; }

.pc-offers__ribbon {
  position: absolute !important;
  top: 30px;
  right: -44px;
  width: 175px;
  background: var(--pc-yellow);
  color: #1a1f4f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  padding: 7px 0;
  transform: rotate(45deg);
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.pc-offers__logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0eaf8;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.pc-offers__logo img { width: 80px; height: 80px; object-fit: contain; }
.pc-offers__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--pc-text);
}
.pc-offers__tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.pc-offers__tag {
  background: #ede8f8;
  color: var(--pc-header-bg);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 9px;
  border-radius: 999px;
}
.pc-offers__tag--top { background: var(--pc-yellow); color: var(--pc-text); }
.pc-offers__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
}
.pc-offers__stars { color: var(--pc-yellow); font-size: 14px; }
.pc-offers__rating-val { font-weight: 700; color: var(--pc-text); }
.pc-offers__bonus {
  background: linear-gradient(135deg, var(--pc-header-bg), #5a1a9a);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 14px;
  width: 100%;
}
.pc-offers__usps {
  text-align: left;
  margin-bottom: 14px;
  width: 100%;
}
.pc-offers__usps li {
  font-size: 12px;
  color: var(--pc-text-muted);
  padding-block: 4px;
  border-bottom: 1px solid var(--pc-border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pc-offers__usps li::before { content: "✓"; color: var(--pc-accent); font-weight: 700; flex-shrink: 0; }
.pc-offers__social {
  font-size: 12px;
  color: var(--pc-text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pc-offers__social .fire { font-size: 15px; }
.pc-offers__timer {
  font-size: 12px;
  color: var(--pc-text-muted);
  margin-bottom: 12px;
}
.pc-offers__timer-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--pc-header-bg);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 2px;
}
.pc-offers__cta {
  display: block;
  width: 100%;
  background: var(--pc-accent);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 999px;
  padding: 12px 20px;
  margin-bottom: 8px;
  transition: background .15s;
}
.pc-offers__card--top .pc-offers__cta { background: var(--pc-yellow); color: var(--pc-text); }
.pc-offers__review-link {
  font-size: 12px;
  color: var(--pc-header-bg);
  text-decoration: underline;
  display: block;
  margin-bottom: 8px;
}
.pc-offers__urgency {
  font-size: 11px;
  color: var(--pc-text-muted);
}
.pc-offers__aggregate {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--pc-text-muted);
}
.pc-offers__aggregate strong { color: var(--pc-text); }

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

/* =============================================
   CONTENT SECTION
   ============================================= */
.pc-content { padding-block: 40px; }
.pc-content__inner { background: var(--pc-bg-raised); border-radius: var(--pc-radius); padding: 32px; box-shadow: var(--pc-shadow); }
.pc-content h2 { font-size: clamp(20px, 3vw, 28px); margin-bottom: 16px; color: var(--pc-text); }
.pc-content p { margin-bottom: 16px; color: var(--pc-text-muted); line-height: 1.7; }
.pc-content ul { margin-bottom: 16px; padding-left: 0; }
.pc-content ul li {
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--pc-border);
  color: var(--pc-text-muted);
  position: relative;
  font-size: 14px;
}
.pc-content ul li::before { content: "→"; color: var(--pc-header-bg); font-weight: 700; position: absolute; left: 0; }
.pc-content table { width: 100%; border-collapse: collapse; margin-block: 20px; font-size: 14px; }
.pc-content th { background: var(--pc-header-bg); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; }
.pc-content td { padding: 10px 14px; border-bottom: 1px solid var(--pc-border); }
.pc-content tr:nth-child(even) td { background: var(--pc-bg); }
.pc-content blockquote {
  border-left: 4px solid var(--pc-header-bg);
  padding: 14px 20px;
  background: #f0eaf8;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--pc-text);
  margin-block: 20px;
}
@media (max-width: 640px) {
  .pc-content__inner { padding: 20px 16px; }
}

/* =============================================
   PAYMENTS (text labels)
   ============================================= */
.pc-payments { padding-block: 32px; }
.pc-payments__label {
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pc-topbar-bg);
  white-space: nowrap;
  display: inline-block;
  border: 1px solid var(--pc-border);
}
.pc-payments__grid { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

/* =============================================
   SLOTS LISTING
   ============================================= */
/* SLOTS LISTING */
.pc-slots { padding-block: 40px; }
.pc-slots__header { margin-bottom: 24px; }
.pc-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px) { .pc-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .pc-slots__grid { grid-template-columns: repeat(6, 1fr); } }
.pc-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--pc-border);
  background: #1a0a2e;
}
.pc-slots__grid > div:hover { border-color: var(--pc-header-bg); box-shadow: 0 4px 20px rgba(123,44,191,.25); }
.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;
  transition: transform .3s;
}
.pc-slots__grid > div:hover .pc-slots__tile img { transform: scale(1.05); }
.pc-slots__top-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  background: linear-gradient(to bottom, rgba(0,0,0,.65), transparent);
  pointer-events: none;
}
.pc-slots__hot {
  background: #ff4757;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 7px;
  border-radius: 999px;
}
.pc-slots__rtp {
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.9);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.pc-slots__meta-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 60%, transparent);
  padding: 24px 8px 8px;
  pointer-events: none;
}
.pc-slots__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  margin-bottom: 3px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pc-slots__badges { display: flex; gap: 4px; flex-wrap: wrap; }
.pc-slots__vol, .pc-slots__maxwin {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.12);
  padding: 1px 5px;
  border-radius: 3px;
}
.pc-slots__overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,44,191,.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.pc-slots__grid > div:hover .pc-slots__overlay { opacity: 1; }
.pc-slots__play-icon {
  width: 44px;
  height: 44px;
  background: var(--pc-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pc-slots__play-icon svg { width: 20px; height: 20px; color: var(--pc-text); margin-left: 2px; }
.pc-slots__overlay-name {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  padding-inline: 8px;
}
.pc-slots__show-more { text-align: center; margin-top: 24px; }

/* =============================================
   AUTHOR BLOCK
   ============================================= */
.pc-author { padding-block: 40px; }
.pc-author__card {
  background: var(--pc-bg-raised);
  border-radius: var(--pc-radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--pc-shadow);
  border: 1px solid var(--pc-border);
}
.pc-author__photo { flex-shrink: 0; }
.pc-author__photo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pc-header-bg);
}
.pc-author__info { flex: 1; min-width: 0; }
.pc-author__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--pc-text);
}
.pc-author__role { font-size: 13px; color: var(--pc-text-muted); margin-bottom: 10px; }
.pc-author__bio { font-size: 14px; color: var(--pc-text-muted); line-height: 1.7; margin-bottom: 14px; }
.pc-author__links { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pc-author__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0077b5;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
}
.pc-author__badge {
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pc-text-muted);
  padding: 5px 10px;
}
@media (max-width: 560px) {
  .pc-author__card { flex-direction: column; padding: 20px; }
}

/* =============================================
   FAQ
   ============================================= */
.pc-faq { padding-block: 40px; }
.pc-faq__list { display: flex; flex-direction: column; gap: 10px; }
.pc-faq__item {
  background: var(--pc-bg-raised);
  border: 1px solid var(--pc-border);
  border-radius: 10px;
  overflow: hidden;
}
.pc-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--pc-text);
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.pc-faq__question::after {
  content: "+";
  font-size: 20px;
  color: var(--pc-header-bg);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform .2s;
}
.pc-faq__item--open .pc-faq__question::after { transform: rotate(45deg); }
.pc-faq__answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--pc-text-muted);
  line-height: 1.7;
}
.pc-faq__item--open .pc-faq__answer { display: block; }

/* =============================================
   RELATED LINKS
   ============================================= */
.pc-related { padding-block: 28px; border-top: 1px solid var(--pc-border); }
.pc-related h3 { font-size: 16px; margin-bottom: 12px; color: var(--pc-text); }
.pc-related__links { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-related__link {
  background: var(--pc-bg-raised);
  border: 1px solid var(--pc-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--pc-header-bg);
  text-decoration: none;
  transition: background .15s;
}
.pc-related__link:hover { background: #ede8f8; }

/* =============================================
   FOOTER
   ============================================= */
.pc-footer {
  background: var(--pc-bg-dark);
  color: rgba(255,255,255,.75);
  padding-top: 56px;
}
.pc-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pc-footer__brand { grid-column: 1 / -1; }
.pc-footer__brand-logo { height: 80px; width: auto; max-width: 200px; margin-bottom: 14px; }
.pc-footer__brand-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.6); margin-bottom: 16px; max-width: 340px; }
.pc-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.pc-footer__social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.pc-footer__social:hover { background: var(--pc-header-bg); color: #fff; }
.pc-footer__social svg { width: 16px; height: 16px; }
.pc-footer__col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 12px;
}
.pc-footer__col ul li { margin-bottom: 7px; }
.pc-footer__col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
}
.pc-footer__col ul a:hover { color: var(--pc-yellow); }
.pc-footer__bottom {
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.pc-footer__pay {
  margin-bottom: 20px;
}
.pc-footer__pay h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.pc-footer__pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pc-footer__pay-grid .pc-payments__label { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.15); }
.pc-footer__rg {
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.pc-footer__rg strong { color: rgba(255,255,255,.8); }
.pc-footer__rg-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
.pc-footer__rg-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pc-footer__copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.pc-footer__copy a { color: rgba(255,255,255,.5); }
.pc-footer__copy a:hover { color: rgba(255,255,255,.8); text-decoration: underline; }
.pc-footer__copy-sep { opacity: .4; }

@media (min-width: 600px) {
  .pc-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .pc-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 22px; }
  .pc-footer__brand { grid-column: auto; }
}
@media (max-width: 599px) {
  .pc-footer { padding-top: 28px; font-size: 12px; }
  .pc-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .pc-footer__col ul li { margin-bottom: 4px; }
  .pc-footer__col ul a { font-size: 12px; }
  .pc-footer__brand-logo { max-height: 30px; margin-bottom: 10px; }
  .pc-footer__brand-desc { font-size: 12px; margin-bottom: 10px; }
  .pc-footer__pay-grid { gap: 6px 10px; }
}
@media (max-width: 1023px) { .pc-footer { padding-bottom: 84px; } }

/* =============================================
   MOBILE MENU OVERLAY
   ============================================= */
.pc-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,5,30,.96);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transform: translateX(-100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.pc-menu-overlay--open { transform: translateX(0); }
.pc-menu-overlay__close {
  align-self: flex-end;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  margin-bottom: 24px;
  line-height: 1;
}
.pc-menu-overlay__logo { height: 44px; width: auto; object-fit: contain; display: block; margin: 0 auto 28px; }
.pc-menu-overlay__nav { flex: 1; }
.pc-menu-overlay__nav a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
}
.pc-menu-overlay__nav a:hover { color: var(--pc-yellow); }
.pc-menu-overlay__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.pc-menu-overlay__actions .pc-btn { justify-content: center; padding: 14px; font-size: 14px; }

/* =============================================
   FAB (Mobile floating CTA)
   ============================================= */
.pc-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 38px;
  background: var(--pc-yellow);
  color: var(--pc-text);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255,208,0,.5), 0 2px 8px rgba(0,0,0,.6);
  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;
}
.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; } }

/* =============================================
   SITEMAP PAGE
   ============================================= */
.pc-sitemap { padding-block: 40px; }
.pc-sitemap__hero {
  background: linear-gradient(135deg, var(--pc-topbar-bg), var(--pc-header-bg));
  color: #fff;
  border-radius: var(--pc-radius);
  padding: 40px 32px;
  margin-bottom: 32px;
}
.pc-sitemap__hero h1 { font-size: clamp(24px, 4vw, 40px); margin-bottom: 8px; }
.pc-sitemap__hero p { color: rgba(255,255,255,.75); font-size: 15px; }
.pc-sitemap__group { margin-bottom: 32px; }
.pc-sitemap__group h2 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pc-header-bg);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--pc-border);
  padding-bottom: 8px;
}
.pc-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.pc-sitemap__link {
  background: var(--pc-bg-raised);
  border: 1px solid var(--pc-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--pc-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color .15s, box-shadow .15s;
  display: block;
}
.pc-sitemap__link:hover { border-color: var(--pc-header-bg); box-shadow: 0 2px 10px rgba(123,44,191,.1); color: var(--pc-header-bg); }
.pc-sitemap__link span { display: block; font-size: 11px; font-weight: 400; color: var(--pc-text-muted); margin-top: 2px; }
