:root {
  --bg: #f3f6fb;
  --card-bg: #ffffff;
  --text: #1a2a3a;
  --muted: #5d6d82;
  --line: #d4deee;
  --accent: #1f4b8f;
  --cta: #ff6a00;
  --cta-dark: #e45d00;
}

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

body {
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #edf3fc 0%, #dfe9f8 100%);
  color: var(--text);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

header.site-header {
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 222, 238, 0.7);
  background-color: rgba(255, 255, 255, 0.92);
  background-image: url('./assets/header-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 20;
}

.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  font-size: 1.12rem;
  font-weight: 800;
  color: #12335f;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(170, 190, 220, 0.65);
  box-shadow: 0 5px 16px rgba(21, 54, 110, 0.12);
}

.header-company-meta {
  font-size: 0.68rem;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
  margin-top: 4px;
}

.legal-entity {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd47a 0%, #ffbd4a 100%);
  color: #0f2246;
  border: 1px solid rgba(255, 223, 153, 0.9);
  box-shadow: 0 4px 12px rgba(255, 171, 43, 0.3);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo::before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6ccc 0%, #1d4f9f 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

nav.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-close {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(165, 184, 213, 0.85);
  background: rgba(255, 255, 255, 0.9);
  color: #1f3f67;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

nav.top-nav a {
  font-size: 0.9rem;
  color: #1f3f67;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(165, 184, 213, 0.85);
  background: rgba(255, 255, 255, 0.82);
  transition: all 0.2s ease;
}

nav.top-nav a:hover {
  color: #fff;
  border-color: #1f4b8f;
  background: #1f4b8f;
  box-shadow: 0 6px 14px rgba(31, 75, 143, 0.3);
}

.hero {
  padding: 46px 32px 34px;
  margin-top: 22px;
  margin-bottom: 10px;
  border-radius: 24px;
  background: linear-gradient(130deg, #ffffff 0%, #edf4ff 55%, #e7f0ff 100%);
  border: 1px solid #c9d8ee;
  box-shadow: 0 16px 36px rgba(24, 58, 119, 0.12);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(31, 75, 143, 0.18) 0%,
    rgba(31, 75, 143, 0) 68%
  );
  pointer-events: none;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1c4a8d;
  background: rgba(218, 231, 252, 0.9);
  border: 1px solid #aac0e2;
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 900px;
  background: linear-gradient(
    90deg,
    #0055a4 0%,
    #0055a4 33%,
    #95a9c7 33%,
    #95a9c7 66%,
    #ef4135 66%,
    #ef4135 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.35px rgba(18, 47, 88, 0.22);
  text-shadow: 0 1px 2px rgba(16, 37, 69, 0.2);
}

.hero p {
  max-width: 820px;
  color: #3f5675;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.hero-points {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e467d;
  background: #f4f8ff;
  border: 1px solid #b7c9e6;
  border-radius: 999px;
  padding: 7px 12px;
}

.review-grid {
  margin: 22px 0 40px;
  display: flex;
  align-items: stretch;
  overflow: visible;
  padding: 6px 0 14px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid #aebdd5;
  border-radius: 20px;
  padding: 18px 14px 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(27, 63, 126, 0.14);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  min-width: 196px;
  flex: 1 1 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    z-index 0.26s ease;
}

.review-card + .review-card {
  margin-left: 0;
}

.review-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 18px 32px rgba(27, 63, 126, 0.25);
  z-index: 10;
}

.brand-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  margin: 2px auto 10px;
  border: 1px solid #b7c6dc;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #2a4d86;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #edf3fb 100%);
  box-shadow: inset 0 0 10px rgba(32, 74, 136, 0.08);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  margin-bottom: 2px;
}

.brand-score {
  color: #244b87;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.brand-text {
  color: #5c6b7f;
  font-size: 0.88rem;
  margin-bottom: 14px;
  flex-grow: 1;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid #9eb0ca;
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #264c86;
  background: #f7faff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #1f4b8f;
  border-color: #1f4b8f;
  box-shadow: 0 6px 14px rgba(31, 75, 143, 0.28);
}

.btn + .btn {
  margin-top: 9px;
}

.btn.play {
  border: none;
  color: #fff;
  background: linear-gradient(180deg, #ff8f2a 0%, var(--cta) 100%);
  box-shadow: 0 5px 12px rgba(255, 104, 0, 0.33);
}

.btn.play:hover {
  background: linear-gradient(180deg, #ff9d41 0%, var(--cta-dark) 100%);
}

.info-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 18px;
}

.info-section h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.info-section p,
.info-section li {
  color: #42576f;
}

.info-section ul {
  padding-left: 20px;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0;
}

.guide-card {
  background: linear-gradient(170deg, #ffffff 0%, #f2f7ff 100%);
  border: 1px solid #d5e1f4;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(22, 55, 108, 0.08);
  position: relative;
  overflow: hidden;
}

.guide-card::after {
  content: '';
  position: absolute;
  right: -32px;
  top: -32px;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(45, 102, 187, 0.16) 0%,
    rgba(45, 102, 187, 0) 70%
  );
}

.guide-card h3 {
  margin-bottom: 8px;
  color: #183d75;
}

.guide-card ul {
  list-style: none;
  padding-left: 0;
}

.guide-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 7px;
}

.guide-card li::before {
  content: '◆';
  color: #2b61b2;
  font-size: 0.72rem;
  margin-top: 4px;
}

.aggregator-section {
  background: linear-gradient(170deg, #ffffff 0%, #eef5ff 100%);
}

.aggregator-section > p {
  max-width: 900px;
}

.info-section.aggregator-section h2,
.info-section.comparison-section h2,
.info-section.faq-section h2 {
  background: linear-gradient(
    90deg,
    #0055a4 0%,
    #0055a4 33%,
    #95a9c7 33%,
    #95a9c7 66%,
    #ef4135 66%,
    #ef4135 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  -webkit-text-stroke: 0.3px rgba(18, 47, 88, 0.2);
  text-shadow: 0 1px 2px rgba(16, 37, 69, 0.18);
  display: inline-block;
}

.comparison-scroll {
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  border: 1px solid #d6e2f3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(19, 55, 109, 0.08);
  min-width: 860px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, minmax(120px, 1fr));
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid #e2e9f5;
  background: #fff;
}

.comparison-row:first-child {
  border-top: none;
}

.comparison-head {
  background: linear-gradient(145deg, #e6f0ff 0%, #edf4ff 100%);
  font-weight: 700;
  color: #193d73;
}

.comparison-row span:first-child {
  font-weight: 600;
  color: #2a466a;
}

.comparison-section {
  background: linear-gradient(170deg, #ffffff 0%, #f7faff 100%);
}

.faq-list article {
  border: 1px solid #dae5f5;
  border-radius: 12px;
  background: #fff;
  padding: 11px 12px;
  margin-top: 10px;
  box-shadow: 0 5px 12px rgba(22, 58, 116, 0.05);
}

.faq-list article:first-child {
  margin-top: 0;
}

.faq-list h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  color: #1c3f72;
}

.faq-list p {
  color: #415a79;
}

.faq-section {
  background: linear-gradient(170deg, #ffffff 0%, #f2f7ff 100%);
}

main.container {
  background: transparent;
  border-radius: 0;
}

.page {
  padding: 34px 0 52px;
}

.breadcrumb {
  color: #4f6380;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

footer {
  margin-top: 30px;
}

.site-footer {
  background-color: #111f46;
  background-image:
    linear-gradient(
      145deg,
      rgba(15, 31, 72, 0.95) 0%,
      rgba(34, 24, 85, 0.95) 100%
    ),
    url('./assets/header-bg.svg');
  background-size: cover;
  background-position: center;
  color: #e7eeff;
  border-top: 1px solid rgba(145, 170, 214, 0.24);
}

.site-footer-inner {
  padding: 26px 0 22px;
}

.footer-logo-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-logo-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(173, 196, 235, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.footer-logo-links img {
  max-height: 34px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.84rem;
  color: #d6e1fb;
}

.footer-description p {
  margin-bottom: 9px;
}

.footer-description strong {
  display: inline-block;
  margin-top: 4px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #0f2246;
  background: linear-gradient(180deg, #ffd47a 0%, #ffbd4a 100%);
  border: 1px solid rgba(255, 223, 153, 0.9);
  box-shadow: 0 6px 16px rgba(255, 171, 43, 0.35);
  font-weight: 800;
}

.footer-nav-pills {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-nav-pills a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(161, 184, 222, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #eaf1ff;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-copyright {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: #c2d1f4;
}

@media (max-width: 1050px) {
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 14px;
    padding: 0;
  }

  .review-card + .review-card {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header .row {
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding-right: 54px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  nav.top-nav.is-mobile-ready {
    display: none;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 12px;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid #c5d5ec;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 22px rgba(20, 54, 107, 0.16);
  }

  nav.top-nav.is-mobile-ready.is-open {
    display: flex;
  }

  .menu-close {
    display: none;
    margin-left: auto;
    margin-bottom: 4px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #b8c8e3;
    background: #fff;
    color: #1f4b8f;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
  }

  nav.top-nav.is-mobile-ready.is-open .menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle.is-open span,
  .menu-toggle.is-open span::before,
  .menu-toggle.is-open span::after {
    opacity: 0;
  }

  .menu-toggle.is-open {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  nav.top-nav.is-mobile-ready a {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .hero {
    padding: 34px 18px 26px;
    border-radius: 18px;
  }

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

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

  .site-footer-inner {
    padding: 20px 0;
  }

  .footer-description {
    font-size: 0.8rem;
  }
}

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

.ps-review {
  background: #f6f8fb;
  border: 1px solid #d8deea;
  border-radius: 22px;
  padding: 16px;
}

.ps-cover {
  border-radius: 20px;
  overflow: hidden;
  height: 240px;
  background: #0f1724;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-cover::before,
.ps-cover::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38%;
  background-image: var(--ps-cover-image);
  background-size: cover;
  filter: blur(18px) brightness(0.7);
  transform: scale(1.15);
  z-index: 1;
}

.ps-cover::before {
  left: 0;
  background-position: left center;
}

.ps-cover::after {
  right: 0;
  background-position: right center;
}

.ps-cover img {
  width: 52%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 4px;
}

.ps-intro {
  margin-top: -36px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ps-logo-wrap {
  width: 106px;
  height: 106px;
  border-radius: 999px;
  background: #020204;
  border: 4px solid #fff;
  box-shadow: 0 9px 20px rgba(9, 16, 30, 0.2);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.ps-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ps-title-wrap h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.ps-metrics {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.ps-metric {
  min-width: 145px;
}

.ps-metric-label {
  display: block;
  font-size: 0.85rem;
  color: #485d7b;
  margin-bottom: 4px;
}

.ps-metric strong {
  font-size: 1.12rem;
  margin-right: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.ps-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  line-height: 1;
}

.ps-icon-star-red {
  background: #ef3340;
  color: #fff;
}

.ps-icon-star-blue {
  background: #0f74cb;
  color: #fff;
}

.ps-icon-check-green {
  background: #21a454;
  color: #fff;
  font-size: 0.68rem;
}

.ps-metric a {
  font-size: 0.86rem;
  color: #55719a;
  text-decoration: underline;
}

.ps-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  margin-top: 20px;
}

.ps-split-single {
  grid-template-columns: 1fr;
}

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

.ps-box {
  background: #fff;
  border: 1px solid #dce4f1;
  border-radius: 14px;
  padding: 14px 16px;
}

.ps-box h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ps-box ul {
  list-style: none;
  padding-left: 0;
}

.ps-box li {
  margin-bottom: 7px;
  color: #1f2e43;
  display: flex;
  align-items: center;
  gap: 9px;
}

.ps-box-like li::before,
.ps-box-dislike li::before {
  content: '✓';
  width: 13px;
  height: 13px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.ps-box-like li::before {
  background: #0f74cb;
  box-shadow: inset 0 0 0 3px #ffffff;
  border: 1px solid #0e66b1;
}

.ps-box-dislike li::before {
  content: '×';
  background: #ef3340;
  border: 1px solid #d4202d;
}

.ps-affiliate {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #dce4f1;
  border-radius: 14px;
  padding: 14px 16px;
}

.ps-affiliate h3 {
  margin-bottom: 8px;
}

.ps-affiliate p {
  color: #4b6079;
}

.ps-author {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.ps-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, #e9eef8 0%, #d8e2f3 100%);
  color: #294a79;
  font-size: 0.78rem;
  border: 1px solid #b8c8de;
}

.ps-offer-card {
  background: #fff;
  border: 1px solid #dce4f1;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(16, 33, 61, 0.12);
  align-self: start;
}

.ps-offer-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ps-offer-head img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
}

.ps-offer-head h3 {
  font-size: 2rem;
  line-height: 1.2;
}

.ps-offer-btn {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8f2a 0%, var(--cta) 100%);
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  box-shadow: 0 5px 12px rgba(255, 104, 0, 0.33);
}

.ps-offer-btn:hover {
  background: linear-gradient(180deg, #ff9d41 0%, var(--cta-dark) 100%);
}

.ps-details {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #d8e0ee;
  border-radius: 16px;
  padding: 20px;
}

.ps-details h2 {
  margin-bottom: 6px;
}

.ps-details > p {
  color: #49617f;
  margin-bottom: 14px;
}

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

.ps-tab-btn {
  border: 1px solid #ccd9ed;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: #f4f8ff;
  color: #29486f;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ps-tab-btn:hover {
  background: #e9f2ff;
  border-color: #a9c1e3;
}

.ps-tab-btn.is-active {
  background: #1f4b8f;
  color: #fff;
  border-color: #1f4b8f;
  box-shadow: 0 7px 14px rgba(31, 75, 143, 0.26);
}

.ps-tab-panel {
  display: none;
}

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

.ps-table {
  border: 1px solid #dce3f0;
  border-radius: 12px;
  overflow: hidden;
}

.ps-table div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #e3e9f5;
  background: #fff;
}

.ps-table div:nth-child(odd) {
  background: #f8fbff;
}

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

.ps-table span {
  color: #526a89;
  font-weight: 600;
}

.ps-table a {
  color: #285393;
  text-decoration: underline;
}

.ps-copy {
  margin-top: 20px;
}

.ps-copy h3 {
  margin-top: 14px;
  margin-bottom: 6px;
}

.reviews-section {
  margin-top: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid #d8e0ee;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(22, 52, 102, 0.08);
}

.reviews-section h2 {
  margin-bottom: 16px;
  color: #1c365b;
}

.review-item {
  border: 1px solid #e2e9f5;
  border-radius: 14px;
  background: #fff;
  padding: 14px 14px 13px;
  margin-top: 12px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.review-item:hover {
  transform: translateY(-2px);
  border-color: #c8d7ee;
  box-shadow: 0 8px 18px rgba(24, 57, 112, 0.11);
}

.review-item:first-of-type {
  margin-top: 0;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.review-author {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author::before {
  content: '';
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-block;
  background-color: #2b5fae;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='8' r='4' fill='white'/%3E%3Cpath d='M4 19c0-3.2 3.6-5.5 8-5.5s8 2.3 8 5.5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  box-shadow: 0 4px 10px rgba(22, 57, 112, 0.3);
}

.review-meta {
  font-size: 0.9rem;
  color: #5e7290;
}

.review-score {
  font-weight: 800;
  color: #1c3f72;
  background: #edf4ff;
  border: 1px solid #c3d6f2;
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.review-score::before {
  content: '★★★★★';
  color: #f5b301;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.review-text {
  color: #334b6a;
}

.age-gate-open {
  overflow: hidden;
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(
      circle at 10% 95%,
      rgba(18, 74, 148, 0.42) 0%,
      rgba(18, 74, 148, 0) 40%
    ),
    linear-gradient(130deg, rgba(8, 16, 46, 0.9) 0%, rgba(13, 23, 58, 0.9) 100%);
  backdrop-filter: blur(4px);
}

.age-gate-overlay[hidden] {
  display: none;
}

.age-gate-modal {
  width: min(560px, 100%);
  border-radius: 12px;
  border: 1px solid rgba(202, 220, 247, 0.85);
  background: linear-gradient(
    145deg,
    rgba(35, 44, 73, 0.95) 0%,
    rgba(23, 33, 63, 0.95) 100%
  );
  color: #f2f6ff;
  padding: 24px;
  box-shadow: 0 24px 54px rgba(3, 9, 28, 0.5);
}

.age-gate-modal[hidden] {
  display: none;
}

.age-gate-topline {
  color: #dfe8fb;
  font-size: 1.02rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(201, 216, 245, 0.35);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.age-gate-modal h2 {
  font-size: 1.62rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.age-gate-modal p {
  color: rgba(239, 245, 255, 0.88);
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.age-gate-modal a {
  color: #f3f7ff;
  text-decoration: underline;
}

.age-gate-confirm {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  background: #ffffff;
  color: #1a2a3a;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.age-gate-decline {
  display: block;
  width: fit-content;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
  font-size: 1.03rem;
  font-weight: 700;
  margin: 14px auto 0;
  cursor: pointer;
}

.age-gate-modal--limited {
  width: min(640px, 100%);
}

.age-gate-warning {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ff4141;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .age-gate-modal {
    padding: 18px;
  }

  .age-gate-modal h2 {
    font-size: 1.34rem;
  }

  .ps-cover img {
    width: 100%;
  }

  .ps-cover::before,
  .ps-cover::after {
    display: none;
  }

  .ps-split {
    grid-template-columns: 1fr;
  }

  .ps-like-grid {
    grid-template-columns: 1fr;
  }

  .ps-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.footer-company-address {
  text-align: center;
  margin: 2px auto 14px;
  color: #eaf1ff;
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-company-address strong {
  font-size: 0.95rem;
  color: #ffffff;
}
