Here is the complete, full front.css file.
/* Gaming Station Champions — v3.0 Premium Hall of Fame Frontend */

.gsc-wrap {
  --gold: #f6b91b;
  --gold-soft: #ffd968;
  --ink: #07090d;
  --panel: #0d1118;
  --panel2: #121821;
  --muted: #8d96a3;
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 24px auto;
  padding: 44px 22px 58px;
  border: 1px solid rgba(246, 185, 27, 0.2);
  border-radius: 32px;
  background: radial-gradient(circle at 50% -10%, rgba(246, 185, 27, 0.25), transparent 45%),
              linear-gradient(180deg, #0d1117 0%, #05070a 100%);
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 0 50px rgba(246, 185, 27, 0.1), 0 20px 60px rgba(0, 0, 0, 0.8);
}

.gsc-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.025) 50%, transparent 65%);
  opacity: 0.55;
}

.gsc-wrap * {
  box-sizing: border-box;
}

.gsc-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.18;
}

.gsc-glow-one {
  width: 380px;
  height: 380px;
  background: #b47700;
  top: -250px;
  left: -140px;
}

.gsc-glow-two {
  width: 340px;
  height: 340px;
  background: #6d4800;
  right: -180px;
  bottom: -180px;
}

.gsc-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 auto 28px;
  max-width: 760px;
}

.gsc-crown {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border: 1px solid rgba(255, 218, 105, 0.45);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffe17b 0%, #f3b51a 52%, #c98200 100%);
  font-size: 39px;
  box-shadow: 0 18px 45px rgba(246, 185, 27, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.gsc-eyebrow {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3.5px;
  color: #d5a62f;
  margin-bottom: 8px;
}

.gsc-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.gsc-header p {
  margin: 12px 0 0;
  color: #818a97;
  font-size: 14px;
  line-height: 1.55;
}

.gsc-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  max-width: 520px;
  margin: 0 auto 24px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(17, 21, 28, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.gsc-tab {
  min-width: 0;
  border: 0;
  border-radius: 12px;
  padding: 13px 12px;
  background: transparent;
  color: #8f97a4;
  font-weight: 850;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.gsc-tab:hover {
  color: #fff;
}

.gsc-tab span {
  margin-right: 6px;
}

.gsc-tab.is-active {
  color: #000;
  background: linear-gradient(135deg, #ffe17a 0%, #f6b91b 50%, #c98200 100%);
  font-weight: 900;
  box-shadow: 0 0 20px rgba(246, 185, 27, 0.4);
  transform: translateY(-1px);
}

.gsc-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.gsc-list-item {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 17px 18px;
  background: linear-gradient(180deg, rgba(19, 24, 32, 0.96), rgba(12, 16, 22, 0.96));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gsc-list-item:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(246, 185, 27, 0.5);
  background: linear-gradient(180deg, #171d26, #10151c);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(246, 185, 27, 0.15);
}

.gsc-list-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gsc-list-item.is-hidden {
  display: none;
}

.gsc-list-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
}

.gsc-league-name {
  min-width: 0;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.05px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gsc-champion-name {
  flex-shrink: 0;
  color: #f5cc59;
  font-size: 12px;
  font-weight: 850;
}

.gsc-list-arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(246, 185, 27, 0.2);
  border-radius: 50%;
  background: rgba(246, 185, 27, 0.08);
  color: #ffd86c;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease;
}

.gsc-list-item:hover .gsc-list-arrow {
  transform: translateX(3px);
  background: rgba(246, 185, 27, 0.25);
  color: #fff;
}

.gsc-empty {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 45px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  color: #7f8793;
  background: rgba(255, 255, 255, 0.02);
}

.gsc-empty.is-hidden {
  display: none;
}

.gsc-dialog {
  width: min(960px, calc(100vw - 24px));
  max-height: 91vh;
  padding: 0;
  border: 1px solid rgba(246, 185, 27, 0.25);
  border-radius: 26px;
  background: #080b10;
  color: #fff;
  overflow: auto;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.85);
}

.gsc-dialog[open] {
  animation: gscPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes gscPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gsc-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(9px);
}

.gsc-dialog-shell {
  position: relative;
  padding: 24px;
}

.gsc-dialog-close {
  position: absolute;
  z-index: 5;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(5, 7, 10, 0.75);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: 0.18s ease;
}

.gsc-dialog-close:hover {
  background: rgba(246, 185, 27, 0.2);
  border-color: rgba(246, 185, 27, 0.5);
  color: #ffd866;
}

.gsc-dialog-head {
  padding: 3px 55px 19px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 19px;
}

.gsc-dialog-kicker {
  color: #d5a62f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 7px;
}

.gsc-dialog h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 4vw, 31px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.gsc-dialog-champion {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
}

.gsc-dialog-champion span {
  color: #727b87;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 900;
}

.gsc-dialog-champion strong {
  color: #ffd45f;
  font-size: 15px;
}

.gsc-dialog-season {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #9ca4af;
  font-size: 9px;
  font-weight: 850;
}

.gsc-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.gsc-detail-grid.has-history {
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
}

.gsc-detail-poster-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: #0c1016;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
}

.gsc-detail-poster {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: #07090d;
}

.gsc-detail-placeholder {
  aspect-ratio: 4/5;
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 25%, rgba(246, 185, 27, 0.2), transparent 37%),
              linear-gradient(135deg, #151a23, #090c11);
  color: #8d95a1;
  font-size: 52px;
}

.gsc-history-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #10151d, #0c1016);
  padding: 18px;
}

.gsc-history-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #d1a126;
  margin-bottom: 17px;
}

.gsc-history-title:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 185, 27, 0.1);
}

