:root {
      --bg: #f8f8f8;
      --blue: #0073EB;
      --pink: #EC2C79;
      --text: #141414;
      --glass: rgba(255, 255, 255, 0.7);
      --glass-border: rgba(255, 255, 255, 0.30);
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --max-width: 1280px;
      --am-green: #53cc5f;
      --am-green-shadow: #22983b;
      --am-orange: #f89e23;
      --am-orange-shadow: #e96d38;
      --am-blue: #2f6fe8;
      --am-blue-shadow: #1e48b8;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    .winners-confetti-canvas {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      z-index: 9000;
    }

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

    .page-shell {
      min-height: 500vh;
      position: relative;
      isolation: isolate;
      background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.96) 0%, rgba(255,255,255,0.68) 18%, rgba(243,243,245,0) 30%),
        var(--bg);
    }
    
    .container {
      width: min(calc(100% - 32px), var(--max-width));
      margin: 0 auto;
      position: relative;
      z-index: 3;
    }

    :root {
      --curtain-side-height: clamp(300px, 60vw, 690px); /* increased ~30% */
      --curtain-top-height: clamp(55px, 7vw, 110px); /* reduced ~40% */
      --curtain-top-overlap: clamp(18px, 2vw, 34px);
    }
    
    /* keep page-shell as the positioning context */
    .page-shell {
      min-height: 100vh;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.96) 0%, rgba(255,255,255,0.68) 18%, rgba(243,243,245,0) 30%),
        var(--bg);
    }
    


/* =========================
   WINNERS HERO
========================= */

.page-shell {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: visible;
  background-color: var(--bg);
}

/* =========================
   WINNERS GRID — TROPHY ARCHIVE
========================= */

#gridViewPanel {

.winners-grid-layout {
  position: relative;
  z-index: 2;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.winners-grid-layout.is-active {
  display: block;
}

.winners-grid-intro {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 18px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  text-align: left;
  border: 1px solid #e5e5ea;
  border-radius: 30px;
  background:
    radial-gradient(circle at 87% 14%, rgba(255, 199, 90, 0.22), transparent 31%),
    linear-gradient(135deg, #ffffff 0%, #fffaf4 100%);
  box-shadow: 0 16px 45px rgba(29, 29, 31, 0.055);
}

.winners-grid-intro-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.winners-grid-kicker {
  display: block;
  margin-bottom: 10px;
  color: #ec2c79;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.winners-grid-intro h2 {
  margin: 0 0 10px;
  color: #1d1d1f;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.winners-grid-intro p {
  max-width: 560px;
  margin: 0;
  color: #6e6e73;
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  line-height: 1.45;
}

.winners-grid-mascot {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: clamp(130px, 16vw, 220px);
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(29, 29, 31, 0.14));
  transform: translateY(24px) rotate(2deg);
}

.winners-grid-shell {
  width: 100%;
  padding: 10px 10px 16px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(29, 29, 31, 0.28) transparent;
  scrollbar-width: thin;
  border: 1px solid #e5e5ea;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(29, 29, 31, 0.06);
  -webkit-overflow-scrolling: touch;
}

.winners-grid-shell::-webkit-scrollbar {
  height: 10px;
}

.winners-grid-shell::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.26);
  background-clip: padding-box;
}

.winners-grid-scroll-hint {
  position: sticky;
  left: 0;
  z-index: 8;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px 3px;
  color: #86868b;
  font-size: 0.76rem;
  font-weight: 650;
}

.winners-grid-scroll-arrow {
  color: #ec2c79;
  font-size: 1rem;
}

.winners-grid-table-wrap {
  width: max-content;
  min-width: 100%;
  margin: 0;
}

.winners-grid-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  table-layout: fixed;
}

.winners-grid-table th,
.winners-grid-table td {
  border: 1px solid #e8e8ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 9px rgba(29, 29, 31, 0.035);
}

.winners-grid-table thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  width: 188px;
  height: 166px;
  padding: 14px 14px 17px;
  color: #1d1d1f;
  background: #f5f5f7;
}

.winners-grid-table thead .winners-grid-corner {
  left: 0;
  z-index: 7;
  width: 112px;
  min-width: 112px;
  padding: 18px 14px;
  text-align: left;
  color: #fff;
  border: 0 !important;
  background: #1d1d1f !important;
  box-shadow: 0 7px 18px rgba(29, 29, 31, 0.15) !important;
}

.winners-grid-corner-kicker,
.winners-grid-row-label span {
  display: block;
  margin-bottom: 5px;
  color: #a1a1a6;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.winners-grid-corner strong {
  font-size: 1.25rem;
}

.winners-grid-award-header {
  vertical-align: bottom !important;
}

.winners-grid-award-header span {
  display: block;
  min-height: 2.4em;
  font-size: 0.83rem;
  font-weight: 750;
  line-height: 1.18;
}

.winners-grid-trophy {
  width: 86px;
  height: 86px;
  display: block;
  margin: 0 auto 8px;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgba(29, 29, 31, 0.14));
}

.winners-grid-table .winners-grid-row-label {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 112px;
  min-width: 112px;
  padding: 18px 14px !important;
  text-align: left !important;
  color: #fff;
  border: 0;
  background: #1d1d1f !important;
  box-shadow: 7px 0 18px rgba(29, 29, 31, 0.09);
}

.winners-grid-row-label strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.winners-grid-table .winners-grid-cell {
  width: 188px;
  min-width: 188px;
  height: 232px;
  padding: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.winners-grid-table .winners-grid-cell.has-winner:hover {
  z-index: 2;
  border-color: rgba(236, 44, 121, 0.35);
  background: #fff;
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.11);
  transform: translateY(-3px);
}

.winners-grid-pet-button {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 5px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: 14px;
}

.winners-grid-pet-button:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.55);
  outline-offset: -3px;
}

.winners-grid-pet-media {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 3px;
  overflow: hidden;
}

.winners-grid-pet-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 9px rgba(29, 29, 31, 0.13));
  transition: transform 0.22s ease;
}

.winners-grid-cell.has-winner:hover .winners-grid-pet-image {
  transform: scale(1.045);
}

.winners-grid-pet-details {
  min-width: 0;
  padding: 9px 10px 8px;
  text-align: left;
  border-radius: 12px;
  background: #f5f5f7;
}

.winners-grid-pet-details strong {
  display: block;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winners-grid-pet-details .pet-rarity-label {
  justify-content: flex-start;
  margin-top: 5px;
  color: #6e6e73;
  font-size: 0.68rem;
}

.winners-grid-pet-details .pet-rarity-diamond {
  width: 0.68em;
  height: 0.68em;
  flex-basis: 0.68em;
}

.winners-grid-empty {
  color: #a1a1a6;
  font-size: 0.73rem;
  font-weight: 600;
}

.winners-grid-empty-x {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  color: #a1a1a6;
  font-size: 1.1rem;
  border-radius: 50%;
  background: #f0f0f2;
}

@media (min-width: 1200px) {
  .winners-grid-scroll-hint {
    display: none;
  }
}

@media (max-width: 900px) {
  .winners-grid-intro {
    min-height: 170px;
    padding: 32px;
  }

  .winners-grid-mascot {
    width: 150px;
  }

  .winners-grid-table thead th,
  .winners-grid-table .winners-grid-cell {
    width: 166px;
    min-width: 166px;
  }

  .winners-grid-table .winners-grid-cell {
    height: 218px;
  }
}

@media (max-width: 600px) {
  .winners-grid-intro {
    min-height: 210px;
    align-items: flex-start;
    padding: 26px 24px;
    border-radius: 23px;
  }

  .winners-grid-intro-copy {
    max-width: calc(100% - 54px);
  }

  .winners-grid-intro h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .winners-grid-intro p {
    font-size: 0.9rem;
  }

  .winners-grid-mascot {
    position: absolute;
    right: -20px;
    bottom: -6px;
    width: 122px;
    opacity: 0.9;
  }

  .winners-grid-shell {
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 7px 7px 12px;
    border-radius: 22px;
  }

  .winners-grid-table {
    min-width: 0;
    border-spacing: 6px;
  }

  .winners-grid-table thead th,
  .winners-grid-table .winners-grid-cell {
    width: 150px;
    min-width: 150px;
  }

  .winners-grid-table thead th {
    height: 148px;
    padding: 10px;
    border-radius: 16px;
  }

  .winners-grid-trophy {
    width: 74px;
    height: 74px;
  }

  .winners-grid-award-header span {
    font-size: 0.75rem;
  }

  .winners-grid-table .winners-grid-cell {
    height: 200px;
    padding: 6px;
    border-radius: 16px;
  }

  .winners-grid-table thead .winners-grid-corner,
  .winners-grid-table .winners-grid-row-label {
    width: 82px;
    min-width: 82px;
    padding: 12px 10px !important;
    border-radius: 16px;
  }

  .winners-grid-row-label strong {
    font-size: 1.2rem;
  }

  .winners-grid-pet-details {
    padding: 8px;
  }

  .winners-grid-pet-details strong {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .winners-grid-cell,
  .winners-grid-pet-image {
    transition: none !important;
  }
}

}

#gridViewPanel.winners-grid-layout {
  position: relative;
  z-index: 2;
  width: min(1480px, 100%);
  margin: 0 auto;
}

