/*
  Creator X Awards static site
  Elegant, edgy display/body fonts load from Google Fonts in index.html, with system fallbacks.
*/
:root {
  --bg: #030006;
  --panel: rgba(10, 5, 22, 0.78);
  --panel-strong: rgba(10, 5, 22, 0.94);
  --white: #fffaf1;
  --muted: #c8bddf;
  --purple: #5416ff;
  --purple-2: #8d00ff;
  --pink: #ff2f88;
  --red: #ff3448;
  --yellow: #ffe94a;
  --blue: #006cff;
  --cyan: #3ff8ff;
  --card-border: rgba(255, 255, 255, 0.16);
  --shadow-purple: 0 0 24px rgba(84, 22, 255, 0.48), 0 0 58px rgba(141, 0, 255, 0.18);
  --shadow-red: 0 0 22px rgba(255, 52, 72, 0.48), 0 0 64px rgba(255, 52, 72, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --font-display: "Bebas Neue", "Arial Narrow Bold", "Arial Black", sans-serif;
  --font-results: "Squartiqa4FInline", "Bebas Neue", "Arial Narrow Bold", "Arial Black", sans-serif;
  --font-body: "Rajdhani", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.45;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}
body::before {
  background:
    radial-gradient(circle at 51% 2%, rgba(116, 25, 255, .55), transparent 34rem),
    radial-gradient(circle at 96% 12%, rgba(255, 52, 72, .28), transparent 20rem),
    radial-gradient(circle at 4% 45%, rgba(0, 88, 255, .22), transparent 25rem),
    linear-gradient(180deg, #010003 0%, #050008 52%, #000 100%);
}
body::after {
  opacity: .35;
  background-image: radial-gradient(circle, rgba(0, 104, 255, .95) 0 1px, transparent 1.8px);
  background-size: 28px 28px;
  transform: perspective(700px) rotateX(62deg) translateY(32vh) scale(1.35);
  animation: starfield 14s linear infinite;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.2) 30%, #000 58%, transparent 100%);
}
@keyframes starfield { to { background-position: 0 280px; } }

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .055;
  background-image: linear-gradient(115deg, rgba(255,255,255,.2), transparent 18%), radial-gradient(circle, #fff 0 1px, transparent 1px);
  background-size: 160px 160px, 11px 11px;
  mix-blend-mode: screen;
}
.cursor-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(84, 22, 255, .27), rgba(255, 52, 72, .12) 42%, transparent 70%);
  filter: blur(16px);
  opacity: .75;
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }
code {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: .08rem .35rem;
  color: var(--yellow);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  background: var(--yellow);
  color: #08000b;
  padding: .7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem clamp(1rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.38));
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  width: min(180px, 34vw);
}
.nav-brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(84,22,255,.7));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.55rem, 1.35vw, 1.45rem);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(.76rem, .92vw, .95rem);
}
.nav-links a {
  text-decoration: none;
  padding: .45rem .2rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: .15rem;
  right: .15rem;
  bottom: .1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 13px;
  background: rgba(255,255,255,.06);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 3px;
  width: 22px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
}

