/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

/* ROOT VARIABLES */
:root {
  --tp-bg: #ffffff;
  --tp-bg-raised: #f4f4f8;
  --tp-text: #1a1f4f;
  --tp-text-muted: #5a5f8a;
  --tp-accent: #7b2cbf;
  --tp-accent-dark: #3d1184;
  --tp-accent-2: #ffd000;
  --tp-green: #00a651;
  --tp-border: #e0e0ef;
  --tp-radius: 12px;
  --tp-shadow: 0 4px 24px rgba(61,17,132,0.10);
  --tp-topbar: #1a1f4f;
  --container: 1240px;
}

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  color: var(--tp-text);
  background: var(--tp-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

h1, h2, h3, p, li, blockquote, td, th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

/* CONTENT IMAGES */
article img, section.tp-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(--tp-radius);
}
.tp-hero img, .tp-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; }
.tp-author img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
footer img[src*="img_listing_casinos"],
footer img[src*="img/payment"] { max-height: 28px; width: auto; object-fit: contain; }
@media (max-width: 768px) {
  article img, section.tp-content img, main p img { max-height: 320px; }
  .tp-hero img, .tp-banner img { max-height: 360px; }
}

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

/* HEADER */
.tp-header {
  background: #7b2cbf;
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 2px 12px rgba(61,17,132,0.18);
}
.tp-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.tp-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.tp-header__logo img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.tp-header__search {
  flex: 1;
  min-width: 0;
  display: none;
}
.tp-header__search-input {
  width: 100%;
  max-width: 130px;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  outline: none;
  transition: background 0.2s, max-width 0.3s;
}
.tp-header__search-input::placeholder { color: rgba(255,255,255,0.65); }
.tp-header__search-input:focus { background: rgba(255,255,255,0.28); max-width: 220px; }
.tp-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: opacity 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  max-width: 100%;
}
.tp-btn:hover { opacity: 0.88; }
.tp-btn--login {
  background: var(--tp-green);
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
}
.tp-btn--register {
  background: var(--tp-accent-2);
  color: var(--tp-text);
  padding: 8px 14px;
  font-size: 12px;
}
.tp-btn--lg {
  padding: 14px 28px;
  font-size: 15px;
}
@media (max-width: 479px) {
  .tp-btn--login { display: none; }
  .tp-btn--login, .tp-btn--register { padding: 7px 10px; font-size: 11px; }
}
@media (min-width: 760px) {
  .tp-header__logo img { height: 44px; max-width: none; }
  .tp-header__inner { gap: 18px; padding: 12px 0; }
  .tp-header__search { display: flex; }
  .tp-header__search-input { max-width: 130px; }
  .tp-btn--login, .tp-btn--register { padding: 10px 20px; font-size: 13.5px; letter-spacing: 0.04em; }
}
.tp-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  padding: 4px;
  cursor: pointer;
}
.tp-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
@media (min-width: 1100px) { .tp-header__burger { display: none; } }