#gridViewPanel.winners-grid-layout.is-active {
  display: block;
}

.winners-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 0;
  background-image: url("SVG_assets/RedCurtainsBackground.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.winners-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: var(--bg);
  z-index: 1;
}

.winners-sign-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  transform: translateY(20px);
}

.winners-sign {
  width: min(780px, 85vw);
  height: auto;
  display: block;
}

/* =========================
   WINNERS BROWSER
========================= */

.winners-browser {
  padding: 72px 24px 110px;
}

.view-toggle {
  width: fit-content;
  margin: 0 auto 45px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  padding: 4px;
  display: flex;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(20, 20, 20, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.view-btn {
  border: none;
  background: transparent;
  color: rgba(20, 20, 20, 0.58);
  font-size: 1.2rem;
  font-weight: 650;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.view-btn.active {
  background: rgba(255, 255, 255, 0.94);
  color: rgba(20, 20, 20, 0.92);
  box-shadow:
    0 1px 2px rgba(20, 20, 20, 0.08),
    0 8px 18px rgba(20, 20, 20, 0.08);
}

.winners-stage-layout {
  width: min(1280px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* FIXED */
  gap: 48px;
  align-items: center;
}
@media (max-width: 1100px) {
  .winners-stage-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
  }

  .winners-copy h2 {
    font-size: 1.9rem;
  }

  .winners-selects {
    width: 100%;
  }
}

@media (max-width: 900px) {


  .winners-copy p {
    max-width: 100%;
  }

  /* ICON */
  .winners-copy-icon {
    width: 110px;
    margin-bottom: 10px;
  }


.winners-stage-layout {
    grid-template-columns: 1fr; /* STACK */
    gap: 28px;
    text-align: center;
    align-items: center;
  }

  .winners-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .winners-select-row {
    grid-template-columns: 1fr; /* dropdown labels stack */
  }

  .winners-selects {
    width: 100%;
    max-width: 520px;
  }

  .stage-card {
    margin-top: 24px;
    align-self: center;

  }

  .winners-field-label {
    text-align: center;
    padding-top: 0;
  }

  /* YEAR BUTTONS CENTER */
  .winners-year-picker {
    justify-content: center;
  }



  .stage-visual {
    width: 100%;
  }

  .stage-winner-badge {
    width: 92%;
    min-width: unset;
  }
    .winners-grid-intro h2 {
    font-size: 1.6rem;
  }

  .winners-grid-table {
    min-width: 680px;
  }
}

@media (max-width: 600px) {
  .winners-selects {
    padding: 14px;
    border-radius: 18px;
  }

  .winners-year-btn {
    min-width: 76px;
    font-size: 0.95rem;
    padding: 8px 14px;
  }

  .winners-select,
  .award-select-button {
    font-size: 0.95rem;
    min-height: 42px;
  }

  .award-options {
    max-height: 200px;
  }
    .winners-grid-table {
    min-width: 600px;
  }

  .winners-grid-intro img {
    width: 120px;
  }
}
.winners-selects,
.winners-select-row,
.custom-select-wrap {
  min-width: 0;
  max-width: 100%;
}
.stage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  margin-top: 0px;

}



.winners-copy-icon {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.winners-copy h2 {
  margin: 0 0 18px;
  font-size: 2.2rem;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}

.winners-copy p {
  margin: 0 0 42px;
  max-width: 580px;
  font-size: 1.3rem;
  line-height: 1.2;
  color: rgba(20, 20, 20, 0.9);
}

.winners-selects {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: none;
    width: min(100%, 560px);
  text-align: left;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 42px rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.winners-select-row {
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.winners-field-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  min-width: 0;
  cursor: pointer;
  text-align: left;
  padding-top: 7px;
}

.winners-field-title {
  font-weight: 700;
  font-size: 1.32rem;
  line-height: 1.15;
  color: #161616;
}

.winners-field-hint {
  font-size: 0.86rem;
  font-weight: 550;
  line-height: 1.2;
  color: rgba(20, 20, 20, 0.44);
}

.winners-year-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.winners-year-btn,
.winners-select {
  font-family: inherit;
  color: rgba(20, 20, 20, 0.82);
  text-shadow: none;
}

.winners-year-btn {
  position: relative;
  min-width: 92px;
  min-height: 44px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  padding: 10px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 5px 12px rgba(20, 20, 20, 0.05);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.winners-year-btn::after {
  content: none;
}

.winners-year-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(20, 20, 20, 0.12);
  color: #141414;
}

.winners-year-btn:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 2px rgba(20, 20, 20, 0.08),
    0 2px 8px rgba(20, 20, 20, 0.04);
}

.winners-year-btn.is-active {
  background: rgba(20, 20, 20, 0.9);
  border-color: rgba(20, 20, 20, 0.9);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(20, 20, 20, 0.14);
}

.winners-year-btn:focus-visible {
  outline: 2px solid rgba(20, 20, 20, 0.3);
  outline-offset: 3px;
}

.custom-select-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  z-index: 5;
}

.is-hidden-control {
  display: none;
}

.native-award-select {
  display: none;
}

.award-select-wrap.is-open {
  z-index: 9100;
}

.award-select-wrap::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 23px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.04);
  transform: translateY(-50%);
  pointer-events: none;
}

.award-select-wrap::after {
  content: "";
  position: absolute;
  right: 21px;
  top: 21px;
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(20, 20, 20, 0.58);
  border-bottom: 2px solid rgba(20, 20, 20, 0.58);
  border-radius: 1px;
  transform: translateY(-68%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.16s ease;
}

.award-select-wrap.is-open::after {
  transform: translateY(-32%) rotate(225deg);
}

.winners-select,
.award-select-button {
  position: relative;
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 5px 12px rgba(20, 20, 20, 0.05);
  padding: 0 52px 0 18px;
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
  color: rgba(20, 20, 20, 0.86);
}

.award-select-button {
  display: flex;
  align-items: center;
  text-align: left;
}

.winners-select.is-placeholder,
.award-select-button.is-placeholder {
  color: rgba(20, 20, 20, 0.48);
  font-weight: 600;
}

.winners-select option {
  font-weight: 500;
  color: #161616;
  background: #ffffff;
}

.winners-select option.winners-select-placeholder-option {
  font-weight: 500;
  color: rgba(20, 20, 20, 0.52);
}

.winners-select:hover,
.award-select-button:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 20, 20, 0.12);
}

