/* ============================================================
   theplayojocasino.online — style.css
   Prefix: pt-
   Region: SE | Locale: sv-SE
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; background: #fff; color: #1a1f4f; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* VARIABLES */
:root {
  --pt-purple: #7b2cbf;
  --pt-purple-dark: #6a1fa8;
  --pt-purple-deep: #1a0a3d;
  --pt-topbar: #1a1f4f;
  --pt-yellow: #ffd000;
  --pt-green: #00c853;
  --pt-white: #fff;
  --pt-text: #1a1f4f;
  --pt-text-muted: #5c5f7a;
  --pt-border: #e2e4f0;
  --pt-bg-light: #f5f5ff;
  --pt-radius: 12px;
  --pt-shadow: 0 4px 24px rgba(123,44,191,.13);
  --container: 1240px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  font-weight: 800;
  color: var(--pt-text);
}
h1, h2, h3, p, li, blockquote, td, th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

/* BUTTONS */
.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
  max-width: 100%;
}
.pt-btn:hover { opacity: .88; }
.pt-btn--green {
  background: var(--pt-green);
  color: #fff;
  padding: 9px 20px;
  font-size: 13px;
}
.pt-btn--yellow {
  background: var(--pt-yellow);
  color: var(--pt-text);
  padding: 9px 20px;
  font-size: 13px;
}
.pt-btn--lg {
  padding: 14px 32px;
  font-size: 15px;
  letter-spacing: .06em;
}
@media (max-width: 479px) { .pt-btn--login { display: none; } }

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

/* ============================================================
   TOPBAR
   ============================================================ */
.pt-topbar {
  background: var(--pt-topbar);
  color: #a9b0d4;
  font-size: 12px;
  line-height: 1.4;
  padding: 6px 0;
}
.pt-topbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pt-topbar__badges { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pt-topbar__badge {
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.pt-topbar__badge--18 {
  background: #e53935;
  color: #fff;
}
.pt-topbar__warning {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #c8ccdf;
  min-width: 0;
}
.pt-topbar__warning a { color: var(--pt-yellow); text-decoration: underline; }
.pt-topbar__right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
@media (max-width: 639px) {
  .pt-topbar { font-size: 11px; }
  .pt-topbar__inner { gap: 6px 10px; }
  .pt-topbar__warning { font-size: 10px; }
}

/* ============================================================
   HEADER
   ============================================================ */
.pt-header {
  background: var(--pt-purple);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.pt-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.pt-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  flex-shrink: 0;
  cursor: pointer;
}
.pt-header__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}
.pt-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
}
.pt-header__logo img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (min-width: 760px) {
  .pt-header__logo img { height: 44px; max-width: none; }
  .pt-header__inner { gap: 18px; padding: 12px 0; }
}
.pt-header__search {
  flex: 1;
  min-width: 0;
  display: none;
  align-items: center;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 14px;
  gap: 8px;
  max-width: 360px;
}
@media (min-width: 760px) { .pt-header__search { display: flex; } }
/* мобильный поиск — внутри хедера, max-width 130px */
@media (max-width: 759px) {
  .pt-header__search {
    display: flex;
    max-width: 130px;
    padding: 5px 10px;
    font-size: 12px;
  }
}
.pt-header__search svg { color: rgba(255,255,255,.6); flex-shrink: 0; }
.pt-header__search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  width: 100%;
  font-family: inherit;
}
.pt-header__search input::placeholder { color: rgba(255,255,255,.5); font-size: 13px; }
@media (max-width: 759px) { .pt-header__search input { font-size: 12px; } }
.pt-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.pt-header__actions .pt-btn {
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: .02em;
}
@media (min-width: 760px) {
  .pt-header__actions { gap: 10px; }
  .pt-header__actions .pt-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: .04em; }
}

/* ============================================================
   SUBNAV
   ============================================================ */
.pt-subnav {
  background: #fff;
  border-bottom: 1px solid var(--pt-border);
}
.pt-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pt-subnav__inner::-webkit-scrollbar { display: none; }
.pt-subnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pt-text-muted);
  white-space: nowrap;
  transition: color .15s;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.pt-subnav__item svg { width: 20px; height: 20px; }
