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

:root {
  --navy: #0A1628;
  --navy-mid: #0F2040;
  --navy-card: #162036;
  --blue: #1B6EF3;
  --blue-light: #3D88FF;
  --gold: #F0B429;
  --gold-light: #F7CE5B;
  --slate: #C5D0E6;
  --white: #F4F8FF;
  --text-muted: #8A9BBF;
  --green: #22C55E;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--blue-light);
}

#age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 22, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-box {
  background: var(--navy-mid);
  border: 1px solid rgba(27, 110, 243, 0.4);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 44px 40px 36px;
  text-align: center;
  box-shadow: 0 0 60px rgba(27, 110, 243, 0.25);
}

.popup-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  font-weight: 900;
  font-family: 'Exo 2', sans-serif;
  color: #fff;
}

.popup-box h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 14px;
}

.popup-box p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.popup-box p strong {
  color: var(--gold);
}

.popup-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 12px;
}

.popup-decline {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 6px;
}

.popup-legal {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  color: var(--text-muted);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 110, 243, .18);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.back-link {
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.back-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.nav-18 {
  background: rgba(239, 68, 68, .12);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #f87171;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.review-hero {
  padding: 48px 24px 40px;
  position: relative;
  overflow: hidden;
}

.review-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(27, 110, 243, .15) 0%, transparent 70%);
  pointer-events: none;
}

.review-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.breadcrumb a:hover {
  color: var(--slate);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.review-logo {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.review-title-block {
  flex: 1;
  min-width: 240px;
}

.review-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.review-title-block h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.review-subtitle {
  color: var(--slate);
  font-size: 17px;
  max-width: 640px;
}

.review-score-box {
  background: var(--navy-card);
  border: 1px solid rgba(240, 180, 41, .25);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  min-width: 120px;
}

.review-score-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.review-score-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.review-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.review-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.content-card {
  background: var(--navy-card);
  border: 1px solid rgba(197, 208, 230, 0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.content-card h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.content-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--slate);
}

.content-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card ul,
.content-card ol {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  padding-left: 22px;
  margin-bottom: 14px;
}

.content-card li {
  margin-bottom: 8px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.pros-box,
.cons-box {
  border-radius: 12px;
  padding: 20px;
}

.pros-box {
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .2);
}

.cons-box {
  background: rgba(239, 68, 68, .06);
  border: 1px solid rgba(239, 68, 68, .18);
}

.pros-box h3,
.cons-box h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 12px;
}

.pros-box h3 {
  color: #4ade80;
}

.cons-box h3 {
  color: #f87171;
}

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

.pros-box li,
.cons-box li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.pros-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.cons-box li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.info-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 16px;
}

.info-item strong {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.info-item span {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rbar {
  display: grid;
  grid-template-columns: 110px 1fr 36px;
  align-items: center;
  gap: 10px;
}

.rbar-label {
  font-size: 13px;
  color: var(--text-muted);
}

.rbar-track {
  height: 6px;
  background: rgba(255, 255, 255, .07);
  border-radius: 999px;
  overflow: hidden;
}

.rbar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.rbar-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  text-align: right;
}

.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 84px;
}

.sidebar-card {
  background: var(--navy-card);
  border: 1px solid rgba(197, 208, 230, 0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.sidebar-tag {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--slate);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

.btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  margin-top: 16px;
}

.btn-primary:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.btn-primary.gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.sidebar-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.verdict-box {
  background: linear-gradient(135deg, rgba(27, 110, 243, .12), rgba(240, 180, 41, .08));
  border: 1px solid rgba(27, 110, 243, .25);
  border-radius: 12px;
  padding: 24px;
  margin-top: 8px;
}

.verdict-box p {
  font-size: 15px;
  color: var(--white);
  line-height: 1.7;
}

.other-platforms {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.other-platforms h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.other-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-card);
  border: 1px solid rgba(197, 208, 230, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--white);
  transition: border-color .2s, transform .2s;
}

.other-link:hover {
  border-color: rgba(27, 110, 243, .4);
  transform: translateY(-2px);
}

.other-link img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.other-link span {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

footer {
  background: rgba(5, 12, 26, .8);
  border-top: 1px solid rgba(197, 208, 230, .1);
  padding: 48px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: var(--slate);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(197, 208, 230, .08);
  margin-bottom: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-warning {
  background: rgba(239, 68, 68, .07);
  border: 1px solid rgba(239, 68, 68, .2);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
}

.legal-warning-text {
  font-size: 13px;
  color: #fca5a5;
  line-height: 1.65;
}

.legal-warning-text strong {
  color: #f87171;
}

.legal-warning-text a {
  color: #fca5a5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}

.age-badge-footer {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .25);
  color: #f87171;
  font-weight: 800;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 7px;
  font-family: 'Exo 2', sans-serif;
}

.tgs-regulators-bar {
  padding: 44px 24px 40px;
  border-top: 1px solid rgba(197, 208, 230, .1);
  background: rgba(5, 12, 26, .55);
}

.tgs-regulators-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}

.tgs-regulator-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  opacity: .82;
  transition: opacity .2s, transform .2s, border-color .2s, background .2s;
  text-decoration: none;
}

.tgs-regulator-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(27, 110, 243, .25);
  background: rgba(27, 110, 243, .08);
}

.tgs-regulator-logo {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.tgs-regulator-logo--wide {
  height: 52px;
  max-width: 220px;
}

.tgs-regulator-logo--compact {
  height: 40px;
  max-width: 120px;
}

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

  .review-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .review-header {
    flex-direction: column;
  }

  .content-card {
    padding: 24px 20px;
  }

  .tgs-regulators-inner {
    gap: 16px 20px;
  }

  .tgs-regulator-logo {
    height: 36px;
    max-width: 160px;
  }

  .tgs-regulator-logo--wide {
    height: 42px;
    max-width: 180px;
  }
}