.winners-select:focus,
.award-select-button:focus {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 4px rgba(20, 20, 20, 0.06),
    0 6px 16px rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.winners-select:focus-visible,
.award-select-button:focus-visible {
  outline: 2px solid rgba(20, 20, 20, 0.3);
  outline-offset: 3px;
}

.award-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  bottom: auto;
  display: none;
  max-height: 248px;
  padding: 6px;
  overflow-y: auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow:
    0 18px 40px rgba(20, 20, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.award-select-wrap.is-open .award-options {
  display: grid;
  gap: 6px;
}

.award-option {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 11px 13px;
  background: transparent;
  color: rgba(20, 20, 20, 0.82);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.award-option:hover,
.award-option:focus-visible {
  background: rgba(20, 20, 20, 0.05);
  color: #141414;
  outline: none;
}

.award-option.is-selected {
  background: rgba(20, 20, 20, 0.9);
  color: #ffffff;
  box-shadow: none;
}



.stage-visual {
  position: relative;
  width: min(100%, 620px);
}

.stage-bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.stage-pet {
  position: absolute;
  left: var(--stage-pet-x, 50%);
  bottom: var(--stage-pet-bottom, 17%);
  transform: translateX(-50%);
  width: min(var(--stage-pet-width, 300px), 72%);
  height: auto;
  object-fit: contain;
  z-index: 2;
}

.stage-pet.hidden {
  display: none;
}

.stage-winner-badge {
  margin-top: -42px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
  border-radius: 999px;
  padding: 18px 34px 16px;
  min-width: 290px;
  text-align: center;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.stage-winner-badge h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1;
  font-weight: 700;
}

.stage-winner-badge p {
  margin: 8px 0 0;
  font-size: 1.05rem;
  line-height: 1.1;
  color: rgba(20, 20, 20, 0.82);
}

.pet-rarity-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  line-height: 1;
  white-space: nowrap;
}

.pet-rarity-diamond {
  width: 0.86em;
  height: 0.86em;
  flex: 0 0 0.86em;
  display: inline-block;
  background: var(--rarity-color, #9F9E8F);
  border: 1px solid #111111;
  transform: rotate(45deg);
}

/* =========================
   VIEW PANELS
========================= */

.winners-views {
  width: 100%;
}

.winners-view-panel {
  display: none;
}

.winners-view-panel.is-active {
  display: grid;
}

/* =========================
   GRID VIEW
========================= */

.winners-grid-layout {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.winners-grid-intro {
  text-align: center;
  margin-bottom: 30px;
}

.winners-grid-intro h2 {
  margin: 0 0 10px;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.winners-grid-intro p {
  margin: 0;
  font-size: 1rem;
  color: rgba(20, 20, 20, 0.55);
}

.winners-grid-shell {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.winners-grid-table-wrap {
  width: fit-content;
  min-width: 100%;
  margin: 0 auto;
}

.winners-grid-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 10px;
  table-layout: fixed;
}

.winners-grid-table th,
.winners-grid-table td {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 22px;
  padding: 18px 14px;
  text-align: center;
  vertical-align: middle;
}

.winners-grid-table thead th {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(20, 20, 20, 0.9);
  background: rgba(20, 20, 20, 0.04);
}

.winners-grid-corner {
  min-width: 210px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.winners-grid-row-label {
  text-align: left !important;
  padding-left: 20px !important;
  min-width: 210px;
  font-size: 1rem;
  font-weight: 650;
  color: rgba(20, 20, 20, 0.92);
  background: rgba(20, 20, 20, 0.04) !important;
}

.winners-grid-cell {
  position: relative;
  min-width: 120px;
  height: 120px;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.winners-grid-cell.has-winner:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 20, 20, 0.1);
}

.winners-grid-pet-button {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  position: relative;
  overflow: visible;
}

.winners-grid-pet-image {
  width: auto;
  height: auto;
  max-width: 86%;
  max-height: 86%;
  display: block;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.16s ease;
}

.winners-grid-cell.has-winner:hover .winners-grid-pet-image {
  transform: scale(1.05);
}

.winners-grid-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  background: rgba(255, 255, 255, 0.96);
  color: #161616;
  padding: 10px 12px;
  border-radius: 16px;
  min-width: 140px;
  max-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  border: 1px solid rgba(20, 20, 20, 0.06);
  z-index: 20;
}

.winners-grid-tooltip strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.1;
}

.winners-grid-tooltip .pet-rarity-label {
  display: inline-flex;
  margin-top: 4px;
  font-size: 0.8rem;
  color: rgba(20, 20, 20, 0.58);
  line-height: 1.1;
}

.winners-grid-cell.has-winner:hover .winners-grid-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.winners-grid-empty {
  color: rgba(20, 20, 20, 0.36);
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 500;
}

.winners-grid-empty-x {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: rgba(20, 20, 20, 0.22);
}

/* =========================
   WINNERS ARCHIVE — 2026 REDESIGN
   The hero and confetti remain intentionally untouched.
========================= */

.winners-browser {
  --archive-ink: #2a1230;
  --archive-plum: #68143f;
  --archive-rose: #ec2c79;
  --archive-coral: #ff765f;
  --archive-gold: #ffc75a;
  --archive-cream: #fffaf3;
  position: relative;
  padding: 50px 24px 124px;
  overflow: visible;
  background:
    radial-gradient(circle at 10% 20%, rgba(236, 44, 121, 0.09), transparent 25%),
    radial-gradient(circle at 92% 75%, rgba(255, 199, 90, 0.13), transparent 24%),
    linear-gradient(180deg, #f8f8f8 0%, #fff9f1 55%, #f8f5f7 100%);
}

.winners-browser::before,
.winners-browser::after {
  content: "";
  position: absolute;
  width: 240px;
  aspect-ratio: 1;
  border: 1px solid rgba(104, 20, 63, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.winners-browser::before {
  left: -125px;
  top: 22%;
  box-shadow: 0 0 0 34px rgba(104, 20, 63, 0.025), 0 0 0 70px rgba(104, 20, 63, 0.018);
}

.winners-browser::after {
  right: -145px;
  bottom: 9%;
  box-shadow: 0 0 0 34px rgba(236, 44, 121, 0.025), 0 0 0 70px rgba(236, 44, 121, 0.018);
}

.view-toggle {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
  padding: 5px;
  border: 1px solid rgba(42, 18, 48, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 36px rgba(67, 28, 48, 0.08);
}

.view-btn {
  min-width: 132px;
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(42, 18, 48, 0.55);
}

.view-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--archive-plum), #9f1d55);
  box-shadow: 0 8px 18px rgba(104, 20, 63, 0.25), inset 0 1px rgba(255,255,255,.18);
}

.winners-stage-layout {
  position: relative;
  z-index: 2;
  width: min(1380px, 100%);
  grid-template-columns: minmax(360px, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: stretch;
  padding: clamp(12px, 1.8vw, 24px);
  border: 1px solid rgba(62, 19, 48, 0.09);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 35px 90px rgba(69, 30, 49, 0.12), inset 0 1px rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.winners-copy {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 3vw, 46px);
  border-radius: 30px;
  color: var(--archive-ink);
  background:
    radial-gradient(circle at 102% -2%, rgba(255, 199, 90, 0.32), transparent 34%),
    linear-gradient(145deg, #fffdf9, #fff6e9);
  border: 1px solid rgba(104, 20, 63, 0.08);
  overflow: visible;
}

.winners-copy::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(104, 20, 63, 0.09);
  border-radius: 23px;
  pointer-events: none;
}

.winners-copy-heading,
.winners-selects,
.winners-select-note {
  position: relative;
  z-index: 1;
}

.winners-copy-heading {
  min-height: 168px;
  display: flex;
  align-items: flex-start;
}

.winners-copy-text {
  position: relative;
  z-index: 2;
  max-width: 390px;
}

.winners-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--archive-rose);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.winners-copy h2 {
  margin: 0 0 14px;
  max-width: 370px;
  font-family: "Dela Gothic One", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.winners-copy p {
  max-width: 360px;
  margin: 0;
  color: rgba(42, 18, 48, 0.68);
  font-size: 1rem;
  line-height: 1.45;
}

.winners-copy-icon {
  position: absolute;
  z-index: 1;
  top: -30px;
  right: -25px;
  width: clamp(112px, 12vw, 166px);
  max-height: 150px;
  margin: 0;
  object-fit: contain;
  object-position: top right;
  filter: drop-shadow(0 16px 18px rgba(42, 18, 48, 0.16));
  transform: rotate(5deg);
  pointer-events: none;
}

.winners-selects {
  width: 100%;
  max-width: none;
  margin-top: 34px;
  padding: 0;
  gap: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.winners-select-row {
  display: block;
}

.winners-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  padding: 0;
  margin-bottom: 14px;
}

.winners-field-label > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.winners-step {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  color: #fff;
  background: var(--archive-ink);
  box-shadow: 0 6px 14px rgba(42, 18, 48, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.winners-field-title {
  color: var(--archive-ink);
  font-size: 1rem;
  font-weight: 850;
}

.winners-field-hint {
  color: rgba(42, 18, 48, 0.48);
  font-size: 0.76rem;
  font-weight: 650;
}

.winners-year-picker {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(104, 20, 63, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px rgba(255,255,255,.9), 0 10px 24px rgba(75, 35, 51, 0.06);
}

.winners-year-picker::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 10%;
  right: 10%;
  top: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(236,44,121,.18), rgba(104,20,63,.2));
}

.winners-year-btn {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 58px;
  padding: 30px 4px 7px;
  border: 0;
  border-radius: 13px;
  color: rgba(42, 18, 48, 0.58);
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.76rem, 1.1vw, 0.9rem);
  font-weight: 800;
}

.winners-year-btn::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #cab8c1;
  box-shadow: 0 0 0 1px rgba(104,20,63,.13);
  transform: translateX(-50%);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.winners-year-btn:hover {
  color: var(--archive-plum);
  background: rgba(236, 44, 121, 0.05);
  border-color: transparent;
}

.winners-year-btn:hover::before {
  background: var(--archive-coral);
  transform: translateX(-50%) scale(1.12);
}

.winners-year-btn.is-active {
  color: #fff;
  background: linear-gradient(145deg, var(--archive-plum), #9c1e55);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(104, 20, 63, 0.23), inset 0 1px rgba(255,255,255,.18);
}

.winners-year-btn.is-active::before {
  background: var(--archive-gold);
  border-color: rgba(255,255,255,.92);
  box-shadow: 0 0 0 3px rgba(255, 199, 90, 0.2);
}

.award-select-wrap::before,
.award-select-wrap::after {
  content: none;
}

.award-select-button {
  min-height: 62px;
  padding: 8px 58px 8px 9px;
  gap: 12px;
  border: 1px solid rgba(104, 20, 63, 0.12);
  border-radius: 18px;
  color: var(--archive-ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px rgba(255,255,255,.95), 0 10px 24px rgba(75, 35, 51, 0.07);
  font-size: 0.96rem;
  font-weight: 800;
}

.award-select-button:hover,
.award-select-button:focus {
  border-color: rgba(236, 44, 121, 0.34);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(236,44,121,.08), 0 12px 26px rgba(75,35,51,.09);
}

.award-button-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 13px;
  background: linear-gradient(145deg, #fff2c7, #ffd063);
  box-shadow: inset 0 1px rgba(255,255,255,.8);
}

.award-button-icon img {
  width: 21px;
  height: 21px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(26%) saturate(1449%) hue-rotate(239deg) brightness(93%);
}

.award-button-chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--archive-plum);
  border-bottom: 2px solid var(--archive-plum);
  transform: translateY(-68%) rotate(45deg);
  transition: transform .2s ease;
}

.award-select-wrap.is-open .award-button-chevron {
  transform: translateY(-30%) rotate(225deg);
}

.award-options {
  top: calc(100% + 10px);
  max-height: 290px;
  padding: 8px;
  border-color: rgba(104, 20, 63, 0.12);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 24px 55px rgba(42, 18, 48, 0.2), inset 0 1px rgba(255,255,255,.9);
}

.award-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 12px 40px;
  border-radius: 12px;
  color: rgba(42, 18, 48, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
}

.award-option-status {
  color: rgba(42, 18, 48, 0.36);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.award-option.is-unavailable {
  cursor: not-allowed;
  opacity: 0.5;
}

.award-option::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(104, 20, 63, 0.24);
  border-radius: 50%;
  transform: translateY(-50%);
}

.award-option:hover,
.award-option:focus-visible {
  color: var(--archive-plum);
  background: rgba(236, 44, 121, 0.07);
}

.award-option.is-selected {
  color: #fff;
  background: linear-gradient(135deg, var(--archive-plum), #9f1d55);
  box-shadow: 0 8px 18px rgba(104,20,63,.17);
}

.award-option.is-selected::before {
  border-color: #fff;
  background: var(--archive-gold);
}

.winners-select-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0 !important;
  color: rgba(42, 18, 48, 0.5) !important;
  font-size: 0.76rem !important;
  font-weight: 700;
}

.winners-select-note span {
  color: var(--archive-rose);
}

.stage-card {
  min-width: 0;
  align-self: stretch;
  align-items: stretch;
  padding: clamp(15px, 2vw, 22px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 0%, rgba(236, 44, 121, 0.28), transparent 35%),
    linear-gradient(150deg, #2a1230, #160b22 72%);
  box-shadow: 0 24px 55px rgba(42,18,48,.24), inset 0 1px rgba(255,255,255,.12);
  overflow: hidden;
}

.stage-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 5px 15px;
}

.stage-live-label,
.stage-year-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-live-label {
  gap: 8px;
  color: rgba(255,255,255,.7);
}

.stage-live-label > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4e83;
  box-shadow: 0 0 0 5px rgba(255,78,131,.13), 0 0 14px rgba(255,78,131,.7);
}

.stage-year-badge {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--archive-gold);
  background: rgba(255,255,255,.06);
}

.stage-frame {
  position: relative;
  width: 100%;
  padding: 7px;
  border-radius: 23px;
  background: linear-gradient(135deg, #ffd36e, #f67c4c 34%, #a62a67 70%, #ffd36e);
  box-shadow: 0 20px 45px rgba(0,0,0,.28), 0 0 35px rgba(236,44,121,.14);
}

.stage-frame::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  pointer-events: none;
}

.stage-visual {
  width: 100%;
  max-width: none;
  aspect-ratio: 5 / 4;
  border-radius: 17px;
  overflow: hidden;
  background: #501047;
}

.stage-bg {
  width: 100%;
  height: 100%;
  border-radius: 17px;
  object-fit: cover;
}

.stage-pet {
  width: min(var(--stage-pet-width, 48.4%), 82%);
  max-height: var(--stage-pet-max-height, 68%);
  object-fit: contain;
  filter: drop-shadow(0 18px 12px rgba(25, 4, 33, 0.36));
  transition: opacity .28s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}

.stage-winner-badge {
  width: calc(100% - 28px);
  min-width: 0;
  margin: -10px auto 0;
  padding: 22px 24px 10px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.stage-award-name {
  display: block;
  margin-bottom: 8px;
  color: var(--archive-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-winner-badge h3 {
  font-family: "Dela Gothic One", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.stage-winner-badge p {
  margin-top: 9px;
  color: rgba(255,255,255,.66);
  font-size: 0.94rem;
}

.stage-winner-badge .pet-rarity-label {
  color: rgba(255,255,255,.78);
}

.stage-winner-badge .pet-rarity-diamond {
  border-color: rgba(255,255,255,.85);
  box-shadow: 0 0 8px color-mix(in srgb, var(--rarity-color) 65%, transparent);
}

@media (max-width: 1120px) {
  .winners-stage-layout {
    grid-template-columns: minmax(320px, .82fr) minmax(470px, 1.18fr);
    gap: 20px;
  }

  .winners-copy {
    padding: 30px;
  }

  .winners-copy-icon {
    right: -18px;
    width: 118px;
  }
}

@media (max-width: 900px) {
  .winners-browser {
    padding-inline: 18px;
  }

  .winners-stage-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 720px;
  }

  .winners-copy {
    align-items: stretch;
    text-align: left;
  }

  .winners-copy-heading {
    width: 100%;
  }

  .winners-copy-text {
    max-width: 500px;
  }

  .winners-copy h2,
  .winners-copy p {
    max-width: 500px;
  }

  .winners-selects {
    max-width: none;
  }

  .winners-field-label {
    text-align: left;
  }

  .stage-card {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .winners-browser {
    padding: 34px 10px 82px;
  }

  .view-toggle {
    width: calc(100% - 24px);
  }

  .view-btn {
    flex: 1;
    min-width: 0;
    font-size: .8rem;
  }

  .winners-stage-layout {
    padding: 7px;
    border-radius: 29px;
  }

  .winners-copy,
  .stage-card {
    border-radius: 23px;
  }

  .winners-copy {
    padding: 30px 22px 25px;
  }

  .winners-copy::after {
    inset: 7px;
    border-radius: 17px;
  }

  .winners-copy-heading {
    min-height: 150px;
  }

  .winners-copy-text {
    padding-right: 48px;
  }

  .winners-copy h2 {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

  .winners-copy-icon {
    top: -22px;
    right: -16px;
    width: 103px;
  }

  .winners-selects {
    margin-top: 26px;
  }

  .winners-year-picker {
    gap: 2px;
    padding: 5px;
  }

  .winners-year-btn {
    min-width: 0;
    min-height: 54px;
    padding-inline: 1px;
    font-size: .7rem;
  }

  .award-select-button {
    min-height: 58px;
    font-size: .85rem;
  }

  .award-button-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .stage-card {
    padding: 12px;
  }

  .stage-frame {
    padding: 5px;
    border-radius: 18px;
  }

  .stage-frame::after {
    inset: 5px;
    border-radius: 13px;
  }

  .stage-visual,
  .stage-bg {
    border-radius: 13px;
  }

  .stage-winner-badge {
    width: 100%;
    padding: 20px 10px 7px;
  }

  .stage-winner-badge h3 {
    font-size: 1.55rem;
  }
}

/* =========================
   LIGHT NEUTRAL REFINEMENT
========================= */

.winners-browser {
  --archive-ink: #1d1d1f;
  --archive-plum: #1d1d1f;
  --archive-rose: #0071e3;
  --archive-coral: #86868b;
  --archive-gold: #6e6e73;
  padding-top: 46px;
  background: #f5f5f7;
}

.winners-browser::before,
.winners-browser::after,
.winners-copy::after {
  display: none;
}

.view-toggle {
  margin-bottom: 30px;
  padding: 4px;
  border: 0;
  background: #e8e8ed;
  box-shadow: none;
  backdrop-filter: none;
}

.view-btn {
  color: #6e6e73;
  font-weight: 700;
  letter-spacing: 0;
}

.view-btn.active {
  color: #1d1d1f;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.winners-stage-layout {
  grid-template-columns: minmax(350px, 0.82fr) minmax(540px, 1.18fr);
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.winners-copy {
  padding: clamp(30px, 3vw, 44px);
  border: 1px solid #e5e5ea;
  border-radius: 28px;
  color: #1d1d1f;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 14px 35px rgba(0, 0, 0, 0.04);
  overflow: visible;
}

.winners-stage-layout:has(.award-select-wrap.is-open) {
  z-index: 50;
}

.winners-copy:has(.award-select-wrap.is-open) {
  z-index: 30;
}

.winners-copy-heading {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.winners-kicker {
  margin-bottom: 12px;
  color: #86868b;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.winners-kicker::before {
  content: none;
}

.winners-copy h2 {
  margin-bottom: 12px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  font-size: clamp(2.1rem, 3.15vw, 3.05rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.045em;
}

.winners-copy p {
  color: #6e6e73;
  font-size: 1.04rem;
  line-height: 1.45;
}

.winners-copy-icon {
  position: static;
  width: clamp(92px, 8vw, 112px);
  margin: 0 0 18px;
  filter: grayscale(0.25) drop-shadow(0 10px 16px rgba(0, 0, 0, 0.1));
  transform: none;
}

.winners-selects {
  margin-top: 24px;
  gap: 24px;
}

.winners-field-label {
  margin-bottom: 11px;
}

.winners-step {
  width: 31px;
  height: 31px;
  flex-basis: 31px;
  border-radius: 50%;
  color: #6e6e73;
  background: #f0f0f2;
  box-shadow: none;
  font-size: 0.68rem;
}

.winners-field-title {
  color: #1d1d1f;
  font-size: 1.08rem;
  font-weight: 700;
}

.winners-field-hint {
  color: #86868b;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
}

.winners-year-picker {
  height: 58px;
  gap: 4px;
  padding: 4px;
  border: 0;
  border-radius: 14px;
  background: #f0f0f2;
  box-shadow: none;
}

.winners-year-picker::before,
.winners-year-btn::before {
  content: none;
}

.winners-year-btn {
  min-height: 50px;
  padding: 8px 3px;
  border-radius: 10px;
  color: #6e6e73;
  background: transparent;
  font-size: clamp(0.8rem, 1.1vw, 0.94rem);
  font-weight: 650;
}

.winners-year-btn:hover {
  color: #1d1d1f;
  background: rgba(255, 255, 255, 0.6);
}

.winners-year-btn.is-active {
  color: #1d1d1f;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.035);
}

.award-select-button {
  height: 58px;
  min-height: 58px;
  padding: 0 52px 0 16px;
  border: 0;
  border-radius: 14px;
  color: #1d1d1f;
  background: #f0f0f2;
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 650;
}

.award-select-button.is-placeholder {
  color: #86868b;
}

.award-select-button:hover,
.award-select-button:focus {
  border-color: transparent;
  background: #e8e8ed;
  box-shadow: none;
}

.award-button-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.award-button-icon img {
  width: 19px;
  height: 19px;
  filter: grayscale(1) opacity(0.72);
}

.award-button-chevron {
  border-color: #86868b;
}

.award-options {
  z-index: 10000;
  max-height: none;
  padding: 6px 3px 6px 6px;
  overflow: hidden;
  border: 1px solid #e5e5ea;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.award-select-wrap.is-open .award-options {
  display: block;
}

.award-options-scroll {
  display: grid;
  gap: 6px;
  max-height: 278px;
  padding-right: 3px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 29, 31, 0.34) transparent;
}

.award-options-scroll::-webkit-scrollbar {
  width: 6px;
}

.award-options-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.award-options-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.3);
}

.award-options-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(29, 29, 31, 0.48);
}

.award-option {
  color: #3a3a3c;
  font-weight: 600;
}

.award-option::before {
  border-color: #c7c7cc;
}

.award-option:hover,
.award-option:focus-visible {
  color: #1d1d1f;
  background: #f5f5f7;
}

.award-option.is-selected {
  color: #1d1d1f;
  background: #e8e8ed;
  box-shadow: none;
}

.award-option.is-selected::before {
  border-color: #0071e3;
  background: #0071e3;
}

.stage-card {
  padding: 18px;
  border: 1px solid #e5e5ea;
  border-radius: 28px;
  color: #1d1d1f;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 14px 35px rgba(0, 0, 0, 0.04);
}

.stage-card-header {
  padding: 0 3px 14px;
}

.stage-live-label {
  color: #6e6e73;
}

.stage-live-label > span {
  width: 7px;
  height: 7px;
  background: #34c759;
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.11);
}

.stage-year-badge {
  padding: 7px 10px;
  border: 0;
  color: #6e6e73;
  background: #f0f0f2;
}

.stage-frame {
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stage-frame::after {
  display: none;
}

.stage-visual,
.stage-bg {
  border-radius: 22px;
}

.stage-winner-badge {
  width: 100%;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 14px 0 0;
  padding: 16px 20px;
  border: 0;
  border-radius: 20px;
  color: #1d1d1f;
  background: #f5f5f7;
  text-align: left;
}

.stage-trophy-image {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  object-fit: contain;
}

.stage-trophy-image.hidden {
  display: none;
}

.stage-winner-copy {
  min-width: 0;
  margin-right: auto;
}

.stage-award-name {
  margin-bottom: 5px;
  color: #86868b;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

.stage-winner-badge h3 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.04em;
}

.stage-winner-badge p,
.stage-winner-badge .pet-rarity-label {
  color: #6e6e73;
}

.stage-winner-badge .pet-rarity-diamond {
  border-color: rgba(29, 29, 31, 0.72);
  box-shadow: none;
}

/* Keep the picker and stage comfortably inside a desktop viewport. */
@media (min-width: 901px) {
  .winners-stage-layout {
    width: min(1173px, 100%);
    grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.18fr);
    gap: 20px;
  }

  .winners-copy {
    padding: clamp(26px, 2.55vw, 37px);
  }

  .stage-card {
    padding: 15px;
  }

  .stage-card-header {
    padding-bottom: 12px;
  }

  .stage-winner-badge {
    min-height: 95px;
    gap: 15px;
    margin-top: 12px;
    padding: 13px 17px;
  }

  .stage-trophy-image {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }
}

@media (max-width: 1120px) {
  .winners-stage-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(470px, 1.18fr);
  }
}

@media (max-width: 900px) {
  .winners-stage-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .winners-copy,
  .stage-card {
    border-radius: 22px;
  }

  .winners-copy {
    padding: 28px 22px;
  }

  .winners-copy-heading {
    min-height: 138px;
  }

  .winners-year-btn {
    min-height: 40px;
  }

  .stage-card {
    padding: 10px;
  }

  .stage-card-header {
    padding: 3px 4px 12px;
  }

  .stage-visual,
  .stage-bg,
  .stage-frame {
    border-radius: 15px;
  }

  .stage-winner-badge {
    min-height: 96px;
    gap: 12px;
    margin-top: 10px;
    padding: 13px 14px;
    border-radius: 15px;
  }

  .stage-trophy-image {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }
}

/* =========================
   GRID VIEW — HALL OF FAME
   Scoped to the panel so the stage view remains independent.
========================= */

#gridViewPanel {
  --grid-ink: #241625;
  --grid-muted: #746b76;
  --grid-line: rgba(57, 34, 60, 0.09);
  --grid-pink: #ec2c79;
  --grid-blue: #0073eb;
  width: min(1480px, 100%);
  margin: 0 auto;
}

#gridViewPanel.is-active {
  display: block;
}

#gridViewPanel .winners-grid-intro {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 0 0 20px;
  padding: clamp(34px, 4.5vw, 64px);
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(236, 44, 121, 0.11);
  border-radius: 34px;
  background:
    radial-gradient(circle at 83% 20%, rgba(255, 200, 73, 0.34), transparent 25%),
    radial-gradient(circle at 94% 105%, rgba(236, 44, 121, 0.18), transparent 35%),
    linear-gradient(120deg, #fff 0%, #fff9f2 58%, #fff1f7 100%);
  box-shadow: 0 18px 50px rgba(61, 34, 56, 0.07);
}

#gridViewPanel .winners-grid-intro-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

#gridViewPanel .winners-grid-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--grid-pink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#gridViewPanel .winners-grid-intro h2 {
  margin: 0 0 14px;
  color: var(--grid-ink);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

#gridViewPanel .winners-grid-intro p {
  max-width: 575px;
  margin: 0;
  color: var(--grid-muted);
  font-size: clamp(0.96rem, 1.35vw, 1.1rem);
  line-height: 1.5;
}

#gridViewPanel .winners-grid-meta {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

#gridViewPanel .winners-grid-meta span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 13px;
  color: var(--grid-muted);
  font-size: 0.77rem;
  font-weight: 650;
  border: 1px solid rgba(36, 22, 37, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

#gridViewPanel .winners-grid-meta strong {
  color: var(--grid-ink);
  font-size: 1rem;
}

#gridViewPanel .winners-grid-mascot-wrap {
  position: relative;
  z-index: 1;
  align-self: stretch;
  width: clamp(190px, 23vw, 330px);
  flex: 0 0 clamp(190px, 23vw, 330px);
}

#gridViewPanel .winners-grid-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(180px, 22vw, 310px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -48%);
}

#gridViewPanel .winners-grid-mascot {
  position: absolute;
  right: 2%;
  bottom: -48px;
  z-index: 1;
  width: min(100%, 300px);
  max-height: 285px;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(65, 27, 55, 0.16));
  transform: rotate(2deg);
}