/* SUBNAV */
.tp-subnav {
  background: #ffffff;
  border-bottom: 1px solid var(--tp-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tp-subnav::-webkit-scrollbar { display: none; }
.tp-subnav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  min-width: max-content;
  margin: 0 auto;
}
.tp-subnav__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 14px;
  color: var(--tp-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.15s, background 0.15s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.tp-subnav__list a:hover { color: var(--tp-accent); border-bottom-color: var(--tp-accent); }
.tp-subnav__list a svg { width: 18px; height: 18px; color: var(--tp-accent); }
@media (min-width: 760px) {
  .tp-subnav__list a { padding: 10px 16px; font-size: 12px; gap: 4px; }
  .tp-subnav__list a svg { width: 20px; height: 20px; }
}

/* HERO */
.tp-hero {
  background: linear-gradient(135deg, #3d1184 0%, #7b2cbf 100%);
  color: #fff;
  padding-block: 64px 56px;
  position: relative;
  overflow: hidden;
}
.tp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,208,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tp-hero__inner {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
  min-width: 0;
}
.tp-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.tp-hero h1 em { color: var(--tp-accent-2); font-style: normal; }
.tp-hero__lead {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 560px;
  margin-inline: auto;
}
.tp-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.tp-hero__ctas .tp-btn { min-width: 180px; }
.tp-hero__ctas .tp-btn--primary {
  background: var(--tp-accent-2);
  color: var(--tp-text);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.tp-hero__ctas .tp-btn--secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 28px;
  font-size: 15px;
}
@media (max-width: 639px) {
  .tp-hero { padding-block: 36px 44px; }
  .tp-hero__lead { font-size: 16px; }
  .tp-hero__ctas .tp-btn { width: 100%; min-width: unset; }
  .tp-hero__inner { gap: 14px; }
}

/* BREADCRUMBS */
.tp-breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: var(--tp-text-muted);
  border-bottom: 1px solid var(--tp-border);
}
.tp-breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}
.tp-breadcrumbs li + li::before {
  content: '›';
  margin-right: 4px;
  color: var(--tp-text-muted);
}
.tp-breadcrumbs a { color: var(--tp-accent); }
.tp-breadcrumbs a:hover { text-decoration: underline; }

/* SECTIONS */
.tp-section { padding-block: 48px; }
.tp-section--alt { background: var(--tp-bg-raised); }
.tp-section__title {
  font-size: clamp(22px, 4vw, 32px);
  color: var(--tp-text);
  margin-bottom: 8px;
  text-align: center;
}
.tp-section__sub {
  color: var(--tp-text-muted);
  text-align: center;
  margin-bottom: 32px;
  font-size: 15px;
}

/* CONTENT */
.tp-content { padding-block: 40px; }
.tp-content h2 { font-size: clamp(20px, 3.5vw, 28px); margin-bottom: 16px; margin-top: 32px; }
.tp-content h3 { font-size: 20px; margin-bottom: 12px; margin-top: 24px; }
.tp-content p { margin-bottom: 16px; line-height: 1.75; }
.tp-content ul { margin-bottom: 16px; padding-left: 0; }
.tp-content ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}
.tp-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tp-green);
  font-weight: 700;
}
.tp-content blockquote {
  border-left: 4px solid var(--tp-accent);
  padding: 16px 20px;
  background: var(--tp-bg-raised);
  border-radius: 0 var(--tp-radius) var(--tp-radius) 0;
  margin-block: 24px;
  font-style: italic;
  color: var(--tp-text-muted);
}
.tp-content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tp-content table th {
  background: var(--tp-accent);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.tp-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--tp-border);
}
.tp-content table tr:nth-child(even) td { background: var(--tp-bg-raised); }
.tp-table-wrap { overflow-x: auto; border-radius: var(--tp-radius); margin-block: 20px; }
.tp-content .tp-btn--cta {
  background: var(--tp-accent-2);
  color: var(--tp-text);
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block: 16px;
  transition: opacity 0.15s;
}
.tp-content .tp-btn--cta:hover { opacity: 0.88; }

/* OFFERS LISTING */
.tp-offers { padding-block: 48px; }
.tp-offers__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.tp-offers__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--tp-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.tp-offers__card:hover { box-shadow: var(--tp-shadow); }
.tp-offers__card--top {
  border: 2px solid #ffd000;
  padding-top: 36px;
}
.tp-offers__card > *:not(.tp-offers__overlay-link) {
  position: relative;
  z-index: 2;
}
.tp-offers__card * { pointer-events: none; }
.tp-offers__overlay-link,
.tp-offers__review-link { pointer-events: auto !important; cursor: pointer; }
.tp-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
  display: block;
}
.tp-offers__review-link { position: relative; z-index: 3; }
.tp-offers__ribbon {
  position: absolute !important;
  top: 30px;
  right: -44px;
  width: 175px;
  transform: rotate(45deg);
  background: #ffd000;
  color: #1a1f4f;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 0;
  z-index: 4;
  text-align: center;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.tp-offers__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 24px 16px;
  width: 100%;
  text-align: center;
}
.tp-offers__logo {
  width: 90px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}