.site-header { position: relative; overflow: hidden; }
 .hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 9rem clamp(1rem, 4vw, 4rem) 4.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7vh;
  height: 54px;
  background:
    linear-gradient(180deg, transparent 0 10%, var(--purple) 10% 34%, var(--yellow) 34% 62%, var(--red) 62% 88%, transparent 88% 100%);
  transform: skewY(-2deg);
  filter: saturate(1.25) drop-shadow(0 0 22px rgba(84, 22, 255, .45));
  z-index: 1;
}
.hero-video {
  position: absolute;
  display: block;
  width: min(100vw, 1120px);
  aspect-ratio: 1;
  left: 50%;
  top: 41%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(1.18) contrast(1.08) drop-shadow(0 0 45px rgba(92,0,255,.58));
  mask-image: radial-gradient(circle, #000 0 67%, transparent 72%);
}
.hero-stars {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(21,70,255,0.4), transparent 45%),
    radial-gradient(circle, rgba(21, 70, 255, 0.95) 0 1px, transparent 2px);
  background-size: auto, 13px 13px;
  opacity: 0.75;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, transparent);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.eyebrow {
  margin: 0 0 .6rem;
  color: var(--yellow);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(.85rem, 1.15vw, 1rem);
  text-shadow: 0 0 14px rgba(255, 233, 74, .55);
}
.eyebrow.red { color: var(--red); text-shadow: 0 0 14px rgba(255, 52, 72, .45); }
.eyebrow.yellow { color: var(--yellow); }
.hero-logo {
  position: relative;
  z-index: 2;
  width: min(720px, 91vw);
  margin: 0 auto .5rem;
  filter: drop-shadow(0 0 30px rgba(84, 22, 255, .72)) drop-shadow(0 0 20px rgba(255,52,72,.52));
}
h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .075em;
  line-height: .92;
}
h1 {
  margin: 0;
  max-width: min(1180px, 96vw);
  font-family: var(--font-results);
  font-size: clamp(3rem, 8vw, 7.8rem);
  color: var(--white);
  text-shadow:
    0 4px 0 var(--purple),
    0 8px 0 #230071,
    0 0 30px rgba(84, 22, 255, .72),
    0 0 70px rgba(255, 52, 72, .28);
}
h1 span { color: var(--red); }
.hero-copy {
  max-width: 760px;
  margin: 1.4rem auto 0;
  color: #fff5d4;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1.6rem;
}
.button,
.small-button,
.filter {
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.button {
  padding: .95rem 1.25rem .85rem;
  border: 2px solid rgba(255,255,255,.18);
}
.button:hover,
.button:focus-visible,
.small-button:hover,
.filter:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--yellow);
  color: #110016;
  box-shadow: 0 0 0 4px rgba(84, 22, 255, .9), 0 0 0 7px rgba(255,255,255,.95), var(--shadow-purple);
}
.button-ghost {
  background: rgba(0,0,0,.55);
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--red), 0 0 18px rgba(255, 52, 72, .3);
}

main {
  width: min(1720px, calc(100% - clamp(1rem, 4vw, 5rem)));
  margin: 0 auto;
}
.ticker {
  margin: 0 calc(50% - 50vw) 3rem;
  border-top: 8px solid var(--purple);
  border-bottom: 8px solid var(--red);
  background: var(--yellow);
  color: #130015;
  overflow: hidden;
  transform: skewY(-1deg);
  box-shadow: var(--shadow-red);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: .35rem 0 .25rem;
  animation: ticker 28s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 3.6rem);
  letter-spacing: .08em;
  white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.intro-panel,
.update-panel,
.controls {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(84,22,255,.2), rgba(255,52,72,.08) 42%, rgba(0,0,0,.72)),
    var(--panel);
  box-shadow: var(--shadow-purple);
}
.intro-panel {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.intro-panel h2,
.update-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  color: var(--white);
  text-shadow: 0 3px 0 var(--purple), 0 0 24px rgba(84,22,255,.55);
}
.intro-panel p,
.update-panel p { color: var(--muted); font-weight: 700; }

.controls {
  position: sticky;
  top: 5.8rem;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.5fr;
  gap: 1rem;
  align-items: end;
  padding: 1rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(18px);
}
.search-wrap label,
.select-wrap {
  display: grid;
  gap: .35rem;
  color: var(--yellow);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}
.search-wrap input,
.select-wrap select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(0,0,0,.68);
  color: var(--white);
  padding: .75rem .95rem;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(84,22,255,.2);
}
.search-wrap input:focus,
.select-wrap select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,233,74,.16), 0 0 24px rgba(84,22,255,.32);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-self: center;
}
.filter {
  padding: .74rem .9rem .65rem;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
}
.filter.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.95), 0 0 0 6px rgba(84,22,255,.75), var(--shadow-red);
}
.control-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(180px, .8fr) auto;
  gap: .8rem;
  align-items: end;
}
.inline-actions { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: flex-end; }
.small-button {
  min-height: 52px;
  padding: .72rem .9rem .65rem;
  color: var(--white);
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.18);
}
.result-count {
  grid-column: 1 / -1;
  margin: -.3rem 0 0;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
}