#gridViewPanel .winners-grid-shell {
  width: 100%;
  padding: 12px 12px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--grid-line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(47, 27, 49, 0.07);
  scrollbar-width: thin;
  scrollbar-color: rgba(80, 60, 82, 0.26) transparent;
  -webkit-overflow-scrolling: touch;
}

#gridViewPanel .winners-grid-shell::-webkit-scrollbar {
  height: 11px;
}

#gridViewPanel .winners-grid-shell::-webkit-scrollbar-track {
  background: transparent;
}

#gridViewPanel .winners-grid-shell::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(80, 60, 82, 0.25);
  background-clip: padding-box;
}

#gridViewPanel .winners-grid-toolbar {
  position: sticky;
  left: 0;
  z-index: 8;
  width: calc(100vw - 98px);
  max-width: 1428px;
  min-width: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 8px 10px;
  color: var(--grid-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

#gridViewPanel .winners-grid-axis,
#gridViewPanel .winners-grid-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#gridViewPanel .winners-grid-axis i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grid-pink);
  box-shadow: 0 0 0 4px rgba(236, 44, 121, 0.11);
}

#gridViewPanel .winners-grid-scroll-hint b {
  color: var(--grid-pink);
  font-size: 1rem;
}

#gridViewPanel .winners-grid-table-wrap {
  width: max-content;
  min-width: 100%;
}