.tp-offers__brand { font-weight: 800; font-size: 18px; color: var(--tp-text); }
.tp-offers__stars { color: #fbbf24; font-size: 16px; display: flex; align-items: center; gap: 4px; justify-content: center; }
.tp-offers__rating-num { font-size: 13px; color: var(--tp-text-muted); font-weight: 600; }
.tp-offers__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.tp-offers__tag {
  background: var(--tp-bg-raised);
  border: 1px solid var(--tp-border);
  color: var(--tp-accent);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tp-offers__tag--hot { background: #fff0f0; border-color: #ff4d4f; color: #d42020; }
.tp-offers__tag--excl { background: #fffbe6; border-color: #ffd000; color: #7a5800; }
.tp-offers__body {
  width: 100%;
  padding: 0 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.tp-offers__bonus-label { font-size: 12px; color: var(--tp-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.tp-offers__bonus-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--tp-accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tp-offers__usps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.tp-offers__usps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--tp-text);
}
.tp-offers__usps li::before { content: '✓'; color: var(--tp-green); font-weight: 700; font-size: 13px; }
.tp-offers__social {
  font-size: 13px;
  color: var(--tp-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.tp-offers__social .flame { font-size: 15px; }
.tp-offers__timer {
  font-size: 12px;
  color: var(--tp-text-muted);
  text-align: center;
}
.tp-offers__timer strong {
  font-size: 20px;
  font-weight: 900;
  color: var(--tp-accent);
  font-family: monospace;
  letter-spacing: 0.08em;
}
.tp-offers__cta-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
}
.tp-offers__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-green);
  color: #fff;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  width: 100%;
  max-width: 320px;
  transition: opacity 0.15s;
}
.tp-offers__card--top .tp-offers__cta {
  background: var(--tp-accent-2);
  color: var(--tp-text);
}
.tp-offers__review-link {
  font-size: 13px;
  color: var(--tp-accent);
  text-decoration: underline;
  font-weight: 600;
}
.tp-offers__review-link:hover { opacity: 0.8; }
.tp-offers__urgency { font-size: 11px; color: var(--tp-text-muted); padding-bottom: 16px; text-align: center; }
.tp-offers__aggregate {
  text-align: center;
  color: var(--tp-text-muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 780px;
  margin-inline: auto;
}

/* SLOTS LISTING */
.tp-slots { padding-block: 48px; }
.tp-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 560px) { .tp-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .tp-slots__grid { grid-template-columns: repeat(6, 1fr); gap: 14px; } }
.tp-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--tp-border);
  background: #111;
}
.tp-slots__grid > div:hover { border-color: var(--tp-accent); }
.tp-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.tp-slots__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tp-slots__top-row {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}
.tp-slots__meta-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85) 60%);
  padding: 24px 8px 8px;
  pointer-events: none;
}
.tp-slots__name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.tp-slots__badges {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.tp-slots__badge {
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.tp-slots__badge--rtp { background: rgba(0,166,81,0.85); color: #fff; }
.tp-slots__badge--vol { background: rgba(123,44,191,0.85); color: #fff; }
.tp-slots__badge--win { background: rgba(255,208,0,0.9); color: #1a1f4f; }
.tp-slots__hot {
  background: #ff4d4f;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  border-radius: 4px;
  padding: 2px 6px;
  text-transform: uppercase;
  pointer-events: none;
}
.tp-slots__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.tp-slots__grid > div:hover .tp-slots__play-icon { opacity: 1; }
.tp-slots__play-icon span {
  width: 44px;
  height: 44px;
  background: rgba(255,208,0,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a1f4f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.tp-slots__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,17,132,0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  padding: 12px;
}
.tp-slots__grid > div:hover .tp-slots__overlay { opacity: 1; }
.tp-slots__overlay-name { color: #fff; font-size: 13px; font-weight: 800; text-align: center; }
.tp-slots__overlay-info { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.tp-slots__overlay-info span { font-size: 11px; color: rgba(255,255,255,0.8); }
.tp-slots__overlay-btn {
  background: var(--tp-accent-2);
  color: var(--tp-text);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tp-slots__top-row, .tp-slots__meta-row, .tp-slots__overlay, .tp-slots__play-icon { pointer-events: none; }
.tp-slots__show-all {
  display: block;
  width: fit-content;
  margin: 24px auto 0;
  background: var(--tp-accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: opacity 0.15s;
}
.tp-slots__show-all:hover { opacity: 0.85; }

/* AUTHOR BLOCK */
.tp-author {
  padding-block: 40px;
  background: var(--tp-bg-raised);
  border-top: 1px solid var(--tp-border);
  border-bottom: 1px solid var(--tp-border);
}
.tp-author__inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 100%;
}
.tp-author__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 3px solid var(--tp-accent);
}
.tp-author__info { flex: 1; min-width: 0; }
.tp-author__name { font-size: 18px; font-weight: 800; margin-bottom: 2px; }
.tp-author__role { font-size: 13px; color: var(--tp-text-muted); margin-bottom: 8px; }
.tp-author__role a { color: var(--tp-accent); text-decoration: underline; }
.tp-author__bio { font-size: 14px; line-height: 1.7; color: var(--tp-text-muted); margin-bottom: 12px; }
.tp-author__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.tp-author__badge {
  background: var(--tp-bg);
  border: 1px solid var(--tp-border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--tp-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 560px) {
  .tp-author__inner { flex-direction: column; align-items: center; text-align: center; }
  .tp-author__badges { justify-content: center; }
}

/* FAQ */
.tp-faq { padding-block: 48px; }
.tp-faq__list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.tp-faq__item {
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  overflow: hidden;
}
.tp-faq__item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--tp-bg-raised);
}
.tp-faq__item summary::after { content: '+'; font-size: 20px; color: var(--tp-accent); transition: transform 0.2s; }
.tp-faq__item[open] summary::after { transform: rotate(45deg); }
.tp-faq__answer { padding: 16px 20px; font-size: 14px; line-height: 1.7; color: var(--tp-text-muted); }

/* RELATED LINKS */
.tp-related { padding-block: 32px; border-top: 1px solid var(--tp-border); }
.tp-related h3 { font-size: 16px; margin-bottom: 14px; }
.tp-related__grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tp-related__link {
  background: var(--tp-bg-raised);
  border: 1px solid var(--tp-border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tp-accent);
  transition: background 0.15s, border-color 0.15s;
}
.tp-related__link:hover { background: var(--tp-accent); color: #fff; border-color: var(--tp-accent); }

/* MOBILE STICKY FAB */
.tp-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 38px;
  background: var(--tp-accent-2);
  color: var(--tp-text);
  font-weight: 900;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255,208,0,0.4), 0 2px 8px rgba(0,0,0,0.5);
  transition: background 0.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;
}
.tp-fab::after { content: "▶"; font-size: 11px; }
.tp-fab:hover { transform: translate(-50%, -2px); }
.tp-fab:active { transform: translate(-50%, 0); }
@media (max-width: 979px) { .tp-fab { display: inline-flex; } }
@media (max-width: 480px) { .tp-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }
body.is-cookies-shown .tp-fab { bottom: 110px; }
@media (max-width: 480px) { body.is-cookies-shown .tp-fab { bottom: 150px; } }

/* FOOTER */
.tp-footer {
  background: var(--tp-text);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
  font-size: 13px;
}
.tp-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tp-footer__brand { grid-column: 1 / -1; }
.tp-footer__brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
  max-width: 80px;
  margin-bottom: 12px;
  display: block;
}
.tp-footer__brand p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; max-width: 300px; }
.tp-footer__col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.tp-footer__col ul { list-style: none; }
.tp-footer__col ul li { margin-bottom: 6px; }
.tp-footer__col ul a { color: rgba(255,255,255,0.65); font-size: 13px; transition: color 0.15s; }
.tp-footer__col ul a:hover { color: var(--tp-accent-2); }
@media (min-width: 600px) { .tp-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) {
  .tp-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 22px; }
  .tp-footer__brand { grid-column: auto; }
}
@media (max-width: 599px) {
  .tp-footer { padding: 28px 0 16px; font-size: 12px; }
  .tp-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .tp-footer__col ul li { margin-bottom: 4px; }
  .tp-footer__col a { font-size: 12px; }
  .tp-footer__brand img { max-height: 30px; margin-bottom: 10px; }
  .tp-footer__brand p { font-size: 12px; margin-bottom: 10px; }
}

/* FOOTER SOCIALS */
.tp-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.tp-footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}
.tp-footer__socials a:hover { background: var(--tp-accent); color: #fff; }
.tp-footer__socials svg { width: 16px; height: 16px; fill: currentColor; }

/* FOOTER PAYMENT */
.tp-footer__pay { padding-block: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.tp-footer__pay-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.tp-footer__pay-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.tp-footer__pay-grid img {
  height: 28px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
}
@media (max-width: 599px) {
  .tp-footer__pay-grid { gap: 8px 12px; }
  .tp-footer__pay-grid img { height: 22px; }
}

/* FOOTER RG */
.tp-footer__rg {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 20px;
}
.tp-footer__rg-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.tp-footer__rg-badge {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}
.tp-footer__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 860px;
}
.tp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 16px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.tp-footer__copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.tp-footer__legal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tp-footer__legal a { font-size: 12px; color: rgba(255,255,255,0.5); }
.tp-footer__legal a:hover { color: var(--tp-accent-2); }

/* MOBILE MENU OVERLAY */
.tp-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #1a1f4f;
  z-index: 200;
  flex-direction: column;
  overflow-y: auto;
}
.tp-mobile-menu.is-open { display: flex; }
.tp-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tp-mobile-menu__head img {
  height: 36px;
  margin: 0 auto;
  display: block;
}
.tp-mobile-menu__close {
  font-size: 26px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}
.tp-mobile-menu__nav {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tp-mobile-menu__nav a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tp-mobile-menu__nav a:hover { color: var(--tp-accent-2); }
.tp-mobile-menu__actions {
  padding: 20px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.tp-mobile-menu__actions .tp-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}

/* SITEMAP PAGE */
.tp-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 600px) { .tp-sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .tp-sitemap-grid { grid-template-columns: repeat(4, 1fr); } }
.tp-sitemap-card {
  background: var(--tp-bg-raised);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  padding: 14px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tp-sitemap-card:hover { border-color: var(--tp-accent); box-shadow: 0 2px 12px rgba(123,44,191,0.1); }
.tp-sitemap-card a { font-weight: 700; font-size: 14px; color: var(--tp-accent); display: block; margin-bottom: 4px; }
.tp-sitemap-card p { font-size: 12px; color: var(--tp-text-muted); }
.tp-sitemap-section { margin-bottom: 36px; }
.tp-sitemap-section h2 { font-size: 18px; margin-bottom: 12px; border-bottom: 2px solid var(--tp-border); padding-bottom: 8px; }
