:root {
  --bg: #050505;
  --panel: #111;
  --panel-line: rgba(255, 255, 255, 0.14);
  --red: #e00000;
  --gold: #f4c84b;
  --gold-bright: #ffe994;
  --text: #f8f8f8;
  --muted: #cfcfcf;
  --shadow: 0 26px 76px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#winners,
#judges {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.92), #050505 62%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 28px),
    var(--bg);
  color: var(--text);
  font-family: Arial, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Nirmala UI", Mangal, "Noto Sans Devanagari", Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 30;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

.event-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--panel-line);
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-wrap {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 126px;
  height: auto;
}

.brand span {
  border-left: 2px solid var(--red);
  padding-left: 10px;
}

.event-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #f4f4f4;
  font-weight: 900;
  padding: 0 12px;
}

.event-nav a:hover,
.event-nav a:focus-visible {
  outline: none;
  background: rgba(224, 0, 0, 0.22);
}

.event-nav .soulcity-tab {
  border: 1px solid rgba(255, 233, 148, 0.9);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #140d00;
  box-shadow:
    0 0 18px rgba(244, 200, 75, 0.58),
    0 12px 36px rgba(244, 200, 75, 0.3);
}

.event-nav .ems-tab {
  border: 1px solid rgba(255, 219, 219, 0.82);
  background: linear-gradient(180deg, #ff5454, #d60000 48%, #980000);
  color: #fff;
  box-shadow: 0 12px 32px rgba(224, 0, 0, 0.24);
  text-shadow: 0 1px 4px rgba(58, 0, 0, 0.68);
}

.event-hero {
  min-height: clamp(500px, 66vh, 680px);
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(244, 200, 75, 0.25);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 43%, rgba(0, 0, 0, 0.32) 72%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 100%),
    url("../assets/events/ChatGPT_Image_Apr_28_2026_06_33_59_PM.png") center 18% / cover no-repeat;
}

.hero-content {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 62px 0 46px;
}

.eyebrow,
.section-heading span {
  margin: 0;
  color: #ff3d3d;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gold-eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 12px 0 16px;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.72);
}

.hero-lede {
  max-width: 770px;
  margin: 0;
  color: #f1f1f1;
  font-size: clamp(1.05rem, 1.65vw, 1.34rem);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.event-meta span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 200, 75, 0.58);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.64);
  color: var(--gold-bright);
  font-weight: 900;
  padding: 0 14px;
}

.section-wrap {
  padding: 54px 0 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--panel-line);
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.section-heading h2,
.contestant-alert h2,
.broadcast-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.96;
}

.powercouple-section {
  padding-top: clamp(34px, 4vw, 58px);
}

.powercouple-heading h2 {
  text-transform: none;
}

.powercouple-card {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(244, 200, 75, 0.62);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
}

.powercouple-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: #050505;
}

.powercouple-copy {
  min-width: 0;
  padding: 22px 26px 28px;
}

.powercouple-copy h3 {
  max-width: 720px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 3.8rem;
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.powercouple-copy p:last-child {
  max-width: 640px;
  margin: 0;
  color: #ececec;
  font-size: 1.12rem;
}

.judges-heading h2 {
  color: #fff;
  text-shadow: 0 0 26px rgba(244, 200, 75, 0.18);
}

.judges-section {
  position: relative;
}

.hype-intro,
.contestant-alert,
.broadcast-strip,
.judge-popup {
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(62, 11, 11, 0.84), rgba(10, 10, 10, 0.98)),
    var(--panel);
  box-shadow: var(--shadow);
}

.judges-stage {
  position: relative;
  min-height: 690px;
  margin-top: 6px;
  overflow: visible;
}

.judges-stage::before {
  display: none;
}

.judge-node {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 190px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: center;
  text-transform: uppercase;
}

.judge-node:hover,
.judge-node:focus-visible,
.judge-node.is-active {
  outline: none;
  color: var(--gold-bright);
}

.judge-node:hover .judge-avatar,
.judge-node:focus-visible .judge-avatar,
.judge-node.is-active .judge-avatar {
  border-color: var(--gold-bright);
}

.judge-avatar {
  position: relative;
  width: 170px;
  height: 212px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.judge-node:hover .judge-avatar,
.judge-node:focus-visible .judge-avatar {
  transform: translateY(-4px);
}

.judge-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.76));
}

.judge-avatar img + .judge-initials {
  display: none;
}

.judge-initials {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 233, 148, 0.68);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: var(--gold-bright);
  font-size: 2rem;
  font-weight: 950;
}

