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

:root {
  --navy: #0D1B2A;
  --navy2: #132233;
  --blue: #1A6FFF;
  --blue2: #0D52CC;
  --gold: #C9A84C;
  --gold2: #A8893A;
  --white: #F5F7FA;
  --grey1: #E8ECF2;
  --grey2: #B0BAC9;
  --grey3: #6B7A90;
  --text: #1A2535;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13, 27, 42, .18);
  --green: #22c55e;
}

html {
  scroll-behavior: smooth;
}

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

#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 30, .82);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

html.age-verified #popup-overlay {
  display: none;
}

#popup {
  background: var(--navy2);
  border: 2px solid var(--gold);
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 16px 60px rgba(0, 0, 0, .5);
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

#popup h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

#popup p {
  color: var(--grey2);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

#popup strong {
  color: var(--white);
}

#popup-confirm {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  border: none;
  cursor: pointer;
  padding: .9rem 1.5rem;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#popup-deny {
  display: block;
  width: 100%;
  margin-top: .75rem;
  background: transparent;
  border: 1px solid var(--grey3);
  color: var(--grey2);
  cursor: pointer;
  padding: .7rem;
  border-radius: 10px;
  font-size: .88rem;
}

#popup-blocked {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.logo-brand { color: var(--gold); }
.logo-domain { color: var(--white); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--grey2);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: var(--white); }

.nav-badge {
  background: rgba(201, 168, 76, .15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.breadcrumb {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
  font-size: .82rem;
  color: var(--grey3);
}

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

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { color: var(--grey2); }

.platform-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0a2a4a 60%, #0d1b2a 100%);
  padding: 2.5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.platform-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 0%, rgba(26, 111, 255, .18) 0%, transparent 70%);
  pointer-events: none;
}

.platform-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
}

.platform-hero-logo {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.platform-hero-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.platform-hero-info h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .4rem;
  letter-spacing: -.02em;
}

.platform-hero-type {
  color: var(--grey2);
  font-size: 1rem;
  margin-bottom: .6rem;
}

.platform-hero-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.platform-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.hero-tag {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--grey2);
  font-size: .75rem;
  padding: .25rem .7rem;
  border-radius: 20px;
}

.hero-tag.gold {
  background: rgba(201, 168, 76, .15);
  border-color: rgba(201, 168, 76, .4);
  color: var(--gold);
}

.platform-hero-cta {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: stretch;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  text-decoration: none;
  padding: .85rem 1.75rem;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 111, 255, .4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: var(--white);
  text-decoration: none;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  text-align: center;
  transition: border-color .2s, background .2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.score-bar {
  background: #fff;
  border-bottom: 1px solid var(--grey1);
  padding: 1.25rem 1.5rem;
}

.score-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.score-item {
  text-align: center;
  padding: .75rem;
  border-radius: 10px;
  background: var(--grey1);
}

.score-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.score-num span {
  font-size: .9rem;
  color: var(--grey3);
  font-weight: 600;
}

.score-lbl {
  font-size: .75rem;
  color: var(--grey3);
  margin-top: .3rem;
  font-weight: 500;
}

.detail-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.detail-content section {
  margin-bottom: 2.75rem;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}

.detail-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.detail-content p {
  color: var(--grey3);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.feature-card {
  background: #fff;
  border: 1.5px solid var(--grey1);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color .2s, box-shadow .2s;
}

.feature-card:hover {
  border-color: rgba(26, 111, 255, .3);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: .65rem;
}

.feature-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.feature-card p {
  font-size: .84rem;
  line-height: 1.6;
  margin: 0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.pros-box,
.cons-box {
  border-radius: var(--radius);
  padding: 1.5rem;
}

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

.cons-box {
  background: rgba(231, 76, 60, .06);
  border: 1.5px solid rgba(231, 76, 60, .2);
}

.pros-box h3,
.cons-box h3 {
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .85rem;
}

.pros-box h3 { color: #15803d; }
.cons-box h3 { color: #b91c1c; }

.pros-box ul,
.cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.pros-box li,
.cons-box li {
  font-size: .87rem;
  color: var(--grey3);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.55;
}

.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: #e74c3c;
  font-weight: 700;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: .9rem;
}

.info-table tr {
  border-bottom: 1px solid var(--grey1);
}

.info-table td {
  padding: .85rem .5rem;
  vertical-align: top;
}

.info-table td:first-child {
  color: var(--grey3);
  font-weight: 500;
  width: 40%;
}

.info-table td:last-child {
  color: var(--navy);
  font-weight: 600;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--grey1);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}

.step-item p {
  font-size: .87rem;
  margin: 0;
}

.detail-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.sidebar-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.sidebar-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--grey1);
}

.sidebar-score-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.sidebar-score-text strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
}

.sidebar-score-text span {
  font-size: .82rem;
  color: var(--grey3);
}

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

.sidebar-list li {
  font-size: .85rem;
  color: var(--grey3);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sidebar-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-cta {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  text-align: center;
}

.rg-box {
  background: rgba(231, 76, 60, .06);
  border: 1.5px solid rgba(231, 76, 60, .2);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.rg-box h3 {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: .6rem;
}

.rg-box p {
  font-size: .82rem;
  color: var(--grey3);
  line-height: 1.65;
  margin: 0;
}

.rg-box a {
  color: var(--blue);
}

.related-section {
  background: #f0f4fa;
  padding: 3rem 1.5rem;
}

.related-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.related-inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

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

.related-card {
  background: #fff;
  border: 1.5px solid var(--grey1);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .85rem;
  transition: transform .2s, box-shadow .2s;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  border: 1px solid var(--grey1);
}

.related-card span {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}

.msj-reg-strip {
  background: #f0f4fa;
  border-top: 1px solid var(--grey1);
  padding: 2.25rem 1.5rem;
}

.msj-reg-strip__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.msj-reg-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D1B2A;
  border: 1.5px solid var(--grey1);
  border-radius: var(--radius);
  padding: .85rem 1.15rem;
  min-height: 58px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.msj-reg-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 111, 255, .28);
}

.msj-reg-tile img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

footer {
  background: var(--navy);
  color: var(--grey2);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .75rem;
}

.footer-col p {
  font-size: .85rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .9rem;
}

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

.footer-col ul li a {
  color: var(--grey2);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

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

.footer-legal {
  max-width: 1160px;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 2rem;
}

.footer-warning {
  background: rgba(231, 76, 60, .1);
  border: 1px solid rgba(231, 76, 60, .3);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}

.footer-warning p {
  font-size: .84rem;
  line-height: 1.7;
  color: #f4a0a0;
}

.footer-warning strong { color: #f4c4c4; }
.footer-warning a { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}

.age-badge {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .75rem;
  padding: .2rem .55rem;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .platform-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platform-hero-logo {
    margin: 0 auto;
  }

  .platform-hero-tags {
    justify-content: center;
  }

  .platform-hero-cta {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .detail-main {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy2);
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .nav-links.open { display: flex; }
  nav { position: relative; }
  .nav-toggle { display: flex; }
}
