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

:root {
  --coal: #1A1A1F;
  --coal-mid: #2A2A32;
  --bordeaux: #8B1A2B;
  --bordeaux-light: #A82236;
  --bordeaux-pale: #f5e8ea;
  --gold: #6B7C8D;
  --gold-light: #8A9BAA;
  --cream: #F5EFE0;
  --cream-dark: #EBE4D0;
  --text-main: #1A1A1F;
  --text-muted: #6B6560;
  --text-light: #9A9488;
  --border: rgba(26, 26, 31, 0.12);
  --border-gold: rgba(107, 124, 141, 0.35);
  --shadow-card: 0 2px 20px rgba(26, 26, 31, 0.08);
  --radius: 4px;
  --radius-lg: 8px;
  --green: #3d8b4e;
  --green-pale: #edf5ef;
  --red-pale: #fdf0f2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

.aggregator-notice {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
}

.aggregator-notice__inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.aggregator-notice strong {
  color: var(--coal);
}

.aggregator-notice a {
  color: var(--bordeaux);
  font-weight: 500;
}

.sidebar-card--disclaimer {
  background: var(--cream);
  border-color: var(--border);
}

.sidebar-card--disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.btn-external {
  background: transparent;
  color: var(--coal);
  border: 1px solid var(--border);
}

.btn-external:hover {
  background: var(--cream-dark);
  border-color: var(--text-light);
}

header {
  background: var(--coal);
  border-bottom: 1px solid var(--coal-mid);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--gold);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--gold-light);
}
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb-inner a {
  color: var(--bordeaux);
  text-decoration: none;
}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}
.platform-hero {
  background: var(--coal);
  padding: 3rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.platform-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bordeaux), transparent);
}

.platform-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.platform-hero-logo {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 96px;
  border: 1px solid var(--border);
}

.platform-hero-logo img {
  max-width: 160px;
  max-height: 72px;
  object-fit: contain;
}

.platform-hero-text {
  flex: 1;
  min-width: 240px;
}

.platform-hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.platform-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.platform-hero-category {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.platform-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.hero-rating {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.hero-rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-rating-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.hero-meta-item {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta-item strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
.platform-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.platform-content section {
  margin-bottom: 2.5rem;
}

.platform-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--coal);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bordeaux-pale);
}

.platform-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--coal);
  margin: 1.25rem 0 0.5rem;
}

.platform-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.platform-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.platform-content li {
  margin-bottom: 0.35rem;
}
.score-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.score-item {
  display: grid;
  grid-template-columns: 140px 1fr 44px;
  gap: 0.75rem;
  align-items: center;
}

.score-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-main);
}

.score-bar-wrap {
  height: 8px;
  background: var(--cream-dark);
  border-radius: 20px;
  overflow: hidden;
}

.score-bar {
  height: 100%;
  background: var(--bordeaux);
  border-radius: 20px;
}

.score-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coal);
  text-align: right;
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.pros-box,
.cons-box {
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
}

.pros-box {
  background: var(--green-pale);
  border-color: rgba(61, 139, 78, 0.2);
}

.cons-box {
  background: var(--red-pale);
  border-color: rgba(139, 26, 43, 0.15);
}

.pros-box h3,
.cons-box h3 {
  margin-top: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.pros-box li,
.cons-box li {
  font-size: 0.85rem;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.pros-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.cons-box li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--bordeaux);
  font-weight: 700;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

.info-table th,
.info-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  width: 38%;
  font-weight: 600;
  color: var(--coal);
  background: var(--cream-dark);
}

.info-table td {
  color: var(--text-muted);
}
.verdict-box {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--bordeaux);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.verdict-box p {
  margin-bottom: 0;
}
.platform-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--coal);
  margin-bottom: 1rem;
}

.sidebar-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sidebar-facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-facts span:first-child {
  color: var(--text-light);
}

.sidebar-facts span:last-child {
  font-weight: 600;
  color: var(--coal);
  text-align: right;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.sidebar-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--cream-dark);
  color: var(--text-muted);
}

.sidebar-tag--license {
  background: rgba(139, 26, 43, 0.08);
  color: var(--bordeaux);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  width: 100%;
  text-align: center;
}

.btn-primary {
  background: var(--bordeaux);
  color: #fff;
  border: 1px solid var(--bordeaux);
}

.btn-primary:hover {
  background: var(--bordeaux-light);
}

.btn-outline {
  background: transparent;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
}

.btn-outline:hover {
  background: var(--bordeaux-pale);
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-warning {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 0.75rem;
  text-align: center;
}
.ap-trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 2.25rem 1.5rem;
}

.ap-trust-strip__wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ap-trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-bottom: 1.25rem;
}

.ap-trust-strip__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream);
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ap-trust-strip__logo:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.ap-trust-strip__logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.ap-trust-strip__links {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.ap-trust-strip__links a {
  color: var(--bordeaux);
  font-weight: 500;
  text-decoration: none;
}

.ap-trust-strip__links a:hover {
  text-decoration: underline;
  color: var(--bordeaux-light);
}
footer {
  background: var(--coal);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-warning {
  background: rgba(139, 26, 43, 0.25);
  border: 1px solid rgba(139, 26, 43, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-warning p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.footer-warning strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--gold-light);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.5;
}

.compliance-strip {
  background: var(--coal);
  border-bottom: 1px solid var(--coal-mid);
  padding: 0.55rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.compliance-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  text-align: center;
}

.compliance-strip__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.35rem;
  padding: 0 0.4rem;
  border-radius: 4px;
  background: var(--bordeaux);
  color: #fff;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.compliance-strip a {
  color: var(--gold-light);
  text-decoration: underline;
}

.compliance-strip a:hover {
  color: #fff;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(26, 26, 31, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent__inner p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 220px;
}

.cookie-consent__inner a {
  color: var(--gold-light);
}

.cookie-consent__actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-consent__btn {
  border: none;
  border-radius: var(--radius);
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--bordeaux);
  color: #fff;
}

.cookie-consent__btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.faq-item p {
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.contact-section {
  background: var(--coal);
  color: rgba(255, 255, 255, 0.75);
}

.contact-section .section-label {
  color: var(--gold);
}

.contact-section .section-title {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.contact-card h3 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.88rem;
  line-height: 1.65;
}

.contact-card a {
  color: var(--gold-light);
}

.pt-rg-footer {
  background: #111116;
  border-top: 3px solid var(--bordeaux);
  padding: 1.25rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.pt-rg-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pt-rg-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 1.65rem;
  padding: 0 0.55rem;
  margin-bottom: 0.75rem;
  border-radius: 4px;
  background: var(--bordeaux);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.pt-rg-footer__msg {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.pt-rg-footer__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
}

.pt-rg-footer__links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: underline;
}

.pt-rg-footer__links a:hover {
  color: #fff;
}

.license-verify {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.license-verify h3 {
  font-size: 0.9rem;
  color: var(--coal);
  margin-bottom: 0.45rem;
}

.license-verify a {
  color: var(--bordeaux);
  font-weight: 500;
}

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

  .platform-sidebar {
    position: static;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .score-item {
    grid-template-columns: 1fr 44px;
  }

  .score-label {
    grid-column: 1 / -1;
  }

  nav {
    display: none;
  }

  .hero-meta-item {
    border-left: none;
    padding-left: 0;
  }
}