.judge-nameplate {
  max-width: 100%;
  display: inline-block;
  color: #fff;
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  font-weight: 950;
  line-height: 0.98;
  text-shadow: 0 5px 18px #000;
}

.judge-role {
  order: -1;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-shadow: 0 5px 18px #000;
}

.judge-node-main {
  top: 6px;
  left: 50%;
  z-index: 3;
  width: min(340px, 34vw);
  transform: translateX(-50%);
}

.judge-node-main .judge-avatar {
  width: min(260px, 28vw);
  height: min(390px, 42vw);
  min-width: 210px;
  min-height: 318px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.judge-node-main:hover .judge-avatar,
.judge-node-main:focus-visible .judge-avatar,
.judge-node-main.is-active .judge-avatar {
  box-shadow: none;
}

.judge-node-main .judge-avatar img {
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.82));
}

.judge-node-main .judge-initials {
  width: 122px;
  height: 122px;
  background: rgba(0, 0, 0, 0.24);
  font-size: 3rem;
}

.judge-node-main .judge-nameplate {
  display: none;
}

.judge-node-main .judge-role {
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.judge-node-sam {
  top: 230px;
  left: 7%;
}

.judge-node-sam .judge-avatar {
  width: 220px;
  height: 276px;
}

.judge-node-sam .judge-nameplate {
  display: none;
}

.judge-node-mystery-one {
  top: 230px;
  right: 7%;
}

.judge-node-mystery-two {
  bottom: 48px;
  left: 22%;
}

.judge-node-mystery-three {
  right: 24%;
  bottom: 46px;
}

.mystery-avatar {
  width: 136px;
  height: 136px;
  overflow: hidden;
  border: 1px dashed rgba(255, 233, 148, 0.56);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.36);
}

.judge-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 12;
  width: min(780px, calc(100% - 40px));
  max-height: calc(100% - 72px);
  margin: 0;
  overflow: hidden;
  border-color: rgba(244, 200, 75, 0.56);
  padding: clamp(22px, 3vw, 34px);
  padding-right: clamp(64px, 7vw, 82px);
  transform: translate(-50%, -50%);
  background: rgba(6, 6, 6, 0.96);
  backdrop-filter: blur(10px);
  animation: judge-pop 180ms ease-out;
}

.judge-popup[hidden] {
  display: none;
}

.judge-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 233, 148, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-bright);
  cursor: pointer;
  font-weight: 950;
}

.judge-popup-close:hover,
.judge-popup-close:focus-visible {
  outline: none;
  border-color: var(--gold-bright);
  background: rgba(224, 0, 0, 0.38);
}