.gsc-history {
  padding: 2px 0 0;
}

.gsc-reign {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 0 0 19px;
}

.gsc-reign:not(:last-child):before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: -2px;
  width: 1px;
  background: linear-gradient(180deg, rgba(246, 185, 27, 0.32), rgba(246, 185, 27, 0.08));
}

.gsc-reign-dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 3px;
  border-radius: 50%;
  background: #555e69;
  border: 2px solid #10151d;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.gsc-reign.is-current .gsc-reign-dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 185, 27, 0.2);
}

.gsc-reign small {
  display: block;
  color: #b68a24;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gsc-reign strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.gsc-reign span {
  display: block;
  margin-top: 3px;
  color: #858e9a;
  font-size: 11px;
  line-height: 1.45;
}

.gsc-reign em {
  display: inline-block;
  margin-top: 7px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(246, 185, 27, 0.11);
  color: #ffd866;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.8px;
}

@media (max-width: 720px) {
  .gsc-wrap {
    margin: 8px auto;
    padding: 31px 12px 42px;
    border-radius: 23px;
  }
  .gsc-crown {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    font-size: 31px;
  }
  .gsc-header p {
    padding: 0 12px;
    line-height: 1.5;
  }
  .gsc-tabs {
    margin-bottom: 20px;
  }
  .gsc-tab {
    padding: 12px 7px;
    font-size: 12px;
  }
  .gsc-tab span {
    margin-right: 3px;
  }
  .gsc-list-item {
    padding: 15px 14px;
  }
  .gsc-list-copy {
    display: block;
  }
  .gsc-league-name {
    display: block;
    font-size: 14px;
  }
  .gsc-champion-name {
    display: block;
    margin-top: 4px;
    font-size: 11px;
  }
  .gsc-dialog {
    width: calc(100vw - 14px);
    max-height: 94vh;
    border-radius: 20px;
  }
  .gsc-dialog-shell {
    padding: 17px;
  }
  .gsc-dialog-head {
    padding-right: 46px;
    margin-bottom: 15px;
  }
  .gsc-detail-grid.has-history {
    grid-template-columns: 1fr;
  }
  .gsc-detail-poster {
    max-height: none;
  }
  .gsc-dialog-champion {
    display: block;
  }
  .gsc-dialog-champion strong {
    display: block;
    margin-top: 3px;
  }
}

@media (max-width: 390px) {
  .gsc-tab {
    font-size: 11px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .gsc-tab span {
    display: none;
  }
}

