.seo-landing-page {
  --seo-card: rgba(255, 255, 255, 0.92);
  --seo-copy: rgba(7, 19, 63, 0.78);
  --seo-muted: rgba(73, 101, 168, 0.92);
  --seo-accent: #f05c9d;
  --seo-accent-dark: #b83272;
}

.seo-landing-page *,
.seo-landing-page *::before,
.seo-landing-page *::after {
  box-sizing: border-box;
}

.seo-landing-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 18px auto 46px;
  color: var(--ink);
  font-family: "Barlow Semi Condensed", Arial, Helvetica, sans-serif;
}

.seo-landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  min-height: 480px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 16%, rgba(99, 217, 202, 0.26), transparent 24rem),
    linear-gradient(135deg, rgba(255, 248, 253, 0.98), rgba(238, 244, 255, 0.94));
  box-shadow: 0 24px 54px rgba(7, 19, 63, 0.16);
  padding: clamp(28px, 5vw, 62px);
}

.seo-landing-hero > * {
  min-width: 0;
}

.seo-landing-page.is-survivor .seo-landing-hero {
  --seo-accent: #287f64;
  --seo-accent-dark: #124d3b;
  background:
    linear-gradient(90deg, rgba(7, 25, 19, 0.93), rgba(12, 49, 36, 0.86)),
    url("/assets/carryover/game-assets/jungle%20hustle/background.png") center / cover;
  color: #fff8db;
}

.seo-landing-page.is-big-brother .seo-landing-hero {
  --seo-accent: #f05c9d;
  --seo-accent-dark: #b83272;
  background:
    radial-gradient(circle at 92% 14%, rgba(99, 217, 202, 0.34), transparent 22rem),
    linear-gradient(135deg, rgba(255, 248, 253, 0.98), rgba(238, 244, 255, 0.96));
}

.seo-landing-eyebrow {
  margin: 0 0 12px;
  color: var(--seo-accent);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.is-survivor .seo-landing-eyebrow {
  color: #f6d678;
}

.seo-landing-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.is-survivor .seo-landing-hero h1 {
  color: #fff4cb;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.48);
}

.seo-landing-hero-copy > p:not(.seo-landing-eyebrow) {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--seo-copy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 700;
  line-height: 1.58;
}

.is-survivor .seo-landing-hero-copy > p:not(.seo-landing-eyebrow) {
  color: rgba(255, 248, 219, 0.9);
}

.seo-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.seo-landing-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--seo-accent);
  box-shadow: 0 4px 0 rgba(7, 19, 63, 0.18);
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  padding: 12px 18px;
  text-decoration: none;
}

.seo-landing-action.is-secondary {
  border-color: rgba(7, 19, 63, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.is-survivor .seo-landing-action.is-secondary {
  border-color: rgba(255, 244, 203, 0.3);
  background: rgba(5, 18, 13, 0.54);
  color: #fff4cb;
}

.seo-landing-action:hover,
.seo-landing-action:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.seo-landing-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
}

.seo-landing-hero-art::before,
.seo-landing-hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.seo-landing-hero-art::before {
  width: 280px;
  height: 280px;
}

.seo-landing-hero-art::after {
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(255, 255, 255, 0.42);
  background: transparent;
}

.seo-landing-hero-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 330px);
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(7, 19, 63, 0.26));
}

.seo-landing-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.seo-landing-proof article {
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  background: var(--seo-card);
  box-shadow: 0 10px 24px rgba(7, 19, 63, 0.1);
  padding: 20px;
}

.seo-landing-proof strong {
  display: block;
  color: var(--seo-accent-dark);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 950;
  line-height: 1;
}

.seo-landing-proof span {
  display: block;
  margin-top: 5px;
  color: var(--seo-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.seo-landing-section {
  margin-top: 18px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  background: var(--seo-card);
  box-shadow: 0 12px 28px rgba(7, 19, 63, 0.11);
  padding: clamp(24px, 4vw, 42px);
}

.seo-landing-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.seo-landing-section > p,
.seo-landing-section li,
.seo-landing-card p,
.seo-landing-faq p,
.seo-landing-game p,
.seo-landing-figure figcaption {
  color: var(--seo-copy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
}

.seo-landing-section > p {
  max-width: 850px;
  margin: 14px 0 0;
}

.seo-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.seo-landing-card {
  border: 2px solid rgba(7, 19, 63, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  padding: 20px;
}

.seo-landing-card b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--seo-accent);
  color: #fff;
  font-size: 1rem;
}

.seo-landing-card h3,
.seo-landing-game h3,
.seo-landing-faq h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.05;
}

.seo-landing-card p,
.seo-landing-game p,
.seo-landing-faq p {
  margin: 9px 0 0;
}

.seo-landing-figure {
  margin: 22px 0 0;
  overflow: hidden;
  border: 3px solid rgba(7, 19, 63, 0.1);
  border-radius: 12px;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(7, 19, 63, 0.16);
}

.seo-landing-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.seo-landing-figure figcaption {
  margin: 0;
  background: #fff;
  padding: 12px 15px;
}

.seo-landing-games,
.seo-landing-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.seo-landing-game,
.seo-landing-faq {
  border: 2px solid rgba(7, 19, 63, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  padding: 20px;
}

.seo-landing-game-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.seo-landing-game-header img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.seo-landing-game a,
.seo-landing-section > p a {
  color: var(--seo-accent-dark);
  font-weight: 900;
  text-underline-offset: 3px;
}

.seo-landing-game-meta {
  display: block;
  margin-top: 5px;
  color: var(--seo-muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.seo-landing-disclaimer {
  margin: 18px 0 0;
  border-left: 5px solid var(--seo-accent);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--seo-copy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
  padding: 16px 18px;
}

@media (max-width: 820px) {
  .seo-landing-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .seo-landing-hero-art {
    min-height: 220px;
  }

  .seo-landing-proof,
  .seo-landing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .seo-landing-shell {
    width: min(100% - 18px, 1180px);
  }

  .seo-landing-hero {
    border-radius: 12px;
    padding: 26px 20px;
  }

  .seo-landing-hero h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.4rem);
  }

  .seo-landing-games,
  .seo-landing-faq-list {
    grid-template-columns: 1fr;
  }

  .seo-landing-section {
    padding: 24px 18px;
  }
}
