* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b1a;
  background-image:
    radial-gradient(
      circle at 25% 40%,
      rgba(0, 255, 255, 0.08) 1%,
      transparent 1%
    ),
    radial-gradient(
      circle at 75% 85%,
      rgba(255, 0, 255, 0.08) 1%,
      transparent 1%
    );
  background-size: 48px 48px;
  color: #eef2ff;
  line-height: 1.4;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo,
.nav-link,
.card-title,
.hero-btn {
  font-family: 'Clash Display', 'Inter', sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 20px 0;
  border-bottom: 2px solid #0ff3;
  background: rgba(8, 8, 20, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}

.header-block {
  padding-bottom: 4px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

.header-publisher {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #8b9dc4;
  text-align: center;
  line-height: 1.45;
  margin: 14px auto 0;
  max-width: 720px;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0ff, #f0f, #ff4d6d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 6px #0ff4;
}

a.logo {
  text-decoration: none;
  color: transparent;
}

.nav-menu {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  color: #ccd6f0;
  transition: 0.2s;
  letter-spacing: -0.2px;
}

.nav-link:hover {
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 255, 255, 0.45);
  border-radius: 12px;
  background: rgba(12, 12, 28, 0.6);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: #0ff8;
  background: rgba(0, 255, 255, 0.08);
}

.nav-toggle:focus-visible {
  outline: 2px solid #0ff;
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: #9aefff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.header-inner.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-inner.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.header-inner.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  header {
    z-index: 50;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    flex-basis: 100%;
    width: 100%;
    gap: 0;
    padding: 8px 0 4px;
    margin-top: 4px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
  }

  .header-inner.is-nav-open .nav-menu {
    display: flex;
  }

  .nav-link {
    padding: 14px 6px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  body.nav-drawer-open {
    overflow: hidden;
  }
}

.hero {
  padding: 60px 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.hero-content {
  flex: 1 1 auto;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(125deg, #0ff, #f0f, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.2rem;
  color: #b9c3e6;
  margin: 0 auto 28px;
  max-width: 52rem;
}

.hero-btn {
  background: linear-gradient(95deg, #0ff, #f0f);
  border: none;
  color: #0a0a1a;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 60px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 0 12px #0ff6;
  font-size: 1rem;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 22px #f0f;
}

.hero-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 48px 0 24px 0;
  letter-spacing: -0.01em;
  border-left: 6px solid #0ff;
  padding-left: 20px;
  text-shadow: 0 0 5px #0ff4;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 40px 0;
  align-items: stretch;
}

@media (max-width: 1180px) {
  .platforms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .platforms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  background: rgba(12, 12, 28, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 24px 20px;
  border: 1px solid rgba(0, 255, 255, 0.4);
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card:hover {
  transform: translateY(-6px);
  border-color: #f0f;
  box-shadow: 0 0 18px #f0f5;
}

.card-logo {
  display: block;
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 20px;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0;
  width: 100%;
}

.stars {
  color: #ffd966;
  text-shadow: 0 0 3px #ffaa33;
  letter-spacing: 2px;
}

.rating-value {
  font-weight: 600;
  color: #0ff;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 8px 0 6px;
  width: 100%;
  background: linear-gradient(145deg, #fff, #0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card-desc {
  font-size: 0.9rem;
  color: #cbd5ff;
  margin: 12px 0;
  line-height: 1.4;
  width: 100%;
}

.payment-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.payment-icon {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 1px cyan);
  opacity: 0.85;
}

.card-actions {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
}

.card-btn {
  display: block;
  box-sizing: border-box;
  background: linear-gradient(95deg, #0ff2, #f0f2);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 40px;
  transition: 0.2s;
  width: 100%;
  text-align: center;
  border: 1px solid #0ff8;
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 0.95rem;
}

.card-btn:hover {
  background: linear-gradient(95deg, #0ff, #f0f);
  color: #000;
  box-shadow: 0 0 12px #0ff;
}

.card-btn-secondary {
  background: transparent;
  color: #5eefff;
  border: 1px solid rgba(0, 255, 255, 0.55);
}

.card-btn-secondary:hover {
  background: rgba(0, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.35);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: space-between;
}

.feature {
  flex: 1;
  background: rgba(8, 8, 28, 0.7);
  backdrop-filter: blur(6px);
  padding: 24px;
  border-radius: 28px;
  border: 1px solid #f0f6;
}

.feature strong {
  color: #0ff;
}

.home-topic-lead {
  max-width: 52rem;
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: #b9c3e6;
  line-height: 1.55;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 8px 0 56px;
}

@media (max-width: 960px) {
  .topic-grid {
    grid-template-columns: 1fr;
  }
}

.topic-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  background: rgba(12, 12, 28, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 26px 22px;
  border: 1px solid rgba(240, 0, 255, 0.22);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.topic-card:hover {
  border-color: rgba(0, 255, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.topic-card h3 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 1.18rem;
  margin: 0 0 12px;
  color: #eef2ff;
  letter-spacing: -0.02em;
}

.topic-card p {
  flex: 1;
  color: #ccddf8;
  line-height: 1.55;
  margin: 0 0 18px;
  font-size: 0.98rem;
}

.topic-read {
  margin-top: auto;
  font-weight: 700;
  color: #5eefff;
  text-decoration: none;
  align-self: flex-start;
}

.topic-read:hover {
  color: #0ff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.35);
}

.table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(10, 10, 25, 0.8);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid #0ff5;
}

.compare-table th,
.compare-table td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #0ff3;
  color: #eef2ff;
}

.compare-table th {
  background: #0ff2;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 2px cyan;
}

.reviews {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.review-card {
  background: rgba(18, 18, 40, 0.8);
  backdrop-filter: blur(5px);
  padding: 22px;
  border-radius: 24px;
  flex: 1;
  min-width: 240px;
  border: 1px solid #f0f4;
}

.faq-item {
  background: rgba(15, 15, 35, 0.75);
  border-radius: 20px;
  margin: 16px 0;
  border: 1px solid #0ff6;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  color: #0ff;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: #ccddf8;
  display: none;
}

.faq-answer.show {
  display: block;
}

.faq-answer a {
  color: #5eefff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: #0ff;
}

.regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin: 48px 0 32px;
}

.regulators a img {
  height: 44px;
  opacity: 0.8;
  transition: 0.2s;
  filter: drop-shadow(0 0 2px cyan);
}

.regulators a:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 8px #0ff);
}

.responsible-box {
  background: linear-gradient(145deg, #0ff1, #f0f1);
  backdrop-filter: blur(8px);
  padding: 28px;
  border-radius: 32px;
  text-align: center;
  margin: 40px 0;
  border-left: 8px solid #0ff;
  color: #f0f2ff;
}

footer {
  background: #03030f;
  border-top: 2px solid #0ff6;
  padding: 48px 0 32px;
  margin-top: 64px;
  border-radius: 32px 32px 0 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: #bbccff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #0ff;
  text-shadow: 0 0 3px cyan;
}

.footer-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8rem;
  border-top: 1px solid #0ff4;
  padding-top: 24px;
}

.footer-advertiser {
  margin-top: 14px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 179, 71, 0.7);
  background: rgba(255, 179, 71, 0.12);
  color: #ffd28f;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.legal-page {
  padding-bottom: 32px;
}

.legal-breadcrumb {
  font-size: 0.85rem;
  color: #8b9dc4;
  margin: 20px 0 4px;
}

.legal-breadcrumb a {
  color: #5eefff;
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  color: #0ff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.45);
}

.legal-hero {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 40px;
  padding: 28px 0 0;
}

.legal-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a1a;
  background: linear-gradient(95deg, #0ff, #f0f);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-family: 'Clash Display', 'Inter', sans-serif;
}

.legal-hero h1 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(125deg, #0ff, #f0f, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-lead {
  font-size: 1.1rem;
  color: #b9c3e6;
  line-height: 1.55;
}

.legal-section {
  margin: 36px 0;
}

.home-rich > p,
.home-rich > ul {
  max-width: 52rem;
}

.home-rich .legal-grid {
  max-width: none;
}

.home-rich .legal-callout {
  max-width: 52rem;
}

.legal-section > h2 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 1.55rem;
  margin-bottom: 18px;
  padding-left: 16px;
  border-left: 5px solid #0ff;
  color: #eef2ff;
  letter-spacing: -0.02em;
}

.legal-section h3 {
  font-size: 1.12rem;
  color: #5eefff;
  margin: 22px 0 10px;
  font-weight: 600;
}

.legal-section p,
.legal-section li {
  color: #ccddf8;
  line-height: 1.55;
  margin-bottom: 12px;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin: 8px 0 18px;
}

.legal-section a {
  color: #5eefff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: #0ff;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 22px 0;
}

.legal-card {
  background: rgba(12, 12, 28, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 24px 22px;
  border: 1px solid rgba(0, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.legal-card h3 {
  margin-top: 0;
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #eef2ff;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin-top: 8px;
}

.legal-callout {
  background: rgba(0, 255, 255, 0.07);
  border: 1px solid rgba(0, 255, 255, 0.35);
  border-radius: 24px;
  padding: 22px 26px;
  margin: 28px 0;
  color: #dde8ff;
}

.legal-callout strong {
  color: #0ff;
}

.legal-meta {
  font-size: 0.9rem;
  color: #9aaee0;
}

.ps-review {
  margin-bottom: 8px;
}

.ps-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.ps-logo-wrap {
  flex: 0 0 auto;
  background: rgba(12, 12, 28, 0.75);
  border: 1px solid rgba(0, 255, 255, 0.35);
  border-radius: 24px;
  padding: 20px 24px;
}

.ps-logo-wrap img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto;
}

.ps-title-wrap {
  flex: 1;
  min-width: 220px;
}

.ps-title-wrap h1 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  background: linear-gradient(125deg, #0ff, #f0f, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ps-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 14px;
}

.ps-metric {
  background: rgba(10, 10, 28, 0.88);
  border: 1px solid rgba(255, 0, 255, 0.22);
  border-radius: 20px;
  padding: 16px 18px;
}

.ps-metric-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9aaee0;
  margin-bottom: 8px;
  font-weight: 600;
}

.ps-metric strong {
  color: #eef2ff;
  font-size: 1.1rem;
  font-weight: 700;
}

.ps-metric-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #7a8fba;
  line-height: 1.35;
}

.ps-split {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 300px);
  gap: 28px;
  align-items: start;
}

.ps-main {
  min-width: 0;
}

.ps-like-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ps-box {
  border-radius: 24px;
  padding: 22px;
  border: 1px solid;
}

.ps-box-like {
  border-color: rgba(0, 255, 255, 0.45);
  background: rgba(0, 255, 255, 0.06);
}

.ps-box-dislike {
  border-color: rgba(255, 77, 150, 0.4);
  background: rgba(255, 0, 255, 0.05);
}

.ps-box h2 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #eef2ff;
}

.ps-box ul {
  padding-left: 1.15rem;
  margin: 0;
  color: #ccddf8;
  line-height: 1.5;
  font-size: 0.92rem;
}

.ps-affiliate {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 180, 71, 0.08);
  border: 1px solid rgba(255, 200, 120, 0.35);
}

.ps-affiliate h3 {
  color: #ffb347;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: 'Clash Display', 'Inter', sans-serif;
}

.ps-affiliate p {
  color: #dde5ff;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.ps-offer-card {
  position: sticky;
  top: 96px;
  background: rgba(12, 12, 28, 0.92);
  border: 1px solid rgba(0, 255, 255, 0.45);
  border-radius: 28px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 0 28px rgba(0, 255, 255, 0.12);
}

.ps-offer-head img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 12px;
}

