:root {
  --bg: #050712;
  --bg-2: #0d1230;
  --card: rgba(18, 23, 53, 0.86);
  --ink: #fff8ff;
  --muted: #b9c1f1;
  --pink: #ff2fa5;
  --purple: #8b5cff;
  --yellow: #f7b90f;
  --gold: #f7b90f;
  --gold-bright: #ffd84a;
  --gold-dark: #b47700;
  --blue: #24d8ff;
  --green: #49f59d;
  --line: rgba(255, 255, 255, 0.16);
  --shadow-pink: 0 0 24px rgba(255, 47, 165, 0.48);
  --shadow-blue: 0 0 26px rgba(36, 216, 255, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 47, 165, 0.3), transparent 22rem),
    radial-gradient(circle at 86% 14%, rgba(36, 216, 255, 0.2), transparent 24rem),
    linear-gradient(180deg, #050712 0%, #0a0f28 46%, #050712 100%);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  background: rgba(3, 4, 13, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.logo {
  position: relative;
  z-index: 3;
  display: block;
  width: 11.2rem;
  line-height: 0;
  transform: translateY(0.62rem);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 14px var(--pink), 0 5px 0 #000;
}

.menu-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.menu-toggle span:not(.sr-only) {
  width: 1.25rem;
  height: 0.16rem;
  background: #fff;
  border-radius: 999px;
}

.site-menu,
.header-actions {
  display: none;
}

.site-header.is-open .site-menu,
.site-header.is-open .header-actions {
  display: flex;
}

.site-menu {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 0.25rem;
}