.category-jump {
  position: sticky;
  top: 16.5rem;
  z-index: 50;
  margin-bottom: 1.2rem;
  padding: .6rem 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 3rem, #000 calc(100% - 3rem), transparent 100%);
}
.category-jump-track {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  padding: .3rem 3rem .6rem;
  scrollbar-width: thin;
}
.category-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .55rem .8rem .45rem;
  color: var(--white);
  background: rgba(0,0,0,.72);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.category-chip:hover,
.category-chip:focus-visible {
  border-color: var(--yellow);
  box-shadow: 0 0 18px rgba(255,233,74,.2);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.4vw, 1.35rem);
  align-items: start;
  padding-bottom: 4rem;
}
.award-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 52, 72, .15), transparent 36%),
    radial-gradient(circle at 88% 8%, rgba(84, 22, 255, .25), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    var(--panel-strong);
  box-shadow: 0 12px 30px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.03);
  overflow: clip;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.award-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.48), rgba(84,22,255,.18), rgba(255,52,72,.35), rgba(255,233,74,.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .65;
}
.award-card:hover,
.award-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(255,233,74,.5);
  box-shadow: 0 18px 44px rgba(0,0,0,.52), var(--shadow-purple);
}
.card-toggle {
  display: block;
  width: 100%;
  text-align: left;
  color: inherit;
  border: 0;
  background: transparent;
  padding: 1rem 1rem .75rem;
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .7rem;
}
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 38px;
  border-radius: 12px;
  font-family: var(--font-display);
  color: #110016;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(84,22,255,.85), 0 0 20px rgba(255,233,74,.28);
}
.card-group {
  flex: 1;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
}
.card-expand {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--yellow);
  background: rgba(0,0,0,.48);
  font-size: 1.35rem;
  line-height: 1;
}
.award-card.is-open .card-expand { transform: rotate(45deg); }