.judge-popup h3,
.hype-intro h3 {
  max-width: 980px;
  margin: 10px 0 10px;
  font-size: clamp(1.8rem, 3.8vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.judge-popup p,
.hype-intro p,
.contestant-alert p,
.broadcast-copy p {
  max-width: 980px;
  margin: 0 0 18px;
  color: #e9e9e9;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.judge-popup p:last-child,
.hype-intro p:last-child,
.contestant-alert p:last-child,
.broadcast-copy p:last-child {
  margin-bottom: 0;
}

@keyframes judge-pop {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hype-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
  padding: clamp(22px, 3vw, 36px);
}

.contestant-alert {
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  border-color: rgba(244, 200, 75, 0.62);
  background:
    repeating-linear-gradient(115deg, rgba(244, 200, 75, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(145deg, rgba(40, 24, 0, 0.95), rgba(10, 10, 10, 0.97));
  padding: clamp(24px, 4vw, 44px);
}

.contestant-alert h2 {
  margin-top: 10px;
}

.broadcast-strip {
  margin-top: 54px;
  padding: clamp(24px, 4vw, 42px);
  border-left: 6px solid var(--red);
}

.broadcast-copy {
  max-width: 1020px;
}

.broadcast-copy h2 {
  margin: 10px 0 14px;
}

.event-footer {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--panel-line);
  background: #050505;
  padding: 32px 20px;
}

.event-footer .brand {
  margin: 0;
}

@media (max-width: 1080px) {
  .event-hero {
    min-height: 540px;
  }

  .judges-stage {
    min-height: 730px;
  }

  .judge-node-sam {
    left: 1%;
  }

  .judge-node-mystery-one {
    right: 1%;
  }

  .judge-node-mystery-two {
    left: 14%;
  }

  .judge-node-mystery-three {
    right: 14%;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .event-nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .event-nav::-webkit-scrollbar {
    display: none;
  }

  .hype-intro,
  .contestant-alert {
    grid-template-columns: 1fr;
  }

  .powercouple-copy h3 {
    font-size: 1.85rem;
  }

  .powercouple-copy p:last-child {
    font-size: 1rem;
  }

  .powercouple-copy {
    padding: 18px 18px 22px;
  }

  .judges-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
    padding: 18px 0 24px;
  }

  .judges-stage::before {
    display: none;
  }

  .judge-node,
  .judge-node-main,
  .judge-node-sam,
  .judge-node-mystery-one,
  .judge-node-mystery-two,
  .judge-node-mystery-three {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .judge-node-main {
    grid-column: 1 / -1;
  }

  .judge-node-main .judge-avatar {
    width: min(250px, 70vw);
    height: min(360px, 92vw);
    min-width: 210px;
    min-height: 310px;
  }

  .judge-node-main .judge-nameplate {
    top: 50%;
    font-size: clamp(2.4rem, 13vw, 4.6rem);
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section-wrap,
  .hero-content {
    width: min(100% - 22px, 1240px);
  }

  .brand img {
    width: 108px;
  }

  .event-nav a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .event-hero {
    min-height: 500px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.6rem);
  }

  .judges-stage {
    grid-template-columns: 1fr;
  }

  .judge-avatar {
    width: 124px;
    height: 178px;
  }
}

.judges-stage {
  display: grid;
  gap: 18px;
  min-height: auto;
  padding-top: 8px;
}

.judge-headliners {
  min-height: clamp(380px, 42vw, 500px);
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: clamp(32px, 12vw, 150px);
  align-items: end;
  justify-items: center;
}

.judge-node,
.judge-node-angad,
.judge-node-sam {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: min(360px, 40vw);
  transform: none;
}

.judge-node .judge-avatar,
.judge-node-angad .judge-avatar,
.judge-node-sam .judge-avatar {
  width: min(340px, 36vw);
  height: clamp(340px, 40vw, 460px);
  min-width: 0;
  min-height: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.judge-node-sam .judge-avatar {
  width: min(360px, 38vw);
}

.judge-avatar img {
  object-fit: contain;
  object-position: center bottom;
}

.judge-mystery-group {
  position: relative;
  width: min(100%, 1040px);
  min-height: clamp(230px, 27vw, 330px);
  margin: 0 auto;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border: 1px solid rgba(255, 233, 148, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  cursor: pointer;
  padding: 0 18px;
}

.judge-mystery-group:hover,
.judge-mystery-group:focus-visible,
.judge-mystery-group.is-active {
  outline: none;
  border-color: rgba(255, 233, 148, 0.86);
  box-shadow: 0 0 0 4px rgba(244, 200, 75, 0.1);
}

.judge-mystery-group img {
  width: min(100%, 980px);
  max-height: clamp(220px, 27vw, 320px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.7));
}

.judge-popup {
  top: 54%;
  width: min(720px, calc(100% - 40px));
  background: rgba(5, 5, 5, 0.97);
}

.judge-popup .gold-eyebrow {
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .judges-stage {
    display: grid;
    gap: 16px;
    padding-top: 0;
  }

  .judge-headliners {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .judge-node,
  .judge-node-angad,
  .judge-node-sam {
    width: 100%;
  }

  .judge-node .judge-avatar,
  .judge-node-angad .judge-avatar,
  .judge-node-sam .judge-avatar {
    width: min(280px, 78vw);
    height: min(360px, 96vw);
  }

  .judge-mystery-group {
    min-height: 220px;
    padding: 0 8px;
  }

  .judge-popup {
    top: 50%;
    width: calc(100% - 18px);
    max-height: calc(100% - 32px);
    overflow: auto;
  }
}

/* Final judge-stage layout override. Kept last so older positioning rules cannot win. */
.judges-section {
  padding-bottom: clamp(26px, 4vw, 50px);
}

.judges-stage {
  position: relative;
  display: grid;
  gap: clamp(36px, 5vw, 74px);
  min-height: auto;
  overflow: visible;
  padding: 8px 0 clamp(42px, 5vw, 74px);
}

.judge-headliners {
  width: min(780px, 100%);
  min-height: clamp(340px, 34vw, 430px);
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(10px, 4vw, 52px);
  align-items: end;
  justify-items: center;
  margin: 0 auto;
}

.judge-node,
.judge-node-angad,
.judge-node-sam {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: min(330px, 38vw);
  transform: none;
}

.judge-node .judge-avatar,
.judge-node-angad .judge-avatar,
.judge-node-sam .judge-avatar {
  width: min(330px, 36vw);
  height: clamp(330px, 37vw, 430px);
  min-width: 0;
  min-height: 0;
  border: 0;
  background: transparent;
}

.judge-node-sam .judge-avatar {
  width: min(340px, 37vw);
}

.judge-mystery-group {
  width: min(1120px, 100%);
  min-height: clamp(310px, 36vw, 430px);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 20px) clamp(14px, 2vw, 24px) 0;
  border-color: rgba(255, 233, 148, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 233, 148, 0.04), transparent 46%),
    rgba(0, 0, 0, 0.18);
}

.judge-mystery-group img {
  width: min(100%, 1080px);
  max-height: clamp(300px, 35vw, 410px);
  object-fit: contain;
  object-position: center bottom;
}

.judge-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  width: min(760px, calc(100vw - 34px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 233, 148, 0.76);
  background: rgba(5, 5, 5, 0.97);
  box-shadow:
    0 0 0 9999px rgba(0, 0, 0, 0.42),
    0 28px 90px rgba(0, 0, 0, 0.72);
}

.judge-popup h3 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.judge-popup p {
  line-height: 1.5;
}

@media (max-width: 760px) {
  .judges-stage {
    gap: 28px;
    padding-bottom: 38px;
  }

  .judge-headliners {
    width: min(520px, 100%);
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .judge-node,
  .judge-node-angad,
  .judge-node-sam {
    width: 100%;
  }

  .judge-node .judge-avatar,
  .judge-node-angad .judge-avatar,
  .judge-node-sam .judge-avatar {
    width: min(210px, 46vw);
    height: min(300px, 64vw);
  }

  .judge-mystery-group {
    min-height: 230px;
    padding: 10px 8px 0;
  }

  .judge-mystery-group img {
    max-height: 240px;
  }
}

@keyframes judge-hover-glow {
  from {
    filter:
      drop-shadow(0 18px 26px rgba(0, 0, 0, 0.76))
      drop-shadow(0 0 10px rgba(255, 233, 148, 0.18));
  }

  to {
    filter:
      drop-shadow(0 18px 26px rgba(0, 0, 0, 0.76))
      drop-shadow(0 0 28px rgba(255, 233, 148, 0.68))
      drop-shadow(0 0 52px rgba(224, 0, 0, 0.34));
  }
}

.judge-node:hover .judge-avatar img,
.judge-node:focus-visible .judge-avatar img,
.judge-node.is-active .judge-avatar img,
.judge-mystery-group:hover img,
.judge-mystery-group:focus-visible img,
.judge-mystery-group.is-active img {
  animation: judge-hover-glow 1.15s ease-in-out infinite alternate;
}

.judge-mystery-group,
.judge-mystery-group:hover,
.judge-mystery-group:focus-visible,
.judge-mystery-group.is-active {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.judge-mystery-group {
  padding-inline: 0;
}

.judge-mystery-group:hover,
.judge-mystery-group:focus-visible {
  transform: translateY(-4px);
}

/* Current four-judge stage. Placed last to keep the active layout authoritative. */
.judges-stage {
  gap: clamp(42px, 5.2vw, 82px);
  padding-bottom: clamp(52px, 6vw, 92px);
}

.judge-headliners {
  width: min(660px, 100%);
  gap: clamp(0px, 1.6vw, 18px);
}

.judge-node,
.judge-node-angad,
.judge-node-sam,
.judge-node-ethan,
.judge-node-eddie {
  width: min(330px, 38vw);
  transition: transform 180ms ease, color 180ms ease;
}

.judge-node:hover,
.judge-node:focus-visible {
  transform: translateY(-5px);
}

.judge-node:focus-visible {
  outline: 2px solid rgba(255, 233, 148, 0.86);
  outline-offset: 6px;
}

.judge-secondary-row {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  justify-items: center;
  margin: 0 auto;
  padding-bottom: clamp(12px, 2vw, 28px);
}

.judge-secondary-row .judge-node {
  position: relative;
  width: 100%;
}

.judge-node-ethan .judge-avatar {
  width: min(360px, 34vw);
  height: clamp(360px, 38vw, 470px);
}

.judge-node-eddie .judge-avatar {
  width: min(520px, 46vw);
  height: clamp(270px, 28vw, 350px);
}

.judge-node-ethan .judge-avatar img,
.judge-node-eddie .judge-avatar img {
  object-position: center bottom;
}

/* Winners sit before the judge reveal and use the event stills at their native wide shape. */
.winners-section {
  position: relative;
  padding-top: 64px;
}

.winners-heading h2 {
  color: #fff;
  text-shadow: 0 0 28px rgba(244, 200, 75, 0.2);
}

.winner-tiers {
  display: grid;
  gap: 40px;
  padding: 8px 0 10px;
}

.winner-tier {
  display: grid;
  gap: 18px;
}

.winner-tier + .winner-tier {
  border-top: 1px solid var(--panel-line);
  padding-top: 38px;
}

.winner-tier-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 0;
}

.winner-tier-heading .eyebrow {
  margin-bottom: 10px;
}

.winner-tier-heading h3 {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: 3rem;
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.winner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.winner-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #090909;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.winner-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 32%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(130deg, rgba(244, 200, 75, 0.12), transparent 36%);
  content: "";
}

.winner-card-crown {
  border-color: rgba(255, 233, 148, 0.72);
  box-shadow:
    0 0 0 1px rgba(244, 200, 75, 0.1),
    0 20px 64px rgba(0, 0, 0, 0.5);
}

.winner-card-crown::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.01) 26%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(130deg, rgba(244, 200, 75, 0.24), transparent 42%);
}

.winner-frame {
  aspect-ratio: 16 / 11;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.winner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.winner-card:hover .winner-frame img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.winner-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 74px 22px 20px;
}

.winner-caption p {
  width: fit-content;
  margin: 0 0 9px;
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.winner-caption h4 {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-shadow: 0 8px 22px #000;
  text-transform: uppercase;
}

.winner-card-crown .winner-caption h4 {
  font-size: 2.35rem;
}

@media (min-width: 1120px) {
  .winner-frame {
    aspect-ratio: 16 / 10.5;
  }
}

@media (max-width: 1080px) {
  .winner-grid {
    grid-template-columns: 1fr;
  }

  .winner-frame {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  #judges,
  #winners {
    scroll-margin-top: 154px;
  }

  .winners-section {
    padding-top: 46px;
  }

  .winner-tiers {
    gap: 32px;
  }

  .winner-tier {
    gap: 16px;
  }

  .winner-tier + .winner-tier {
    padding-top: 30px;
  }

  .winner-tier-heading {
    display: block;
  }

  .winner-tier-heading h3 {
    font-size: 2rem;
  }

  .winner-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .winner-frame {
    aspect-ratio: 4 / 3;
  }

  .winner-caption {
    padding: 58px 16px 16px;
  }

  .winner-caption h4,
  .winner-card-crown .winner-caption h4 {
    font-size: 1.65rem;
  }

  .judges-stage {
    gap: 34px;
    padding-bottom: 58px;
  }

  .judge-headliners {
    width: min(430px, 100%);
    gap: 0;
  }

  .judge-node,
  .judge-node-angad,
  .judge-node-sam,
  .judge-node-ethan,
  .judge-node-eddie {
    width: 100%;
  }

  .judge-secondary-row {
    width: min(520px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 3vw, 20px);
    padding-bottom: 8px;
  }

  .judge-node-ethan .judge-avatar {
    width: min(220px, 45vw);
    height: min(300px, 66vw);
  }

  .judge-node-eddie .judge-avatar {
    width: min(250px, 48vw);
    height: min(188px, 37vw);
  }
}

/* Shared CNT navigation for event pages. */
.event-header {
  z-index: 1000;
  overflow: visible;
}

.event-header .header-inner,
.event-header .main-nav {
  overflow: visible;
}

.event-header .main-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.event-header .main-nav a,
.event-header .main-nav button,
.event-header .main-nav .nav-dropdown-button {
  appearance: none;
  -webkit-appearance: none;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.91rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.event-header .main-nav a:hover,
.event-header .main-nav a:focus-visible,
.event-header .main-nav button:hover,
.event-header .main-nav button:focus-visible {
  outline: none;
  border-color: rgba(224, 0, 0, 0.52);
  background: rgba(224, 0, 0, 0.18);
  color: #fff;
}

.event-header .main-nav .soul-events-button {
  border-color: rgba(244, 200, 75, 0.78);
  background: linear-gradient(180deg, #fff2ac, #f4c84b);
  color: #130d00;
  box-shadow: 0 0 18px rgba(244, 200, 75, 0.24), 0 10px 28px rgba(244, 200, 75, 0.12);
}

.event-header .main-nav .soul-events-button:hover,
.event-header .main-nav .soul-events-button:focus-visible {
  border-color: rgba(255, 235, 155, 0.88);
  background: linear-gradient(180deg, #fff6c9, #f4c84b);
  color: #090600;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-button {
  gap: 7px;
}

.nav-dropdown-button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 170ms ease;
}

.nav-dropdown.is-open .nav-dropdown-button::after,
.nav-dropdown:focus-within .nav-dropdown-button::after,
.nav-dropdown:hover .nav-dropdown-button::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1100;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  white-space: nowrap;
}