#gridViewPanel .winners-grid-table {
  width: max-content;
  min-width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 8px;
  table-layout: fixed;
}

#gridViewPanel .winners-grid-table th,
#gridViewPanel .winners-grid-table td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--grid-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: none;
}

#gridViewPanel .winners-grid-table thead th {
  width: 184px;
  min-width: 184px;
  height: 168px;
  padding: 15px 14px 16px;
  color: var(--grid-ink);
  background: linear-gradient(155deg, #fff 0%, #faf7fb 100%);
}

#gridViewPanel .winners-grid-table thead .winners-grid-corner {
  position: sticky;
  left: 0;
  z-index: 7;
  width: 108px;
  min-width: 108px;
  padding: 18px 15px;
  overflow: hidden;
  text-align: left;
  color: #fff !important;
  border: 0;
  background: linear-gradient(145deg, #ea2c78, #b8145b) !important;
  box-shadow: 8px 0 20px rgba(62, 22, 50, 0.1) !important;
}

#gridViewPanel .winners-grid-corner-kicker,
#gridViewPanel .winners-grid-row-label span {
  display: block;
  margin-bottom: 5px;
  color: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  opacity: 0.68;
  text-transform: uppercase;
}

#gridViewPanel .winners-grid-corner strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

#gridViewPanel .winners-grid-corner-arrow {
  position: absolute;
  right: 13px;
  bottom: 12px;
  font-size: 1.1rem;
  opacity: 0.65;
}