.card-visual {
  width: min(72%, 210px);
  margin: .5rem auto .85rem;
  overflow: hidden;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.16);
  background: #000;
  aspect-ratio: 1;
  box-shadow: 0 0 0 4px rgba(84,22,255,.28), 0 14px 32px rgba(0,0,0,.3);
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.award-card h3 {
  margin: 0;
  min-height: 3.6em;
  font-size: clamp(1.5rem, 2.1vw, 2.05rem);
  color: #fff;
  text-shadow: 0 2px 0 var(--purple), 0 0 18px rgba(84,22,255,.56);
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .75rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .32rem .55rem .25rem;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pill.winner { color: #110016; background: var(--yellow); border-color: var(--yellow); }
.pill.nominee { color: #fff; border-color: rgba(84,22,255,.55); }
.pill.semi { color: #fff; border-color: rgba(255,52,72,.55); }
.winner-strip {
  padding: .8rem 1rem 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.winner-label {
  margin: 0 0 .55rem;
  color: var(--yellow);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}
.winner-list,
.entry-list {
  display: grid;
  gap: .55rem;
}
.entry-button {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .66rem .7rem .58rem;
  text-align: left;
  color: var(--white);
  background: rgba(255,255,255,.045);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.entry-button:hover,
.entry-button:focus-visible {
  transform: translateX(3px);
  border-color: var(--yellow);
  background: rgba(255,255,255,.075);
  outline: none;
}
.entry-button.status-winner {
  background: linear-gradient(135deg, rgba(255,233,74,.2), rgba(84,22,255,.12));
  border-color: rgba(255,233,74,.56);
  box-shadow: 0 0 18px rgba(255,233,74,.12);
}
.entry-title {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.05;
  color: var(--white);
  font-size: 1.02rem;
}
.entry-detail {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}
.entry-status {
  display: inline-flex;
  margin-bottom: .32rem;
  border-radius: 999px;
  padding: .12rem .42rem .07rem;
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.entry-status.status-winner { color: #120013; background: var(--yellow); }
.entry-status.status-nominee { color: #fff; background: rgba(84,22,255,.7); }
.entry-status.status-semi-finalist { color: #fff; background: rgba(255,52,72,.75); }
.entry-panel {
  display: none;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
}
.award-card.is-open .entry-panel { display: block; }
.entry-list { padding: .85rem 1rem 1rem; }
.no-results {
  margin: 2rem auto 5rem;
  padding: 2rem;
  max-width: 820px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 800;
}

.update-panel {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.4rem;
  align-items: center;
  margin: 1rem 0 5rem;
  padding: clamp(1.2rem, 4vw, 2.2rem);
}
.update-panel img {
  width: 170px;
  filter: drop-shadow(0 0 22px rgba(255,233,74,.45));
}
.update-panel h2 { font-size: clamp(2rem, 4vw, 4.4rem); }


.season-ribbon {
  margin: 0 calc(50% - 50vw) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}
.season-ribbon .ticker {
  margin: 0;
}
.season-ribbon .ticker-bottom {
  margin-top: clamp(.9rem, 2vw, 1.7rem);
}
.ticker-track.reverse { animation-direction: reverse; }
.pinocchio-feature {
  width: min(1640px, calc(100% - clamp(.75rem, 2.5vw, 2.5rem)));
  margin: clamp(1.25rem, 3vw, 2.5rem) auto clamp(.6rem, 2vw, 1.2rem);
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, .95fr);
  gap: clamp(1.5rem, 3.2vw, 3.4rem);
  align-items: center;
  padding: clamp(1.1rem, 3vw, 2.2rem);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(255,52,72,.22), transparent 38%),
    radial-gradient(circle at 100% 10%, rgba(84,22,255,.35), transparent 45%),
    rgba(5,0,9,.84);
  box-shadow: var(--shadow-purple), inset 0 0 0 1px rgba(255,255,255,.04);
}
.pinocchio-copy h2 {
  margin: 0 0 1rem;
  max-width: 12.5ch;
  font-size: clamp(3rem, 5.2vw, 6.6rem);
  line-height: .92;
  color: var(--white);
  text-shadow: 0 3px 0 var(--purple), 0 0 28px rgba(84,22,255,.55);
}
.keep-together {
  white-space: nowrap;
}
.pinocchio-copy p {
  color: #fff6db;
  font-weight: 700;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}
.placement-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.3rem;
}
.placement-pills span {
  border-radius: 999px;
  padding: .48rem .7rem .38rem;
  background: rgba(255,233,74,.12);
  border: 1px solid rgba(255,233,74,.35);
  color: var(--yellow);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .075em;
}
.pinocchio-video-card {
  position: relative;
  border-radius: 26px;
  padding: .55rem;
  background: linear-gradient(135deg, var(--yellow), var(--red), var(--purple));
  box-shadow: 0 20px 70px rgba(0,0,0,.55), 0 0 36px rgba(255,52,72,.28);
}
.pinocchio-video-card::after {
  content: "";
  position: absolute;
  inset: -1rem;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(84,22,255,.22), transparent 64%);
  filter: blur(12px);
  z-index: -1;
}
.pinocchio-video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 20px;
  background: #000;
  object-fit: cover;
}
.frame-rail {
  width: min(1640px, calc(100% - clamp(.75rem, 2.5vw, 2.5rem)));
  margin: 0 auto;
  display: flex;
  gap: clamp(.8rem, 1.5vw, 1.2rem);
  overflow-x: auto;
  padding: .5rem .2rem 1rem;
  scrollbar-width: thin;
  mask-image: linear-gradient(90deg, transparent 0, #000 2rem, #000 calc(100% - 2rem), transparent 100%);
}
.frame-rail img {
  flex: 0 0 clamp(110px, 13vw, 190px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.16);
  box-shadow: 0 0 0 4px rgba(84,22,255,.36), 0 12px 32px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.frame-rail img:hover {
  transform: translateY(-6px) rotate(-2deg);
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,52,72,.45), 0 0 28px rgba(255,233,74,.22), 0 14px 36px rgba(0,0,0,.58);
}
.entry-button.has-thumb {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: .72rem;
}
.entry-thumb {
  grid-row: 1 / span 3;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 3px rgba(84,22,255,.32), 0 0 18px rgba(84,22,255,.28);
}
.entry-copy { min-width: 0; }
.entry-title { overflow-wrap: anywhere; }
.modal-actions {
  display: grid;
  gap: .8rem;
  margin-top: 1.3rem;
}
.modal-actions .button {
  width: fit-content;
}
.modal-note {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.laurel-prompt {
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1rem;
}
.laurel-prompt img {
  width: min(230px, 78%);
  filter: drop-shadow(0 0 20px rgba(255,233,74,.45));
}
.laurel-prompt a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .85rem 1rem .72rem;
  background: var(--yellow);
  color: #110016;
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 0 0 4px rgba(84, 22, 255, .9), 0 0 0 7px rgba(255,255,255,.95), var(--shadow-purple);
}
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(12px);
}
.modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(84,22,255,.35), transparent 40%),
    radial-gradient(circle at 100% 0, rgba(255,52,72,.25), transparent 34%),
    #07000c;
  box-shadow: 0 24px 80px rgba(0,0,0,.78), var(--shadow-purple);
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
}
.modal-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}
.modal-media {
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0,0,0,.38);
  border-right: 1px solid rgba(255,255,255,.1);
}
.modal-media img,
.modal-media video,
.modal-media iframe {
  width: 100%;
  max-height: 560px;
  border: 0;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 16px 50px rgba(0,0,0,.55);
}
.modal-content { padding: clamp(1.4rem, 4vw, 3rem); }
.modal-kicker {
  color: var(--yellow);
  margin: 0 0 1rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.modal-content h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.4rem, 5vw, 5rem);
  text-shadow: 0 3px 0 var(--purple), 0 0 22px rgba(84,22,255,.55);
}
.modal-content dl {
  display: grid;
  gap: .8rem;
  margin: 0;
}
.modal-content dl div {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: .85rem;
  background: rgba(255,255,255,.05);
}
.modal-content dt {
  color: var(--red);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.modal-content dd {
  margin: .2rem 0 0;
  color: var(--white);
  font-weight: 850;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem) 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #000;
  color: var(--muted);
  text-align: center;
}
.footer img { width: 160px; filter: drop-shadow(0 0 14px rgba(84,22,255,.5)); }
.footer a { color: var(--yellow); font-weight: 900; text-transform: uppercase; }