.site-menu a,
.header-actions a,
.footer-socials a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.site-menu a {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-menu a.active {
  color: #fff;
  background: linear-gradient(135deg, #5d2de1, #8b5cff);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(139, 92, 255, 0.52);
}

.header-actions {
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.55rem;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08), 0 0 16px rgba(255, 47, 165, 0.25);
}

.social-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.social-link img {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

.instagram-link {
  color: #fff;
  background: linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5);
}

.youtube-link {
  color: #fff;
  background: #ff1f1f;
}

.tiktok-link {
  color: #fff;
  background: linear-gradient(135deg, #111, #161b2e);
}

.nav-cta,
.mega-button,
.category-card a {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  color: #120716;
  background: var(--yellow);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(244, 180, 0, 0.55);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.header-actions .nav-cta {
  color: #050507;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 56%, #d99100 100%);
  border-color: #fff2b8;
  box-shadow:
    0 0 18px rgba(247, 185, 15, 0.62),
    inset 0 -0.18rem 0 rgba(80, 45, 0, 0.2);
}

.header-actions .nav-cta:visited,
.header-actions .nav-cta:hover,
.header-actions .nav-cta:focus {
  color: #050507;
}

.hero {
  position: relative;
  min-height: clamp(22rem, 31.25vw, 37.5rem);
  display: grid;
  align-items: center;
  padding: 0.45rem 1rem 0.55rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 26%, rgba(36, 216, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 18% 30%, rgba(255, 47, 165, 0.18), transparent 23rem),
    linear-gradient(180deg, #080916 0%, #081135 54%, #050712 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/1920_600_final_one.png");
  background-position: 50% center;
  background-size: cover;
  filter: none;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-title {
  position: relative;
  z-index: 4;
  width: min(100%, 88rem);
  margin: 0 auto;
  pointer-events: auto;
}

.kicker {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(36, 216, 255, 0.65);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title-text {
  position: relative;
  width: min(100%, 55rem);
  margin: 0 auto;
  padding: 0.15rem 0.35rem 0;
  isolation: isolate;
  transform: translate(-1rem, -0.85rem) rotate(-3deg);
}

.hero-title-text::before,
.hero-title-text::after {
  display: none;
}

.welcome-swipe {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin: 0 0 -0.1rem 1.6rem;
  padding: 0.48rem 1.35rem;
  color: #050507;
  background:
    linear-gradient(135deg, transparent 0 11%, rgba(255, 255, 255, 0.28) 11% 15%, transparent 15% 100%),
    linear-gradient(92deg, var(--gold-bright), var(--gold) 58%, #a56b14);
  border-radius: 0.18rem;
  box-shadow:
    0 0 1rem rgba(215, 168, 47, 0.36),
    0.08rem 0.12rem 0 rgba(5, 5, 7, 0.88);
  clip-path: polygon(0 19%, 7% 8%, 38% 0, 67% 7%, 100% 3%, 96% 78%, 82% 94%, 43% 100%, 7% 87%);
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(1rem, 3.4vw, 1.25rem);
  font-weight: 950;
  isolation: isolate;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.welcome-swipe::before,
.welcome-swipe::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: -1;
}

.welcome-swipe::before {
  inset: -0.34rem -0.58rem;
  background:
    radial-gradient(circle at 8% 68%, var(--gold) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 15% 28%, var(--gold-bright) 0 0.11rem, transparent 0.13rem),
    radial-gradient(circle at 83% 12%, #b87918 0 0.15rem, transparent 0.17rem),
    radial-gradient(circle at 94% 74%, var(--gold-bright) 0 0.2rem, transparent 0.22rem),
    linear-gradient(90deg, transparent 0 7%, rgba(215, 168, 47, 0.9) 7% 15%, transparent 15% 100%);
  opacity: 0.86;
  transform: rotate(1deg);
}

.welcome-swipe::after {
  inset: 0.1rem -0.8rem -0.22rem -0.45rem;
  background:
    radial-gradient(circle at 4% 68%, #fff1a6 0 0.08rem, transparent 0.1rem),
    radial-gradient(circle at 29% 98%, var(--gold) 0 0.14rem, transparent 0.16rem),
    radial-gradient(circle at 74% 3%, var(--gold-bright) 0 0.1rem, transparent 0.12rem),
    radial-gradient(circle at 98% 42%, #a56b14 0 0.16rem, transparent 0.18rem);
  opacity: 0.78;
}

.hero-logo-mark {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 34rem);
  height: auto;
  margin: -0.15rem 0 0;
}

.hero-tagline {
  position: relative;
  z-index: 3;
  display: grid;
  width: fit-content;
  margin: -0.05rem 0 0 2.8rem;
  padding: 0.46rem 1rem 0.56rem;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(1.2rem, 3.7vw, 1.7rem);
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(1deg);
}

.hero-tagline::before {
  display: none;
}

.hero-tagline::after {
  display: none;
}

.hero-tagline span {
  color: #fff;
  -webkit-text-stroke: 0.07rem #050507;
  text-shadow:
    0.12rem 0.12rem 0 #050507,
    -0.06rem 0.06rem 0 #050507,
    0.06rem -0.06rem 0 #050507,
    0 0 0.85rem rgba(255, 216, 74, 0.46);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.1rem, 8vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.hero-toby {
  position: absolute;
  right: 0.15rem;
  top: 0;
  bottom: -1.1rem;
  z-index: 6;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.hero-toby img {
  display: block;
  width: min(112vw, 46rem);
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.64));
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

.hero-stats {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 8;
  width: min(44vw, 21rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  pointer-events: none;
}

.stats-strip div {
  min-height: 5.25rem;
  padding: 0.48rem 0.5rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(5, 7, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.85rem;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(36, 216, 255, 0.14);
}

.stats-strip strong,
.stats-strip span {
  display: block;
  text-transform: uppercase;
}

.stat-icon {
  display: block;
  margin: 0 auto 0.18rem;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: 2.65rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.stats-strip strong {
  color: #fff;
  font-size: 1.16rem;
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
}

.hero-follow-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(5, 7, 18, 0.86);
  border: 2px solid rgba(139, 92, 255, 0.55);
  border-radius: 1.1rem;
  box-shadow: 0 0 28px rgba(255, 47, 165, 0.24);
}

.hero-follow-card h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.9rem, 8vw, 3rem);
}

.hero-follow-card h2 span {
  color: var(--purple);
}

.hero-follow-card p {
  color: var(--muted);
}

.hero-follow-card figure {
  margin: 0;
  justify-self: center;
}

.hero-follow-card img {
  width: min(48vw, 9.5rem);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.65rem;
  background: #fff;
  border-radius: 0.65rem;
  box-shadow: 0 0 24px rgba(139, 92, 255, 0.7);
}

.hero-follow-card figcaption {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.hero-follow-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 900;
  list-style: none;
}

.section {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: 4rem 1rem;
}

.category-section {
  position: relative;
  z-index: 12;
  padding-top: 0.85rem;
}

.category-section .section-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1rem;
}

.category-grid,
.video-grid {
  display: grid;
  gap: 0.75rem;
}

.category-card,
.video-card,
.embed-panel,
.qr-shell,
.about-section,
.shop-section {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.category-card {
  position: relative;
  min-height: 10.65rem;
  padding: 4.2rem 0.8rem 0.8rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  border-width: 2px;
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.1),
    0 16px 30px rgba(0, 0, 0, 0.3);
}

.category-card::before {
  position: absolute;
  inset: -5rem -5rem auto auto;
  width: 10rem;
  height: 10rem;
  content: "";
  background: currentColor;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.25;
}

.category-card.pink {
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 216, 74, 0.28), transparent 4rem),
    radial-gradient(circle at 15% 82%, rgba(255, 47, 165, 0.32), transparent 5rem),
    linear-gradient(145deg, #1b0827 0%, #4d0fa7 52%, #12071d 100%);
  border-color: rgba(255, 47, 165, 0.72);
}

.category-card.blue {
  background:
    radial-gradient(circle at 65% 16%, rgba(255, 47, 165, 0.24), transparent 4rem),
    radial-gradient(circle at 18% 85%, rgba(36, 216, 255, 0.34), transparent 5rem),
    linear-gradient(145deg, #07142b 0%, #073f9d 55%, #07091b 100%);
  border-color: rgba(36, 216, 255, 0.72);
}

.category-card.yellow {
  color: var(--gold-bright);
  background:
    radial-gradient(circle at 70% 15%, rgba(255, 216, 74, 0.4), transparent 4rem),
    radial-gradient(circle at 18% 84%, rgba(255, 47, 165, 0.2), transparent 5rem),
    linear-gradient(145deg, #261704 0%, #9b6507 55%, #09070b 100%);
  border-color: rgba(255, 216, 74, 0.8);
}

.category-card.purple {
  background:
    radial-gradient(circle at 70% 16%, rgba(36, 216, 255, 0.22), transparent 4rem),
    radial-gradient(circle at 18% 84%, rgba(139, 92, 255, 0.36), transparent 5rem),
    linear-gradient(145deg, #120721 0%, #5b28c8 55%, #07091b 100%);
  border-color: rgba(139, 92, 255, 0.78);
}

.category-card.green {
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 216, 74, 0.3), transparent 4rem),
    radial-gradient(circle at 17% 84%, rgba(255, 47, 165, 0.28), transparent 5rem),
    linear-gradient(145deg, #230711 0%, #a5164e 54%, #09070b 100%);
  border-color: rgba(255, 47, 165, 0.72);
}

.category-card p,
.video-card p,
.card-section p,
.about-section p,
.shop-section p,
.site-footer p {
  color: var(--muted);
}

.category-card p {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.25;
}

.category-card.yellow p {
  color: rgba(255, 255, 255, 0.9);
}

.category-card h3 {
  margin-bottom: 0.25rem;
  color: inherit;
  font-size: 1.12rem;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
}

.category-icon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  margin-bottom: 0;
  color: #fff;
  background: rgba(5, 7, 18, 0.28);
  border: 1px solid var(--line);
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: 950;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08);
}

.category-card a {
  min-height: 2.45rem;
  margin-top: 0.35rem;
  padding: 0.62rem 0.8rem;
  font-size: 0.8rem;
  color: #160b05;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.28rem 0 rgba(0, 0, 0, 0.15);
}

.pink {
  color: var(--pink);
  border-color: rgba(255, 47, 165, 0.5);
  box-shadow: var(--shadow-pink);
}

.blue {
  color: var(--blue);
  border-color: rgba(36, 216, 255, 0.5);
  box-shadow: var(--shadow-blue);
}

.yellow {
  color: var(--yellow);
  border-color: rgba(255, 224, 79, 0.55);
}

.purple {
  color: var(--purple);
  border-color: rgba(139, 92, 255, 0.56);
}

.green {
  color: var(--green);
  border-color: rgba(73, 245, 157, 0.55);
}

.category-card.green {
  color: var(--pink);
  border-color: rgba(255, 47, 165, 0.72);
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.1),
    0 16px 30px rgba(0, 0, 0, 0.3),
    var(--shadow-pink);
}

.video-card {
  overflow: hidden;
  border-color: rgba(255, 47, 165, 0.28);
}

.video-card h3,
.video-card p {
  padding-inline: 1rem;
}

.video-card p {
  padding-bottom: 1rem;
}

.thumb {
  position: relative;
  min-height: 13.5rem;
  display: grid;
  place-items: end start;
  padding: 1rem;
  overflow: hidden;
  background: #111733;
}

.thumb::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 0.5rem, transparent 0.5rem 1rem);
}

.thumb span {
  position: relative;
  padding: 0.45rem 0.7rem;
  color: #fff;
  background: rgba(5, 7, 18, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 950;
}

.roller-thumb {
  background: linear-gradient(135deg, #ff2fa5, #6f4dff);
}

.game-thumb {
  background: linear-gradient(135deg, #24d8ff, #8b5cff);
}

.football-thumb {
  background: linear-gradient(135deg, #49f59d, #ffe04f);
}

.embed-panel {
  display: grid;
  min-height: 36rem;
  place-items: center;
  padding: 1.25rem;
  border-color: rgba(36, 216, 255, 0.35);
}

.tiktok-embed {
  width: min(100%, 45rem);
  min-width: 18rem;
  margin: 0;
  padding: 1rem;
  overflow: hidden;
  background: #080915;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-blue);
}

.tiktok-embed section {
  display: grid;
  min-height: 28rem;
  place-items: center;
}

.tiktok-embed a {
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 950;
  text-decoration: none;
}

.phone-frame {
  display: grid;
  width: min(100%, 21rem);
  min-height: 28rem;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  background: #080915;
  border: 0.7rem solid #161a36;
  border-radius: 2.2rem;
  box-shadow: var(--shadow-blue);
}

.phone-speaker {
  width: 5rem;
  height: 0.4rem;
  align-self: start;
  background: #303859;
  border-radius: 999px;
}

.phone-frame p {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 950;
}

.phone-frame span {
  color: var(--pink);
  font-weight: 950;
}

.card-section {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.qr-shell {
  display: grid;
  min-height: 18rem;
  place-items: center;
  margin: 0;
  padding: 1rem;
  border-color: rgba(255, 224, 79, 0.45);
}

.qr-shell img {
  width: min(72vw, 12rem);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.8rem;
  background: #fff;
  border-radius: 0.6rem;
}

.qr-shell figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-section,
.shop-section {
  padding: 2rem 1rem;
}

.about-copy {
  max-width: 48rem;
}

.parent-note {
  padding: 1rem;
  background: rgba(73, 245, 157, 0.1);
  border: 1px solid rgba(73, 245, 157, 0.38);
  border-radius: 1rem;
}

.site-footer {
  display: grid;
  gap: 1.3rem;
  padding: 2rem 1rem;
  background: #03040d;
  border-top: 1px solid var(--line);
}

.site-footer nav,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer p {
  margin: 0.45rem 0 0;
}

.home-intro {
  position: relative;
  z-index: 12;
  padding-top: 1rem;
  padding-bottom: 0;
}

.home-intro p {
  max-width: 56rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 850;
}

.review-page {
  background:
    radial-gradient(circle at 18% 6%, rgba(139, 92, 255, 0.28), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(255, 47, 165, 0.18), transparent 22rem),
    linear-gradient(180deg, #050712 0%, #0a0a1a 48%, #050712 100%);
}

.breadcrumb {
  width: min(100% - 2rem, 78rem);
  margin: 0 auto;
  padding: 1.6rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

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

.breadcrumb span {
  margin: 0 0.25rem;
}

.review-hero {
  position: relative;
  width: min(100% - 2rem, 78rem);
  min-height: clamp(22rem, 43vw, 34rem);
  margin: 0 auto 1rem;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(1.35rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(13, 18, 48, 0.92), rgba(5, 7, 18, 0.82)),
    radial-gradient(circle at 70% 18%, rgba(255, 47, 165, 0.26), transparent 18rem);
  border: 1px solid rgba(139, 92, 255, 0.42);
  border-radius: 1.1rem;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.review-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(5, 7, 18, 0.9), rgba(5, 7, 18, 0.42)),
    radial-gradient(circle at 74% 38%, rgba(255, 216, 74, 0.24), transparent 12rem),
    radial-gradient(circle at 18% 80%, rgba(36, 216, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, #141044, #0a0a1a 54%, #18071d);
}

.review-hero-bg.hero-bg-legoland {
  background:
    linear-gradient(120deg, rgba(5, 7, 18, 0.88), rgba(5, 7, 18, 0.36)),
    url("assets/theme-parks/card-legoland.jpg") center / cover;
}

.review-hero.disney-photo-hero {
  width: 100%;
  height: clamp(22rem, 31.25vw, 37.5rem);
  min-height: 0;
  margin: 0 auto 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #050712;
}

.disney-photo-hero .review-hero-bg {
  background: url("assets/theme-parks/disney_hero.png") center / cover;
  filter: saturate(1.04) contrast(1.02);
}

.disney-photo-hero .review-hero-bg::after {
  display: none;
}

.disney-photo-hero .rating-burst {
  display: none;
}

.review-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(72deg, transparent 0 28%, rgba(255, 255, 255, 0.07) 28% 29%, transparent 29% 100%),
    linear-gradient(160deg, transparent 0 64%, rgba(255, 47, 165, 0.14) 64% 65%, transparent 65% 100%);
  opacity: 0.8;
}

.review-hero-content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.review-park-logo {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.48rem 0.9rem;
  color: #050507;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(247, 185, 15, 0.42);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow:
    0.13rem 0.13rem 0 #050507,
    0 0 2rem rgba(139, 92, 255, 0.72);
}

.review-verdict {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: var(--gold-bright);
  font-size: clamp(1.05rem, 3.2vw, 1.55rem);
  font-style: italic;
  font-weight: 950;
  text-shadow: 0.08rem 0.08rem 0 #050507;
}

.rating-burst {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  width: 6.5rem;
  height: 6.5rem;
  place-items: center;
  color: #050507;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  clip-path: polygon(50% 0, 60% 24%, 85% 12%, 76% 38%, 100% 50%, 76% 62%, 85% 88%, 60% 76%, 50% 100%, 40% 76%, 15% 88%, 24% 62%, 0 50%, 24% 38%, 15% 12%, 40% 24%);
  filter: drop-shadow(0 0 20px rgba(247, 185, 15, 0.55));
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  line-height: 0.85;
  text-align: center;
  text-transform: uppercase;
}

.rating-burst span {
  font-size: 1.45rem;
}

.rating-burst small {
  font-size: 0.75rem;
  font-weight: 950;
}

.quick-facts,
.review-section,
.review-cta-strip {
  width: min(100% - 2rem, 78rem);
  margin: 0 auto;
}

.quick-facts {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  background: rgba(18, 23, 53, 0.82);
  border: 1px solid var(--line);
  border-left: 0.35rem solid var(--purple);
  border-radius: 1rem;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.3);
}

.fact-pill {
  display: grid;
  grid-template-columns: auto 7rem 1fr;
  gap: 0.55rem;
  align-items: center;
  min-height: 3rem;
  padding: 0.62rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.fact-pill span {
  font-size: 1.25rem;
}

.fact-pill strong {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.fact-pill em,
.fact-pill a {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
}

.review-section {
  padding: 3rem 0 0;
}

.review-section h2,
.review-cta-strip h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(139, 92, 255, 0.52);
}

.review-card,
.ride-card,
.info-card,
.tip-card,
.video-review-card,
.faq-item {
  background: linear-gradient(145deg, rgba(18, 23, 53, 0.94), rgba(5, 7, 18, 0.88));
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
}

.toby-review-card {
  padding: clamp(1.1rem, 4vw, 2rem);
  border-left: 0.4rem solid var(--pink);
}

.review-card p,
.ride-card p,
.info-card li,
.tip-card p,
.video-review-card p,
.faq-item p,
.review-cta-strip p {
  color: var(--muted);
}

.review-callout {
  margin: 1rem 0;
  padding: 1rem;
  color: #fff;
  background: rgba(247, 185, 15, 0.12);
  border: 1px solid rgba(247, 185, 15, 0.42);
  border-radius: 0.85rem;
  font-weight: 900;
}

.prominent-callout,
.review-status-note {
  width: min(100% - 2rem, 78rem);
  margin: 1rem auto;
}

.review-status-note {
  width: auto;
  color: #fff;
  background: rgba(36, 216, 255, 0.12);
  border-color: rgba(36, 216, 255, 0.45);
}

.toby-quote {
  position: relative;
  margin: 1.5rem 0 0;
  padding: 1.2rem 1rem 1rem 1.4rem;
  background: rgba(5, 7, 18, 0.82);
  border-left: 0.35rem solid var(--purple);
  border-radius: 0.9rem;
}

.toby-quote > span {
  position: absolute;
  top: -0.25rem;
  left: 0.55rem;
  color: rgba(139, 92, 255, 0.62);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.toby-quote p {
  position: relative;
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 950;
}

.toby-quote footer {
  color: var(--gold-bright);
  font-weight: 950;
}

.ride-grid,
.tips-grid,
.review-video-grid,
.visit-grid {
  display: grid;
  gap: 1rem;
}

.ride-card,
.info-card,
.tip-card,
.video-review-card {
  padding: 1rem;
}

.ride-card {
  border-top: 0.3rem solid var(--purple);
}

.ride-card h3,
.info-card h3,
.tip-card h3 {
  color: #fff;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
}

.ride-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.height-badge,
.thrill-label {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.height-red {
  color: #fff;
  background: #c91f47;
}

.height-amber {
  color: #160b05;
  background: var(--gold);
}

.height-green {
  color: #03120a;
  background: var(--green);
}

.thrill-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.thrill-label strong {
  margin-left: 0.35rem;
}

.thrill-label span {
  opacity: 0.35;
}

.info-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.info-card li + li {
  margin-top: 0.8rem;
}

.info-card-blue {
  border-left: 0.35rem solid var(--blue);
}

.info-card-gold {
  border-left: 0.35rem solid var(--gold);
}

.gold-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.72rem 1rem;
  color: #050507;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 2px solid #fff2b8;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(247, 185, 15, 0.42);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.tip-card {
  border-top: 0.3rem solid var(--pink);
}

.video-review-card {
  border: 1px solid rgba(139, 92, 255, 0.52);
}

.video-placeholder {
  position: relative;
  display: grid;
  min-height: 11rem;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 255, 0.28), transparent 6rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(139, 92, 255, 0.45);
  border-radius: 0.85rem;
}

.video-placeholder span {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(139, 92, 255, 0.72);
  font-size: 1.6rem;
}

.faq-section {
  padding-bottom: 3rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 0.7rem;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1rem;
  color: #fff;
  border-left: 0.35rem solid var(--purple);
  font-weight: 950;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  content: "+";
  color: var(--gold-bright);
  font-size: 1.6rem;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem 1.35rem;
}

.review-cta-strip {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(139, 92, 255, 0.72), rgba(255, 47, 165, 0.36)),
    #070716;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
}

.review-cta-strip h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
}

.cta-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta-socials a:not(.gold-cta) {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.62rem 0.85rem;
  color: #fff;
  background: rgba(5, 7, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.park-index-hero .review-hero-bg {
  background:
    linear-gradient(120deg, rgba(5, 7, 18, 0.82), rgba(5, 7, 18, 0.38)),
    radial-gradient(circle at 74% 38%, rgba(247, 185, 15, 0.24), transparent 12rem),
    radial-gradient(circle at 18% 80%, rgba(36, 216, 255, 0.2), transparent 18rem),
    linear-gradient(135deg, #141044, #0a0a1a 54%, #240725);
}

.page-intro {
  max-width: 58rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
}

.park-index-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.park-index-card {
  display: grid;
  align-content: start;
  min-height: 13rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(18, 23, 53, 0.94), rgba(5, 7, 18, 0.88));
  border: 1px solid rgba(139, 92, 255, 0.42);
  border-top: 0.35rem solid var(--pink);
  border-radius: 1rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
}

.park-index-card h3 {
  color: #fff;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
}

.park-index-card p {
  color: var(--muted);
  font-weight: 800;
}

.theme-parks-index .breadcrumb {
  position: relative;
  z-index: 3;
}

.tp-photo-hero {
  position: relative;
  display: grid;
  height: clamp(22rem, 31.25vw, 37.5rem);
  min-height: 0;
  align-items: end;
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
  background: #050712;
}

.tp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/theme-parks/theme-park-hero.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.03);
}

.tp-hero-overlay {
  display: none;
}

.tp-shimmer {
  display: none;
}

@keyframes tp-shimmer {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0, 140% 0;
    opacity: 0.55;
  }

  50% {
    background-position: 0 0, 0 0, 0 0, -40% 0;
    opacity: 0.9;
  }
}

.tp-hero-content {
  width: min(100% - 2rem, 78rem);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.tp-guide-badge {
  display: inline-flex;
  margin: 0 0 0.7rem;
  padding: 0.42rem 0.85rem;
  color: #050507;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(247, 185, 15, 0.42);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tp-hero-content h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(3.6rem, 12vw, 8.6rem);
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow:
    0.14rem 0.14rem 0 #050507,
    0 0 2rem rgba(139, 92, 255, 0.8);
}

.tp-hero-content > p:not(.tp-guide-badge) {
  max-width: 36rem;
  margin: 0.8rem 0 0;
  color: var(--gold-bright);
  font-size: clamp(1.08rem, 3vw, 1.55rem);
  font-style: italic;
  font-weight: 950;
  text-shadow: 0.08rem 0.08rem 0 #050507;
}

.tp-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 3;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: #fff;
  background: rgba(5, 7, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
  animation: tp-cue-pulse 1.8s ease-in-out infinite;
}

@keyframes tp-cue-pulse {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, 0.45rem);
    opacity: 1;
  }
}

.tp-park-picker {
  padding-top: 2rem;
  text-align: center;
}

.tp-park-picker .page-intro {
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  font-weight: 500;
}

.tp-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.3rem;
}

.tp-park-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 1rem;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%),
    linear-gradient(135deg, #2a0a4a 0%, #6b0f6b 100%);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  transform: scale(1);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.tp-park-card.placeholder-card {
  background: linear-gradient(135deg, #2a0a4a 0%, #6b0f6b 100%);
}

.tp-park-card[href="disneyland-paris.html"] {
  background-position: center 88%;
}

.tp-park-card[href="drayton-manor.html"] {
  background-position: 100% center;
}

.tp-park-card[href="legoland.html"] {
  background-position: center 88%;
}

.tp-park-card[href="blackgang-chine.html"] {
  background-position: 74% 58%;
  background-size: 138%;
}

.tp-park-card.logo-card {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 216, 74, 0.24), transparent 7rem),
    radial-gradient(circle at 82% 28%, rgba(36, 216, 255, 0.2), transparent 8rem),
    linear-gradient(145deg, #070915 0%, #171b3f 58%, #050712 100%);
}

.tp-park-card.thorpe-logo-card {
  background:
    radial-gradient(circle at 72% 18%, rgba(36, 216, 255, 0.22), transparent 7rem),
    linear-gradient(145deg, #eff4ff 0%, #b7ccff 44%, #061844 100%);
}

.tp-park-card.alton-logo-card {
  background:
    radial-gradient(circle at 68% 18%, rgba(247, 185, 15, 0.22), transparent 7rem),
    linear-gradient(145deg, #100713 0%, #32121e 46%, #050712 100%);
}

.tp-park-card.crealy-logo-card {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 216, 74, 0.26), transparent 7rem),
    radial-gradient(circle at 84% 24%, rgba(255, 47, 165, 0.24), transparent 7rem),
    linear-gradient(145deg, #1b0827 0%, #4f125d 48%, #09070b 100%);
}

.tp-park-card.blackpool-logo-card {
  background:
    radial-gradient(circle at 78% 16%, rgba(36, 216, 255, 0.28), transparent 7rem),
    linear-gradient(145deg, #030a18 0%, #0b245a 52%, #050712 100%);
}

.tp-park-card.flamingo-logo-card {
  background:
    radial-gradient(circle at 30% 18%, rgba(247, 185, 15, 0.24), transparent 7rem),
    radial-gradient(circle at 84% 24%, rgba(73, 245, 157, 0.2), transparent 7rem),
    linear-gradient(145deg, #100713 0%, #5b153f 48%, #06140d 100%);
}

.tp-park-card.not-visited-card {
  border-style: dashed;
  border-color: rgba(255, 216, 74, 0.56);
}

.tp-park-card img,
.tp-card-shade,
.tp-park-card::after {
  position: absolute;
  inset: 0;
}

.tp-card-shade,
.tp-park-card::after {
  content: "";
  z-index: -2;
  pointer-events: none;
}

.tp-card-shade {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.tp-park-card::after {
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 185, 15, 0.18), transparent 5rem),
    linear-gradient(180deg, transparent, rgba(5, 7, 18, 0.18));
  z-index: -1;
}

.tp-park-card:hover,
.tp-park-card:focus-visible {
  border-color: rgba(255, 47, 165, 0.72);
  box-shadow:
    0 0 20px rgba(180, 50, 255, 0.6),
    0 24px 80px rgba(0, 0, 0, 0.44);
  transform: scale(1.04);
}

.tp-park-card:hover .tp-card-shade,
.tp-park-card:focus-visible .tp-card-shade {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.park-logo-mark {
  position: absolute;
  inset: 1rem 1rem 6.6rem;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0.9rem;
}

.park-logo-mark img {
  position: static;
  display: block;
  width: min(100%, 12rem);
  max-height: 7.8rem;
  object-fit: contain;
  filter: drop-shadow(0 0.45rem 0.75rem rgba(0, 0, 0, 0.42));
}

.alton-logo-card .park-logo-mark img {
  width: min(100%, 8.8rem);
  max-height: 8.8rem;
}

.crealy-logo-card .park-logo-mark img {
  width: min(100%, 11rem);
  max-height: 7.5rem;
}

.blackpool-logo-card .park-logo-mark img {
  width: min(100%, 11.5rem);
  max-height: 8rem;
}

.flamingo-logo-card .park-logo-mark img {
  width: min(100%, 9rem);
  max-height: 8.7rem;
}

.not-visited-stamp {
  position: absolute;
  top: 0.9rem;
  right: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.46rem 0.68rem;
  color: #050507;
  background: linear-gradient(180deg, #fff7ad, var(--gold));
  border: 2px solid #fff;
  border-radius: 0.28rem;
  box-shadow:
    0 0 18px rgba(247, 185, 15, 0.42),
    0 0.2rem 0 rgba(5, 7, 18, 0.3);
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.rating-star {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  place-items: center;
  padding: 0.45rem;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 64%, #c98705);
  clip-path: polygon(50% 0, 60% 24%, 85% 12%, 76% 38%, 100% 50%, 76% 62%, 85% 88%, 60% 76%, 50% 100%, 40% 76%, 15% 88%, 24% 62%, 0 50%, 24% 38%, 15% 12%, 40% 24%);
  filter: drop-shadow(0 0 16px rgba(247, 185, 15, 0.52));
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: 0.75rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0.08rem 0 rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

.tp-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  max-width: min(100%, 18.5rem);
  text-align: left;
}

.tp-card-copy strong {
  color: #fff;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow:
    0.08rem 0.08rem 0 #050507,
    0 0 1rem rgba(139, 92, 255, 0.62);
}

.tp-card-copy em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 950;
  max-width: 100%;
  overflow: hidden;
  font-size: 0.81rem;
  line-height: 1.18;
  text-shadow: 0.06rem 0.06rem 0 #050507;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-card-copy span {
  display: inline-flex;
  width: fit-content;
  min-height: 2.28rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.82rem;
  color: #050507;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 2px solid #fff2b8;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(247, 185, 15, 0.42);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tp-park-card[href="chessington.html"] .tp-card-copy strong {
  font-size: clamp(1.05rem, 1.75vw, 1.35rem);
}

.placeholder-icon {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  opacity: 0.42;
}

.placeholder-icon svg {
  width: min(58%, 14rem);
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
  filter:
    drop-shadow(0 0 16px rgba(36, 216, 255, 0.7))
    drop-shadow(0 0 24px rgba(255, 47, 165, 0.42));
}

.tp-follow-strip {
  width: min(100% - 2rem, 78rem);
  margin: 2.6rem auto 3rem;
  padding: 40px 1rem;
  text-align: center;
  background: linear-gradient(135deg, #4a0080 0%, #8b2fc9 50%, #c0186a 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.tp-follow-strip p {
  max-width: 52rem;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 950;
}

.tp-follow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
}

.tp-follow-actions a:not(.gold-cta) {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.86rem;
  color: #fff;
  background: rgba(5, 7, 18, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.tp-follow-actions img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

@media (min-width: 46rem) {
  .section {
    padding-inline: 1.5rem;
  }

  .hero-logo-mark {
    width: min(100%, 43rem);
  }

  .hero-tagline {
    margin-left: 3.4rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-section {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .stats-strip {
    width: min(100%, 34rem);
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stats {
    width: min(44vw, 22rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-follow-card {
    grid-template-columns: 1fr auto 1fr;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .ride-grid,
  .visit-grid,
  .review-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .park-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 66rem) {
  html {
    scroll-padding-top: 7rem;
  }

  [id] {
    scroll-margin-top: 7rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 1.5rem;
    min-height: 5.6rem;
  }

  .logo {
    width: 12.4rem;
    transform: translateY(0.86rem);
  }

  .menu-toggle {
    display: none;
  }

  .site-menu,
  .header-actions {
    display: flex;
    grid-column: auto;
    align-items: center;
  }

  .site-menu {
    flex-direction: row;
    justify-content: center;
    gap: 0.6rem;
  }

  .site-menu a {
    padding: 0.58rem 0.95rem;
    border-bottom: 0;
  }

  .hero {
    min-height: clamp(26rem, 31.25vw, 37.5rem);
    padding: 0.1rem 1.2rem 0.45rem;
  }

  .tp-photo-hero {
    height: clamp(26rem, 31.25vw, 37.5rem);
  }

  .disney-photo-hero {
    height: clamp(26rem, 31.25vw, 37.5rem);
  }

  .hero-title {
    padding-right: 46vw;
    transform: translateY(-1rem);
  }

  .hero-title-text {
    width: min(45vw, 43rem);
    margin-left: 0;
    transform: translate(-0.6rem, 0) rotate(-3deg);
  }

  .hero-logo-mark {
    width: min(100%, 38rem);
  }

  .hero-tagline {
    margin: -0.05rem 0 0 4rem;
  }

  .hero-tagline {
    font-size: 1.46rem;
  }

  .hero-toby {
    right: 8.5vw;
    bottom: -1.45rem;
  }

  .hero-toby img {
    width: min(51vw, 45rem);
    max-height: 100%;
  }

  .stats-strip {
    margin: 0 auto;
  }

  .category-section {
    width: min(100% - 2rem, 78rem);
    margin-top: 0.55rem;
    padding-top: 0.35rem;
  }

  .category-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.45rem;
  }

  .category-card {
    min-height: 9.35rem;
    padding: 4rem 0.75rem 0.75rem;
    border-radius: 0.72rem;
  }

  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .park-index-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tp-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (min-width: 86rem) {
  .site-menu {
    gap: 1.05rem;
  }

  .site-menu a {
    padding-inline: 1.12rem;
  }
}