#gridViewPanel .winners-grid-award-header {
  vertical-align: bottom;
}

#gridViewPanel .winners-grid-award-header > span {
  min-height: 2.3em;
  display: flex;
  align-items: end;
  justify-content: center;
  color: var(--grid-ink);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.16;
}

#gridViewPanel .winners-grid-trophy {
  width: 92px;
  height: 92px;
  display: block;
  margin: 0 auto 9px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(49, 27, 45, 0.14));
}

#gridViewPanel .winners-grid-table .winners-grid-row-label {
  position: sticky;
  left: 0;
  z-index: 5;
  width: 108px;
  min-width: 108px;
  padding: 18px 15px;
  text-align: left;
  color: var(--grid-ink) !important;
  border-color: rgba(236, 44, 121, 0.12);
  background: #fff4f8 !important;
  box-shadow: 8px 0 20px rgba(62, 22, 50, 0.07);
}

#gridViewPanel .winners-grid-row-label strong {
  display: block;
  color: var(--grid-pink);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

#gridViewPanel .winners-grid-table .winners-grid-cell {
  position: relative;
  width: 184px;
  min-width: 184px;
  height: 222px;
  padding: 8px;
  overflow: hidden;
  background: linear-gradient(155deg, #fff 0%, #fbfafc 100%);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

#gridViewPanel .winners-grid-table .winners-grid-cell.has-winner:hover {
  z-index: 2;
  border-color: rgba(236, 44, 121, 0.3);
  box-shadow: 0 13px 28px rgba(53, 28, 50, 0.12);
  transform: translateY(-3px);
}

#gridViewPanel .winners-grid-pet-button {
  appearance: none;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 5px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  border-radius: 14px;
  background: transparent;
  font: inherit;
}

#gridViewPanel .winners-grid-pet-button:focus-visible {
  outline: 3px solid rgba(0, 115, 235, 0.48);
  outline-offset: -3px;
}

#gridViewPanel .winners-grid-pet-media {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 3px 5px 0;
  overflow: hidden;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 64%, rgba(255, 205, 89, 0.13), transparent 61%);
}

#gridViewPanel .winners-grid-pet-image {
  width: 100%;
  height: 100%;
  max-width: 152px;
  max-height: 150px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 9px 8px rgba(48, 29, 46, 0.14));
  transform-origin: center bottom;
  transition: transform 180ms ease;
}

#gridViewPanel .winners-grid-cell.has-winner:hover .winners-grid-pet-image {
  transform: scale(1.055) translateY(-2px);
}

#gridViewPanel .winners-grid-pet-details {
  min-width: 0;
  padding: 9px 10px 8px;
  text-align: left;
  border: 1px solid rgba(45, 25, 46, 0.045);
  border-radius: 11px;
  background: rgba(246, 243, 247, 0.9);
}

#gridViewPanel .winners-grid-pet-details strong {
  display: block;
  overflow: hidden;
  color: var(--grid-ink);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#gridViewPanel .winners-grid-pet-details .pet-rarity-label {
  justify-content: flex-start;
  margin-top: 5px;
  color: var(--grid-muted);
  font-size: 0.68rem;
}

#gridViewPanel .winners-grid-pet-details .pet-rarity-diamond {
  width: 0.65em;
  height: 0.65em;
  flex-basis: 0.65em;
}

#gridViewPanel .winners-grid-empty {
  display: grid;
  place-items: center;
  gap: 4px;
  color: #aaa3ac;
  font-size: 0.7rem;
  font-weight: 600;
}

#gridViewPanel .winners-grid-empty-x {
  display: block;
  margin: 0;
  color: #c6c0c7;
  font-size: 1.6rem;
  line-height: 1;
  background: transparent;
}

@media (min-width: 1280px) {
  #gridViewPanel .winners-grid-scroll-hint {
    opacity: 0.78;
  }
}

@media (max-width: 900px) {
  #gridViewPanel .winners-grid-intro {
    min-height: 220px;
    padding: 38px;
    border-radius: 28px;
  }

  #gridViewPanel .winners-grid-intro h2 {
    font-size: clamp(2.5rem, 8vw, 3.7rem);
  }

  #gridViewPanel .winners-grid-mascot-wrap {
    width: 190px;
    flex-basis: 190px;
  }

  #gridViewPanel .winners-grid-mascot {
    right: -14px;
    bottom: -43px;
    width: 210px;
  }

  #gridViewPanel .winners-grid-table thead th,
  #gridViewPanel .winners-grid-table .winners-grid-cell {
    width: 164px;
    min-width: 164px;
  }

  #gridViewPanel .winners-grid-table .winners-grid-cell {
    height: 208px;
  }

  #gridViewPanel .winners-grid-pet-image {
    max-width: 138px;
    max-height: 137px;
  }
}

@media (max-width: 600px) {
  #gridViewPanel .winners-grid-intro {
    min-height: 260px;
    align-items: flex-start;
    margin-bottom: 14px;
    padding: 28px 24px;
    border-radius: 24px;
  }

  #gridViewPanel .winners-grid-intro-copy {
    max-width: calc(100% - 42px);
  }

  #gridViewPanel .winners-grid-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  #gridViewPanel .winners-grid-intro p {
    max-width: 92%;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  #gridViewPanel .winners-grid-meta {
    margin-top: 18px;
  }

  #gridViewPanel .winners-grid-mascot-wrap {
    position: absolute;
    right: -31px;
    bottom: 0;
    width: 145px;
    height: 180px;
  }

  #gridViewPanel .winners-grid-burst {
    width: 135px;
  }

  #gridViewPanel .winners-grid-mascot {
    right: 0;
    bottom: -31px;
    width: 154px;
  }

  #gridViewPanel .winners-grid-shell {
    width: calc(100% + 16px);
    margin-left: -8px;
    padding: 8px 7px 12px;
    border-radius: 22px;
  }

  #gridViewPanel .winners-grid-toolbar {
    width: calc(100vw - 44px);
    padding: 5px 7px 8px;
  }

  #gridViewPanel .winners-grid-axis {
    display: none;
  }

  #gridViewPanel .winners-grid-scroll-hint {
    margin-left: auto;
  }

  #gridViewPanel .winners-grid-table {
    border-spacing: 6px;
  }

  #gridViewPanel .winners-grid-table thead th,
  #gridViewPanel .winners-grid-table .winners-grid-cell {
    width: 142px;
    min-width: 142px;
  }

  #gridViewPanel .winners-grid-table thead th {
    height: 142px;
    padding: 10px 9px 12px;
    border-radius: 16px;
  }

  #gridViewPanel .winners-grid-trophy {
    width: 76px;
    height: 76px;
    margin-bottom: 7px;
  }

  #gridViewPanel .winners-grid-award-header > span {
    font-size: 0.71rem;
  }

  #gridViewPanel .winners-grid-table thead .winners-grid-corner,
  #gridViewPanel .winners-grid-table .winners-grid-row-label {
    width: 76px;
    min-width: 76px;
    padding: 11px 9px;
    border-radius: 16px;
  }

  #gridViewPanel .winners-grid-corner strong,
  #gridViewPanel .winners-grid-row-label strong {
    font-size: 1.08rem;
  }

  #gridViewPanel .winners-grid-corner-arrow {
    right: 8px;
    bottom: 8px;
  }

  #gridViewPanel .winners-grid-table .winners-grid-cell {
    height: 184px;
    padding: 6px;
    border-radius: 16px;
  }

  #gridViewPanel .winners-grid-pet-image {
    max-width: 120px;
    max-height: 116px;
  }

  #gridViewPanel .winners-grid-pet-details {
    padding: 7px 8px;
    border-radius: 9px;
  }

  #gridViewPanel .winners-grid-pet-details strong {
    font-size: 0.72rem;
  }

  #gridViewPanel .winners-grid-pet-details .pet-rarity-label {
    margin-top: 4px;
    font-size: 0.61rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #gridViewPanel .winners-grid-cell,
  #gridViewPanel .winners-grid-pet-image {
    transition: none;
  }
}