@media (max-width: 1380px) {
  .results-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1040px) {
  .controls { position: relative; top: auto; grid-template-columns: 1fr; }
  .category-jump { position: relative; top: auto; }
  .results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-panel { grid-template-columns: 1fr; }
}
@media (max-width: 740px) {
  body { font-size: 16px; }
  .nav { padding: .5rem 1rem; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: calc(100% + .5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(0,0,0,.92);
    box-shadow: var(--shadow-purple);
  }
  .nav-links.is-open { display: flex; }
  .hero { padding-top: 7rem; }
  h1 { font-size: clamp(3.4rem, 18vw, 6rem); }
  .hero-copy { font-size: .9rem; }
  .control-row { grid-template-columns: 1fr; }
  .inline-actions { justify-content: stretch; }
  .small-button { flex: 1; }
  .results-grid { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-media { min-height: 260px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .update-panel { grid-template-columns: 1fr; text-align: center; }
  .update-panel img { margin: 0 auto; }
}

@media (max-width: 1040px) {
  .pinocchio-feature { grid-template-columns: 1fr; }
  .pinocchio-video-card { order: -1; }
}
@media (max-width: 740px) {
  .hero-video { width: min(132vw, 800px); top: 38%; }
  .hero::before { bottom: 4vh; height: 42px; }
  .pinocchio-feature { width: min(100% - .8rem, 1640px); padding: 1rem; }
  .pinocchio-copy h2 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .entry-button.has-thumb { grid-template-columns: 50px minmax(0, 1fr); }
  .entry-thumb { width: 50px; height: 50px; }
  .modal-actions .button { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .cursor-glow { display: none; }
}

.nav-submit {
  color: var(--yellow);
  text-shadow: 0 0 14px rgba(255, 233, 74, .36);
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem;
}
.footer .social-link {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 0 0 2px rgba(84,22,255,.3), 0 0 18px rgba(84,22,255,.18);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.footer .social-link-wide {
  width: auto;
  min-width: 72px;
  padding: 0 .75rem;
  font-size: 1.05rem;
}
.footer .social-link:hover,
.footer .social-link:focus-visible {
  transform: translateY(-3px) rotate(-2deg);
  border-color: var(--yellow);
  background: rgba(255,233,74,.11);
  box-shadow: 0 0 0 3px rgba(255,52,72,.35), 0 0 26px rgba(255,233,74,.26);
  outline: none;
}
.footer .footer-top {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

#season-spotlight,
#results,
.award-card {
  scroll-margin-top: 88px;
}