.pt-subnav__item:hover, .pt-subnav__item--active {
  color: var(--pt-purple);
  border-bottom-color: var(--pt-purple);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.pt-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.pt-hero__slides { display: flex; height: 100%; min-height: 420px; }
.pt-hero__slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  transition: opacity .5s;
}
.pt-hero__slide--1 {
  background: linear-gradient(to right, rgba(30,8,80,.72) 35%, rgba(30,8,80,.2)), url('/img/banner1.jpg') center/cover no-repeat;
}
.pt-hero__slide--2 {
  background: linear-gradient(to right, rgba(20,5,60,.75) 35%, rgba(20,5,60,.2)), url('/img/banner2.jpg') center/cover no-repeat;
}
.pt-hero__slide--3 {
  background: linear-gradient(to right, rgba(50,10,100,.72) 35%, rgba(50,10,100,.2)), url('/img/banner3.jpg') center/cover no-repeat;
}
.pt-hero__inner {
  padding: 60px 0 70px;
  max-width: 560px;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.pt-hero__inner h2 {
  font-size: clamp(28px, 5vw, 48px);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.pt-hero__inner p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
}
.pt-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pt-yellow);
  color: var(--pt-text);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(255,208,0,.4);
  transition: opacity .15s;
}
.pt-hero__cta:hover { opacity: .9; }
@media (max-width: 639px) {
  .pt-hero__inner { padding: 36px 0 44px; gap: 14px; }
  .pt-hero__inner p { font-size: 16px; }
  .pt-hero__cta { width: 100%; justify-content: center; }
}
/* Arrow buttons */
.pt-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.pt-hero__arrow:hover { background: rgba(0,0,0,.65); }
.pt-hero__arrow--prev { left: 16px; }
.pt-hero__arrow--next { right: 16px; }
.pt-hero__arrow svg { width: 20px; height: 20px; }
/* Dots */
.pt-hero__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.pt-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.pt-hero__dot--active { background: var(--pt-yellow); transform: scale(1.4); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.pt-breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: var(--pt-text-muted);
}
.pt-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.pt-breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.pt-breadcrumbs a { color: var(--pt-purple); }
.pt-breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--pt-border); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.pt-section { padding-block: 48px; }
.pt-section__title {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 28px;
  text-align: center;
}

/* ============================================================
   OFFERS LISTING — CASINO CARDS
   ============================================================ */
.pt-offers { background: var(--pt-bg-light); padding-block: 52px; }
.pt-offers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}
@media (max-width: 759px) {
  .pt-offers__grid { grid-template-columns: 1fr; }
}
.pt-offers__card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px 20px;
  border: 2px solid var(--pt-border);
  box-shadow: var(--pt-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.pt-offers__card:hover { box-shadow: 0 8px 36px rgba(123,44,191,.2); }
.pt-offers__card--top {
  border-color: var(--pt-yellow);
  transform: scale(1.02);
  padding-top: 36px;
  z-index: 2;
}
@media (max-width: 759px) {
  .pt-offers__card--top { transform: none; order: -1; }
}
/* Overlay link */
.pt-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
}
.pt-offers__card > *:not(.pt-offers__overlay-link) { position: relative; z-index: 2; }
.pt-offers__card * { pointer-events: none; }
.pt-offers__overlay-link,
.pt-offers__review-link { pointer-events: auto !important; cursor: pointer; }
.pt-offers__review-link { position: relative; z-index: 3; }
/* Ribbon */
.pt-offers__ribbon {
  position: absolute !important;
  top: 26px;
  right: -46px;
  width: 170px;
  transform: rotate(45deg);
  background: var(--pt-yellow);
  color: var(--pt-text);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 0;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}