/* =========================
   GRID VIEW — QUIET GALLERY
========================= */

#gridViewPanel {
  --gallery-ink: #1d1d1f;
  --gallery-muted: #77727a;
  --gallery-line: #ebe8ec;
  --gallery-pink: #ec2c79;
}

#gridViewPanel .winners-grid-intro {
  min-height: 0;
  display: block;
  margin: 0 auto 30px;
  padding: 0;
  overflow: visible;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#gridViewPanel .winners-grid-intro-copy {
  max-width: 650px;
  margin: 0 auto;
}

#gridViewPanel .winners-grid-kicker {
  margin-bottom: 9px;
  color: var(--gallery-pink);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

#gridViewPanel .winners-grid-intro h2 {
  margin: 0 0 10px;
  color: var(--gallery-ink);
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.055em;
}

#gridViewPanel .winners-grid-intro p {
  max-width: 570px;
  margin: 0 auto;
  color: var(--gallery-muted);
  font-size: 1rem;
  line-height: 1.5;
}

#gridViewPanel .winners-grid-shell {
  width: 100%;
  padding: 0 0 10px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--gallery-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(38, 26, 38, 0.045);
}

#gridViewPanel .winners-grid-toolbar {
  width: min(calc(100vw - 96px), 1428px);
  min-width: 280px;
  padding: 16px 20px 12px;
  color: #9a949d;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gallery-line);
}

#gridViewPanel .winners-grid-axis,
#gridViewPanel .winners-grid-scroll-hint {
  gap: 7px;
}

#gridViewPanel .winners-grid-axis b,
#gridViewPanel .winners-grid-scroll-hint b {
  color: var(--gallery-pink);
  font-size: 0.9rem;
}

#gridViewPanel .winners-grid-axis i {
  display: none;
}

#gridViewPanel .winners-grid-table {
  border-spacing: 0;
  background: #fff;
}

#gridViewPanel .winners-grid-table th,
#gridViewPanel .winners-grid-table td {
  border: 0;
  border-right: 1px solid var(--gallery-line);
  border-bottom: 1px solid var(--gallery-line);
  border-radius: 0;
  background: transparent;
}

#gridViewPanel .winners-grid-table tr:last-child th,
#gridViewPanel .winners-grid-table tr:last-child td {
  border-bottom: 0;
}

#gridViewPanel .winners-grid-table thead th {
  width: 190px;
  min-width: 190px;
  height: 82px;
  padding: 18px 22px;
  text-align: left;
  color: var(--gallery-ink);
  background: #fff;
}

#gridViewPanel .winners-grid-award-header > span {
  min-height: 0;
  display: block;
  color: var(--gallery-ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

#gridViewPanel .winners-grid-table thead .winners-grid-corner {
  width: 104px;
  min-width: 104px;
  padding: 18px 20px;
  color: var(--gallery-ink) !important;
  border-right: 1px solid var(--gallery-line) !important;
  border-bottom: 1px solid var(--gallery-line) !important;
  background: #faf9fa !important;
  box-shadow: 10px 0 18px rgba(35, 24, 35, 0.04) !important;
}

#gridViewPanel .winners-grid-corner-kicker,
#gridViewPanel .winners-grid-row-label span {
  margin-bottom: 4px;
  color: var(--gallery-muted);
  font-size: 0.58rem;
  opacity: 1;
}

#gridViewPanel .winners-grid-corner strong {
  color: var(--gallery-ink);
  font-size: 1.05rem;
}

#gridViewPanel .winners-grid-corner-arrow,
#gridViewPanel .winners-grid-trophy {
  display: none;
}

#gridViewPanel .winners-grid-table tbody tr:nth-child(odd) {
  background: #fff;
}

#gridViewPanel .winners-grid-table tbody tr:nth-child(even) {
  background: #fcfbfc;
}

#gridViewPanel .winners-grid-table .winners-grid-row-label {
  width: 104px;
  min-width: 104px;
  padding: 20px;
  color: var(--gallery-ink) !important;
  border-right: 1px solid var(--gallery-line);
  border-bottom: 1px solid var(--gallery-line);
  background: #faf9fa !important;
  box-shadow: 10px 0 18px rgba(35, 24, 35, 0.04);
}

#gridViewPanel .winners-grid-row-label strong {
  color: var(--gallery-ink);
  font-size: 1.32rem;
  font-weight: 750;
}

#gridViewPanel .winners-grid-table .winners-grid-cell {
  width: 190px;
  min-width: 190px;
  height: 202px;
  padding: 14px 18px 12px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: background-color 170ms ease;
}

#gridViewPanel .winners-grid-table .winners-grid-cell.has-winner:hover {
  border-color: var(--gallery-line);
  background: #fff7fa;
  box-shadow: none;
  transform: none;
}

#gridViewPanel .winners-grid-pet-button {
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 9px;
  overflow: visible;
  border-radius: 10px;
}

#gridViewPanel .winners-grid-pet-media {
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

#gridViewPanel .winners-grid-pet-image {
  width: 100%;
  height: 100%;
  max-width: 142px;
  max-height: 142px;
  filter: drop-shadow(0 8px 7px rgba(40, 29, 39, 0.12));
}

#gridViewPanel .winners-grid-cell.has-winner:hover .winners-grid-pet-image {
  transform: translateY(-3px) scale(1.035);
}

#gridViewPanel .winners-grid-pet-details {
  padding: 0;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#gridViewPanel .winners-grid-pet-details strong {
  color: var(--gallery-ink);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.2;
}

#gridViewPanel .winners-grid-empty {
  color: #d2ced3;
}

#gridViewPanel .winners-grid-empty-x {
  font-size: 1.25rem;
}

@media (max-width: 900px) {
  #gridViewPanel .winners-grid-intro {
    margin-bottom: 25px;
    padding: 0 28px;
  }

  #gridViewPanel .winners-grid-table thead th,
  #gridViewPanel .winners-grid-table .winners-grid-cell {
    width: 172px;
    min-width: 172px;
  }

  #gridViewPanel .winners-grid-table .winners-grid-cell {
    height: 190px;
    padding: 12px 16px 11px;
  }

  #gridViewPanel .winners-grid-pet-image {
    max-width: 132px;
    max-height: 132px;
  }
}

@media (max-width: 600px) {
  #gridViewPanel .winners-grid-intro {
    min-height: 0;
    margin-bottom: 22px;
    padding: 0 18px;
  }

  #gridViewPanel .winners-grid-intro-copy {
    max-width: 100%;
  }

  #gridViewPanel .winners-grid-intro h2 {
    font-size: clamp(2.1rem, 10vw, 2.7rem);
  }

  #gridViewPanel .winners-grid-intro p {
    max-width: 330px;
    font-size: 0.9rem;
  }

  #gridViewPanel .winners-grid-shell {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding-bottom: 8px;
    border-radius: 18px;
  }

  #gridViewPanel .winners-grid-toolbar {
    width: calc(100vw - 40px);
    padding: 13px 14px 10px;
    font-size: 0.62rem;
  }

  #gridViewPanel .winners-grid-axis {
    display: inline-flex;
  }

  #gridViewPanel .winners-grid-table thead th,
  #gridViewPanel .winners-grid-table .winners-grid-cell {
    width: 146px;
    min-width: 146px;
  }

  #gridViewPanel .winners-grid-table thead th {
    height: 76px;
    padding: 14px 15px;
    border-radius: 0;
  }

  #gridViewPanel .winners-grid-award-header > span {
    font-size: 0.7rem;
  }

  #gridViewPanel .winners-grid-table thead .winners-grid-corner,
  #gridViewPanel .winners-grid-table .winners-grid-row-label {
    width: 76px;
    min-width: 76px;
    padding: 14px 12px;
    border-radius: 0;
  }

  #gridViewPanel .winners-grid-corner strong,
  #gridViewPanel .winners-grid-row-label strong {
    font-size: 1.02rem;
  }

  #gridViewPanel .winners-grid-table .winners-grid-cell {
    height: 166px;
    padding: 10px 12px 9px;
    border-radius: 0;
  }

  #gridViewPanel .winners-grid-pet-button {
    gap: 7px;
  }

  #gridViewPanel .winners-grid-pet-image {
    max-width: 114px;
    max-height: 114px;
  }

  #gridViewPanel .winners-grid-pet-details strong {
    font-size: 0.68rem;
  }
}