.ps-offer-head h3 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  color: #eef2ff;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.ps-offer-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(95deg, #0ff, #f0f);
  color: #0a0a1a;
  text-decoration: none;
  border: none;
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 1rem;
  transition: 0.2s;
  box-sizing: border-box;
}

.ps-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.45);
}

.ps-details {
  margin: 48px 0 28px;
}

.ps-details > h2 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 1.55rem;
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 5px solid #0ff;
  color: #eef2ff;
}

.ps-details > p {
  color: #b9c3e6;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ps-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}

.ps-tab-btn {
  font-family: 'Clash Display', 'Inter', sans-serif;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 255, 0.35);
  background: rgba(8, 8, 24, 0.85);
  color: #ccd6f0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: 0.2s;
}

.ps-tab-btn:hover {
  border-color: #0ff;
  color: #0ff;
}

.ps-tab-btn.is-active {
  background: linear-gradient(95deg, #0ff, #f0f);
  color: #0a0a1a;
  border-color: transparent;
}

.ps-tab-panel {
  display: none;
  background: rgba(10, 10, 25, 0.78);
  border: 1px solid rgba(0, 255, 255, 0.28);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 8px;
}

.ps-tab-panel.is-active {
  display: block;
}

.ps-table > div {
  display: grid;
  grid-template-columns: minmax(110px, 190px) 1fr;
  gap: 14px 20px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  align-items: start;
}

.ps-table > div:last-child {
  border-bottom: none;
}

.ps-table span:first-child {
  color: #8eb4ff;
  font-size: 0.86rem;
  font-weight: 600;
}

.ps-table strong {
  color: #eef2ff;
  font-weight: 500;
  font-size: 0.92rem;
}

.ps-table a {
  color: #5eefff;
  word-break: break-word;
  font-size: 0.92rem;
}

.ps-editorial {
  margin: 36px 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(8, 8, 28, 0.65);
  border: 1px solid rgba(240, 0, 255, 0.2);
}

.ps-editorial h2 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 1.35rem;
  color: #eef2ff;
  margin-bottom: 14px;
}