/* Card content */
.pt-offers__logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: contain;
  margin-bottom: 12px;
  border: 1px solid var(--pt-border);
  padding: 4px;
  background: #fff;
}
.pt-offers__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--pt-text);
}
.pt-offers__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--pt-text-muted);
  margin-bottom: 8px;
}
.pt-offers__stars { color: #f5a623; font-size: 14px; }
.pt-offers__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.pt-offers__tag {
  background: rgba(123,44,191,.1);
  color: var(--pt-purple);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pt-offers__bonus {
  background: var(--pt-bg-light);
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  padding: 10px 14px;
  width: 100%;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pt-purple);
}
.pt-offers__usp {
  width: 100%;
  margin-bottom: 14px;
  text-align: left;
}
.pt-offers__usp li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pt-text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--pt-border);
}
.pt-offers__usp li:last-child { border-bottom: none; }
.pt-offers__usp li::before { content: "✓"; color: var(--pt-green); font-weight: 700; flex-shrink: 0; }
.pt-offers__social-proof {
  font-size: 12px;
  color: var(--pt-text-muted);
  margin-bottom: 8px;
}
.pt-offers__timer {
  font-size: 12px;
  color: var(--pt-text-muted);
  margin-bottom: 12px;
}
.pt-offers__timer span {
  font-weight: 800;
  color: var(--pt-purple);
  font-size: 14px;
}
.pt-offers__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
}
.pt-offers__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--pt-yellow);
  color: var(--pt-text);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 4px 16px rgba(255,208,0,.3);
}
.pt-offers__card--top .pt-offers__cta { background: var(--pt-green); color: #fff; }
.pt-offers__review-link {
  font-size: 12px;
  color: var(--pt-purple);
  text-decoration: underline;
}
.pt-offers__urgency {
  font-size: 11px;
  color: var(--pt-text-muted);
  margin-top: 4px;
}
.pt-offers__aggregate {
  text-align: center;
  font-size: 13px;
  color: var(--pt-text-muted);
  margin-top: 12px;
}

/* ============================================================
   CONTENT SECTION
   ============================================================ */
.pt-content { padding-block: 52px; }
.pt-content h2 {
  font-size: clamp(20px, 3.5vw, 28px);
  margin-bottom: 16px;
  color: var(--pt-text);
}
.pt-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.75; color: #333; }
.pt-content ul, .pt-content ol { margin-bottom: 16px; padding-left: 0; }
.pt-content ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid var(--pt-border);
}
.pt-content ul li::before {
  content: "▸";
  color: var(--pt-purple);
  position: absolute;
  left: 0;
}
.pt-content ul li:last-child { border-bottom: none; }
.pt-content table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 24px; }
.pt-content th { background: var(--pt-purple); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; }
.pt-content td { padding: 10px 14px; border-bottom: 1px solid var(--pt-border); }
.pt-content tr:nth-child(even) td { background: var(--pt-bg-light); }
.pt-content blockquote {
  background: var(--pt-bg-light);
  border-left: 4px solid var(--pt-purple);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--pt-text-muted);
}
.pt-table-wrap { overflow-x: auto; }

/* ============================================================
   SLOTS LISTING
   ============================================================ */
.pt-slots { padding-block: 52px; background: var(--pt-bg-light); }
.pt-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px) { .pt-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .pt-slots__grid { grid-template-columns: repeat(6, 1fr); } }

.pt-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--pt-border);
  background: #eee;
}
.pt-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.pt-slots__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pt-slots__top-row,
.pt-slots__meta-row,
.pt-slots__overlay,
.pt-slots__play-icon { pointer-events: none; }
.pt-slots__top-row {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px;
  z-index: 3;
}
.pt-slots__hot {
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 4px;
  padding: 2px 7px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pt-slots__rtp-badge {
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
}
.pt-slots__meta-row {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,5,30,.85));
  padding: 18px 10px 10px;
  z-index: 3;
}
.pt-slots__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pt-slots__info {
  display: flex;
  gap: 8px;
  font-size: 10px;
  color: rgba(255,255,255,.7);
}
.pt-slots__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,44,191,.0);
  transition: background .2s;
  z-index: 4;
}
.pt-slots__grid > div:hover .pt-slots__play-icon { background: rgba(123,44,191,.35); }
.pt-slots__play-icon svg {
  width: 44px;
  height: 44px;
  color: #fff;
  opacity: 0;
  transition: opacity .2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
.pt-slots__grid > div:hover .pt-slots__play-icon svg { opacity: 1; }
.pt-slots__show-all {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.pt-slots__show-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pt-purple);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

/* ============================================================
   AUTHOR BLOCK
   ============================================================ */
.pt-author {
  padding-block: 40px;
  background: #fff;
  border-top: 1px solid var(--pt-border);
  border-bottom: 1px solid var(--pt-border);
}
.pt-author__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 599px) { .pt-author__inner { flex-direction: column; align-items: center; text-align: center; } }
.pt-author__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--pt-purple);
}
.pt-author__info h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.pt-author__role {
  font-size: 13px;
  color: var(--pt-text-muted);
  margin-bottom: 10px;
}
.pt-author__bio {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}
.pt-author__link {
  font-size: 13px;
  color: var(--pt-purple);
  text-decoration: underline;
}
.pt-author__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pt-bg-light);
  border: 1px solid var(--pt-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--pt-text-muted);
  margin-top: 8px;
}

/* ============================================================
   FAQ
   ============================================================ */
.pt-faq { padding-block: 52px; background: var(--pt-bg-light); }
.pt-faq__list { display: flex; flex-direction: column; gap: 12px; }
.pt-faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--pt-border);
  overflow: hidden;
}
.pt-faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
}
.pt-faq__item summary::-webkit-details-marker { display: none; }
.pt-faq__item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--pt-purple);
  flex-shrink: 0;
  transition: transform .2s;
}
.pt-faq__item[open] summary::after { transform: rotate(45deg); }
.pt-faq__answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* ============================================================
   PAYMENTS (text labels)
   ============================================================ */