/* Grid refinements */

#gridViewPanel .winners-grid-title-pet {
  width: clamp(170px, 16vw, 230px);
  height: 165px;
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;
}

#gridViewPanel .winners-grid-shell {
  width: min(1080px, calc(100% - 80px));
  margin-right: auto;
  margin-left: auto;
}

#gridViewPanel .winners-grid-toolbar {
  width: min(calc(100vw - 200px), 1038px);
}

#gridViewPanel .winners-grid-table thead th {
  height: 92px;
  padding: 20px 22px;
  border-bottom: 2px solid #ded9df !important;
  background: #fff8fb;
}

#gridViewPanel .winners-grid-award-header > span {
  color: #3a2134;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

#gridViewPanel .winners-grid-table thead .winners-grid-corner {
  border-bottom: 2px solid #ded9df !important;
  background: #f7f4f6 !important;
}

.winner-modal {
  width: min(640px, calc(100% - 32px));
  max-width: 640px;
  margin: auto;
  padding: 0;
  overflow: visible;
  color: #1d1d1f;
  border: 1px solid rgba(50, 31, 48, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(34, 20, 34, 0.24);
}

.winner-modal::backdrop {
  background: rgba(30, 18, 29, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.winner-modal[open] {
  animation: winner-modal-in 180ms ease-out both;
}

.winner-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: #f3f1f3;
  transition: background-color 150ms ease;
}

.winner-modal-close img {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.72;
  transition: opacity 150ms ease;
}

.winner-modal-close:hover {
  background: #eae7ea;
}

.winner-modal-close:hover img {
  opacity: 1;
}

.winner-modal-close:focus-visible {
  outline: 3px solid rgba(0, 115, 235, 0.42);
  outline-offset: 2px;
}

.winner-modal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 155px;
  align-items: center;
  gap: 32px;
  min-height: 300px;
  padding: 38px 42px;
}

.winner-modal-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.winner-modal-pet-wrap {
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.winner-modal-pet {
  width: 102px;
  height: 102px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 7px rgba(42, 27, 39, 0.13));
}

.winner-modal-identity-copy {
  min-width: 0;
}

.winner-modal-kicker {
  display: block;
  margin-bottom: 8px;
  color: #ec2c79;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.winner-modal h2 {
  margin: 0 0 10px;
  color: #211520;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.winner-modal.has-long-name h2 {
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  line-height: 1.02;
}

.winner-modal-rarity .pet-rarity-label {
  justify-content: flex-start;
  color: #777076;
  font-size: 0.82rem;
}

.winner-modal-rarity .pet-rarity-diamond {
  width: 0.7em;
  height: 0.7em;
  flex-basis: 0.7em;
}

.winner-modal-facts {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.winner-modal-facts div {
  padding-top: 12px;
  border-top: 1px solid #ebe8ec;
}

.winner-modal-facts dt {
  margin-bottom: 4px;
  color: #999198;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.winner-modal-facts dd {
  margin: 0;
  color: #2f2630;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.winner-modal-trophy-wrap {
  min-width: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 50%, #fff5f9 72%, #fff 73%);
}

.winner-modal-trophy {
  width: 136px;
  height: 136px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 10px rgba(55, 30, 48, 0.14));
}

.winner-modal-trophy[hidden] {
  display: none;
}

@keyframes winner-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  #gridViewPanel .winners-grid-shell {
    width: min(700px, calc(100% - 40px));
  }

  #gridViewPanel .winners-grid-toolbar {
    width: min(calc(100vw - 112px), 658px);
  }
}

@media (max-width: 600px) {
  #gridViewPanel .winners-grid-title-pet {
    width: 136px;
    height: 114px;
    margin-bottom: 8px;
  }

  #gridViewPanel .winners-grid-shell {
    width: calc(100% - 12px);
    margin-right: auto;
    margin-left: auto;
  }

  #gridViewPanel .winners-grid-toolbar {
    width: calc(100vw - 64px);
  }

  #gridViewPanel .winners-grid-table thead th {
    height: 86px;
  }

  #gridViewPanel .winners-grid-award-header > span {
    font-size: 0.82rem;
  }

  .winner-modal {
    width: min(360px, calc(100% - 24px));
    border-radius: 22px;
  }

  .winner-modal-content {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 18px 14px;
    min-height: 0;
    padding: 38px 24px 26px;
  }

  .winner-modal-copy {
    display: contents;
  }

  .winner-modal-identity {
    grid-column: 1 / -1;
    gap: 14px;
    padding-right: 24px;
  }

  .winner-modal-pet-wrap {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
    border-radius: 18px;
  }

  .winner-modal-pet {
    width: 69px;
    height: 69px;
  }

  .winner-modal h2 {
    margin-bottom: 7px;
    font-size: 1.75rem;
  }

  .winner-modal.has-long-name h2 {
    font-size: 1.35rem;
    line-height: 1.05;
  }

  .winner-modal-facts {
    grid-column: 1;
    align-self: center;
    gap: 11px;
    margin: 0;
  }

  .winner-modal-trophy-wrap {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
  }

  .winner-modal-trophy {
    width: 100px;
    height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .winner-modal[open] {
    animation: none;
  }
}

/* Grid axis emphasis */

#gridViewPanel .winners-grid-table thead th,
#gridViewPanel .winners-grid-table thead .winners-grid-corner,
#gridViewPanel .winners-grid-table .winners-grid-row-label {
  background: #fff0f6 !important;
}

#gridViewPanel .winners-grid-award-header {
  vertical-align: middle !important;
}

#gridViewPanel .winners-grid-award-header > span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.02rem;
}

@media (max-width: 600px) {
  #gridViewPanel .winners-grid-award-header > span {
    font-size: 0.88rem;
  }
}

#gridViewPanel .winners-grid-toolbar {
  width: 100% !important;
  max-width: none;
  box-sizing: border-box;
}

#gridViewPanel .winners-grid-shell {
  padding-bottom: 0;
  scrollbar-width: thin;
  scrollbar-color: #cfc7cc #f6f3f5;
}

#gridViewPanel .winners-grid-shell::-webkit-scrollbar {
  height: 7px;
}

#gridViewPanel .winners-grid-shell::-webkit-scrollbar-track {
  background: #f6f3f5;
}

#gridViewPanel .winners-grid-shell::-webkit-scrollbar-thumb {
  border: 0;
  border-radius: 999px;
  background: #cfc7cc;
}

#gridViewPanel .winners-grid-shell::-webkit-scrollbar-thumb:hover {
  background: #b9afb6;
}

/* Responsive winners curtain hero */

@media (max-width: 1200px) {
  .winners-hero {
    min-height: clamp(420px, 46vw, 560px);
    padding-top: 60px;
  }

  .winners-hero::after {
    height: 74px;
  }
}

@media (max-width: 900px) {
  .winners-hero {
    min-height: clamp(340px, 45vw, 420px);
    padding-top: 50px;
  }

  .winners-hero::after {
    height: 64px;
  }
}

@media (max-width: 700px) {
  .winners-hero {
    min-height: clamp(300px, 70vw, 340px);
    padding-top: 32px;
  }

  .winners-hero::after {
    height: 48px;
  }

  .winners-sign-wrap {
    transform: translateY(8px);
  }
}

/* Larger stage/grid view switch */

.view-toggle {
  padding: 5px;
}

.view-btn {
  min-width: 150px;
  padding: 13px 30px;
  font-size: 1.15rem;
}

@media (max-width: 600px) {
  .view-btn {
    min-width: 132px;
    padding: 12px 22px;
    font-size: 1.05rem;
  }
}

/* Staggered pets in the stage-view controls card. */
.winners-copy-pets {
  position: relative;
  width: 100%;
  height: 112px;
  pointer-events: none;
}

.winners-copy-pets .winners-copy-icon {
  width: clamp(92px, 8vw, 112px);
  margin: 0;
  filter: none;
}

@media (max-width: 600px) {
  .winners-copy-pets {
    height: 98px;
  }

  .winners-copy-pets .winners-copy-icon {
    width: 92px;
  }
}