.ps-editorial p {
  color: #ccddf8;
  line-height: 1.55;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.reviews-section {
  margin: 40px 0 28px;
}

.reviews-section > h2 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 1.45rem;
  margin-bottom: 18px;
  padding-left: 16px;
  border-left: 5px solid #f0f;
  color: #eef2ff;
}

.review-item {
  background: rgba(18, 18, 40, 0.82);
  border: 1px solid rgba(240, 0, 255, 0.22);
  border-radius: 22px;
  padding: 20px 22px;
  margin-bottom: 14px;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 700;
  color: #0ff;
}

.review-meta {
  font-size: 0.8rem;
  color: #8b9dc4;
  margin-top: 4px;
}

.review-score {
  font-weight: 700;
  color: #ffd966;
  flex-shrink: 0;
}

.review-text {
  color: #ccddf8;
  line-height: 1.5;
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .ps-split {
    grid-template-columns: 1fr;
  }

  .ps-offer-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .ps-like-grid {
    grid-template-columns: 1fr;
  }

  .ps-table > div {
    grid-template-columns: 1fr;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
}

.popup-card {
  background: linear-gradient(145deg, #0f0f2a, #030318);
  border: 2px solid #0ff;
  box-shadow: 0 0 35px #0ff6;
  max-width: 440px;
  width: 90%;
  padding: 36px 28px;
  border-radius: 48px;
  text-align: center;
}

.popup-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0ff;
}

.btn-yes,
.btn-no {
  padding: 12px 28px;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
}

.btn-yes {
  background: linear-gradient(95deg, #0ff, #0aa);
  color: #000;
}

.btn-no {
  background: #444466;
  color: white;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

img {
  max-width: 100%;
  display: block;
}