.pt-payments { display: flex; flex-wrap: wrap; gap: 8px; }
.pt-payments__label {
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #1a1f4f;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.2);
}

/* ============================================================
   RELATED LINKS
   ============================================================ */
.pt-related { padding-block: 36px; }
.pt-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) { .pt-related__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .pt-related__grid { grid-template-columns: repeat(4, 1fr); } }
.pt-related__link {
  display: block;
  background: var(--pt-bg-light);
  border: 1px solid var(--pt-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pt-purple);
  transition: background .15s;
}
.pt-related__link:hover { background: rgba(123,44,191,.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.pt-footer {
  background: var(--pt-topbar);
  color: #a9b0d4;
  padding: 52px 0 32px;
}
@media (max-width: 599px) { .pt-footer { padding: 28px 0 16px; font-size: 12px; } }
.pt-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pt-footer__brand { grid-column: 1 / -1; }
@media (min-width: 600px) {
  .pt-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .pt-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 22px; }
  .pt-footer__brand { grid-column: auto; }
}
.pt-footer__brand-logo {
  height: 80px;
  width: auto;
  max-height: 80px;
  margin-bottom: 14px;
  object-fit: contain;
}
.pt-footer__brand-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #a9b0d4;
}
.pt-footer__socials { display: flex; gap: 12px; flex-wrap: wrap; }
.pt-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .15s;
}
.pt-footer__social:hover { background: var(--pt-purple); }
.pt-footer__social svg { width: 18px; height: 18px; }
.pt-footer__col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 14px;
}
.pt-footer__col ul li { margin-bottom: 8px; }
.pt-footer__col a { font-size: 13px; color: #a9b0d4; transition: color .15s; }
.pt-footer__col a:hover { color: var(--pt-yellow); }
@media (max-width: 599px) {
  .pt-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .pt-footer__col ul li { margin-bottom: 4px; }
  .pt-footer__col a { font-size: 12px; }
  .pt-footer__brand-logo { max-height: 30px; margin-bottom: 10px; }
  .pt-footer__brand-desc { font-size: 12px; margin-bottom: 10px; }
}
.pt-footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pt-footer__payments-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #a9b0d4;
  margin-bottom: 10px;
}
.pt-footer__rg {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 12px;
  line-height: 1.7;
  color: #a9b0d4;
}
.pt-footer__rg strong { color: #fff; }
.pt-footer__copy {
  text-align: center;
  font-size: 12px;
  color: #6b7193;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.pt-footer__copy a { color: var(--pt-yellow); }

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.pt-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--pt-purple-deep);
  z-index: 200;
  flex-direction: column;
  overflow-y: auto;
}
.pt-mobile-menu.is-open { display: flex; }
.pt-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pt-mobile-menu__close {
  color: #fff;
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.pt-mobile-menu__nav { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.pt-mobile-menu__nav a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,.85);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pt-mobile-menu__nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.pt-mobile-menu__actions { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   FAB — мобильная плавающая кнопка
   ============================================================ */
.pt-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 38px;
  background: var(--pt-yellow);
  color: var(--pt-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,.4), 0 2px 8px rgba(0,0,0,.5);
  transition: background .15s, transform .15s;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
.pt-fab::after { content: "▶"; font-size: 11px; }
.pt-fab:hover { transform: translate(-50%, -2px); }
@media (max-width: 979px) { .pt-fab { display: inline-flex; } }
@media (max-width: 480px) { .pt-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }
@media (max-width: 979px) { .pt-footer { padding-bottom: 84px; } }
body.is-cookies-shown .pt-fab { bottom: 110px; }
@media (max-width: 480px) { body.is-cookies-shown .pt-fab { bottom: 150px; } }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.pt-sitemap { padding-block: 52px; }
.pt-sitemap__group { margin-bottom: 40px; }
.pt-sitemap__group h2 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pt-border);
  color: var(--pt-purple);
}
.pt-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) { .pt-sitemap__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .pt-sitemap__grid { grid-template-columns: repeat(4, 1fr); } }
.pt-sitemap__card {
  background: var(--pt-bg-light);
  border: 1px solid var(--pt-border);
  border-radius: 10px;
  padding: 14px 16px;
}
.pt-sitemap__card a {
  font-weight: 700;
  font-size: 13px;
  color: var(--pt-purple);
  text-decoration: underline;
  display: block;
  margin-bottom: 4px;
}
.pt-sitemap__card p { font-size: 12px; color: var(--pt-text-muted); margin: 0; }
