﻿:root {
  --bg: #030811;
  --bg-soft: #0a1320;
  --text: #e9edf8;
  --muted: rgba(226, 232, 246, 0.76);
  --line: rgba(158, 190, 255, 0.16);
  --line-strong: rgba(158, 190, 255, 0.3);
  --chip: rgba(38, 76, 131, 0.86);
  --chip-border: rgba(123, 177, 255, 0.48);
  --accent: #cdea76;
  --gold: #f4c86f;
}

.hub-page {
  display: grid;
  gap: 22px;
}

.hub-searchbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(760px, 100%);
}

.hub-searchbar input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 12, 20, 0.72);
  color: #f7fbff;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.hub-searchbar input:focus {
  border-color: rgba(83, 226, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(83, 226, 255, 0.12);
}

.hub-searchbar button,
.hub-result {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
}

.hub-searchbar button {
  padding: 0 20px;
  color: #061018;
  background: #70f1ff;
  font-weight: 800;
  text-transform: uppercase;
}

.hub-search-results {
  display: grid;
  gap: 8px;
  width: min(820px, 100%);
}

.hub-result {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  text-align: left;
  padding: 12px 14px;
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-result:hover {
  border-color: rgba(112, 241, 255, 0.45);
  background: rgba(112, 241, 255, 0.08);
}

.hub-result span {
  color: rgba(229, 239, 255, 0.72);
  font-size: 0.9rem;
}

.hub-player-panel,
.hub-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(8, 14, 24, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.hub-player-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.hub-player-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hub-player-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  color: #061018;
  background: linear-gradient(135deg, #70f1ff, #8dffb5);
  font: 900 2rem/1 Montserrat, sans-serif;
}

.hub-player-head h2 {
  margin: 4px 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.hub-player-head p,
.hub-muted {
  margin: 0;
  color: rgba(229, 239, 255, 0.72);
}

.hub-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hub-stat-card {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hub-stat-card span,
.hub-card-head,
.hub-mini-row span {
  color: rgba(229, 239, 255, 0.68);
}

.hub-stat-card strong {
  color: #ffffff;
  font-size: 1.25rem;
}

.hub-two-col,
.hub-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hub-card {
  padding: 16px;
}

.hub-card h3 {
  margin: 0 0 12px;
}

.hub-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hub-card-head a {
  color: #70f1ff;
  text-decoration: none;
}

.hub-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hub-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  color: rgba(229, 239, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.hub-badge.is-earned {
  color: #061018;
  background: #8dffb5;
  border-color: transparent;
  font-weight: 800;
}

.hub-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hub-mini-row {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #f7fbff;
  text-decoration: none;
}

.hub-mini-row:last-child {
  border-bottom: 0;
}

.hub-mini-row strong {
  color: #ffffff;
}

@media (max-width: 760px) {
  .hub-searchbar,
  .hub-two-col,
  .hub-section-grid,
  .hub-stat-grid {
    grid-template-columns: 1fr;
  }

  .hub-searchbar button {
    min-height: 44px;
  }

  .hub-result,
  .hub-player-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(80rem 26rem at 16% 6%, rgba(52, 181, 125, 0.18), transparent 65%),
    radial-gradient(70rem 26rem at 90% 14%, rgba(79, 109, 255, 0.2), transparent 70%),
    linear-gradient(180deg, #060d18 0%, #030811 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(132, 162, 232, 0.08) 0,
      rgba(132, 162, 232, 0.08) 1px,
      transparent 1px,
      transparent 84px
    );
  opacity: 0.35;
  z-index: -1;
}

.home-shell {
  width: min(1420px, 94vw);
  margin: 0 auto;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 20, 0.92);
  backdrop-filter: blur(10px);
}

.home-header-inner {
  min-height: 108px;
  padding: 0.48rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.home-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: inherit;
  text-decoration: none;
}

.online-pill {
  min-width: 62px;
  border-radius: 17px;
  border: 1px solid rgba(129, 162, 255, 0.34);
  background: linear-gradient(180deg, rgba(34, 48, 90, 0.98), rgba(25, 34, 69, 0.98));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.45rem;
}

.online-pill strong {
  font-size: 1rem;
  line-height: 1;
}

.online-pill span {
  margin-top: 0.1rem;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: #9bc2ff;
}

.brand-logo-wrap {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.brand-sub {
  margin-top: 0.2rem;
  max-width: 250px;
  font-size: 0.75rem;
  color: rgba(228, 235, 246, 0.78);
}

.brand-mini-row {
  margin-top: 0.42rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.brand-mini {
  border-radius: 999px;
  border: 1px solid rgba(123, 255, 188, 0.34);
  background: rgba(109, 241, 170, 0.12);
  color: #dcf8ea;
  padding: 0.24rem 0.58rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-mini.is-store {
  border-color: rgba(250, 210, 127, 0.35);
  background: rgba(250, 210, 127, 0.1);
  color: #ffe8b7;
}

.home-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.home-nav a {
  color: rgba(233, 237, 248, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.28rem 0.4rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-nav a:hover,
.home-nav a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.home-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.home-search input {
  width: 198px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 0.5rem 0.68rem;
  font: inherit;
}

.home-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.home-user {
  min-width: 138px;
  padding: 0.42rem 0.6rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.home-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, #7146d5, #35cf7a);
}

.home-user-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.home-user-copy strong {
  font-size: 0.9rem;
}

.home-user-copy span {
  font-size: 0.67rem;
  color: rgba(236, 241, 251, 0.76);
}

.home-main {
  padding: 0.8rem 0 2.2rem;
}

.home-stage {
  position: relative;
}

.stage-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.stage-meta-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(230, 236, 249, 0.84);
  padding: 0.32rem 0.72rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.stage-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.top-dots {
  display: inline-flex;
  gap: 0.92rem;
}

.top-dots span {
  width: 0.86rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #f8fbff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.24);
}

.top-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(242, 246, 255, 0.82);
  padding: 0.28rem 0.6rem;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-official {
  letter-spacing: 0.22em;
  font-size: 0.92rem;
  color: rgba(233, 238, 249, 0.88);
}

.chips-row {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.58rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
}

.chip {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  background: var(--chip);
  color: #dcecff;
  padding: 0.38rem 0.76rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.event-banner {
  margin-top: 0.98rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(30rem 20rem at 84% 28%, rgba(255, 82, 180, 0.26), transparent 62%),
    radial-gradient(25rem 18rem at 14% 74%, rgba(178, 255, 122, 0.14), transparent 70%),
    linear-gradient(135deg, rgba(30, 27, 35, 0.98), rgba(22, 20, 28, 0.98));
  box-shadow: 0 26px 62px rgba(3, 7, 14, 0.44);
  padding: clamp(1rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.2rem;
  align-items: center;
}

.event-medallion {
  width: min(100%, 270px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at center, rgba(43, 44, 52, 0.98), rgba(9, 10, 13, 1) 75%);
  display: grid;
  place-items: center;
  position: relative;
}

.event-logo {
  width: 82%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.event-server {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.84rem;
  color: rgba(240, 244, 252, 0.78);
}

.event-copy {
  text-align: center;
}

.event-kicker {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.38rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.event-copy h1 {
  margin: 0.72rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.event-copy h1 span {
  color: var(--accent);
}

.event-divider {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.event-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 233, 119, 0.88), transparent);
}

.event-divider strong {
  font-size: 2.6rem;
  line-height: 1;
}

.event-sign {
  margin-top: 0.45rem;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.event-copy p {
  margin: 0.78rem auto 0;
  max-width: 640px;
  color: rgba(235, 240, 251, 0.86);
  font-size: clamp(0.95rem, 1.8vw, 1.18rem);
  line-height: 1.5;
}

.event-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffd88e, #f2be62);
  color: #1b1408;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hub-panel {
  margin-top: 1.05rem;
  border-radius: 30px;
  border: 1px solid rgba(131, 154, 255, 0.24);
  background:
    radial-gradient(26rem 15rem at 12% 16%, rgba(95, 168, 255, 0.2), transparent 68%),
    radial-gradient(28rem 15rem at 84% 20%, rgba(90, 69, 177, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(11, 18, 38, 0.98), rgba(5, 10, 24, 0.98));
  box-shadow: 0 28px 62px rgba(4, 8, 18, 0.5);
  padding: clamp(1rem, 2.4vw, 1.6rem);
}

.hub-head h2 {
  margin: 0.62rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hub-head p {
  margin: 0.62rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hub-kicker {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.34rem 0.74rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hub-carousel {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: stretch;
}

.hub-arrow {
  width: 56px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(47, 58, 91, 0.9), rgba(33, 43, 71, 0.95));
  color: #f6f9ff;
  font: inherit;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.hub-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.hub-track {
  display: flex;
  transition: transform 0.35s ease;
}

.hub-slide {
  flex: 0 0 100%;
  min-height: 340px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1rem, 2.4vw, 1.9rem);
  background: linear-gradient(135deg, rgba(38, 32, 48, 0.98), rgba(27, 22, 37, 0.98));
}

.hub-slide.is-gold {
  background:
    radial-gradient(20rem 12rem at 88% 20%, rgba(255, 185, 94, 0.22), transparent 62%),
    linear-gradient(135deg, rgba(48, 36, 25, 0.98), rgba(31, 24, 20, 0.98));
}

.hub-slide.is-violet {
  background:
    radial-gradient(20rem 12rem at 88% 20%, rgba(255, 104, 188, 0.22), transparent 62%),
    linear-gradient(135deg, rgba(55, 29, 50, 0.98), rgba(34, 22, 35, 0.98));
}

.hub-slide.is-cyan {
  background:
    radial-gradient(20rem 12rem at 88% 20%, rgba(107, 210, 255, 0.22), transparent 62%),
    linear-gradient(135deg, rgba(30, 52, 62, 0.98), rgba(20, 33, 42, 0.98));
}

.hub-slide.is-pink {
  background:
    radial-gradient(20rem 12rem at 88% 20%, rgba(255, 79, 216, 0.2), transparent 62%),
    linear-gradient(135deg, rgba(53, 26, 52, 0.98), rgba(27, 21, 35, 0.98));
}

.hub-slide.is-green {
  background:
    radial-gradient(20rem 12rem at 88% 20%, rgba(167, 255, 91, 0.18), transparent 62%),
    linear-gradient(135deg, rgba(24, 53, 42, 0.98), rgba(18, 30, 28, 0.98));
}

.hub-slide-tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.34rem 0.74rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hub-slide h3 {
  margin: 0.78rem 0 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hub-slide p {
  margin: 0.82rem 0 0;
  max-width: 640px;
  color: rgba(237, 242, 251, 0.82);
  font-size: clamp(0.96rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.slide-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  border-radius: 15px;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(180deg, #ffd88e, #f2be62);
  color: #191306;
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  text-decoration: none;
}

.hub-foot {
  margin-top: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#hubCounter {
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 136, 0.38);
  background: rgba(255, 215, 136, 0.08);
  color: #ffd889;
  padding: 0.32rem 0.74rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hub-dots {
  display: inline-flex;
  gap: 0.48rem;
}

.hub-dot {
  width: 0.88rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.hub-dot.is-active {
  background: #ffd889;
  border-color: rgba(255, 216, 137, 0.82);
}

.news-tile-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.news-tile {
  min-width: 0;
  min-height: 128px;
  border: 1px solid rgba(77, 243, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #f7fbff;
  text-align: left;
  padding: 12px;
  cursor: pointer;
  display: grid;
  align-content: start;
  gap: 6px;
  font: inherit;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.news-tile:hover,
.news-tile.is-active {
  transform: translateY(-2px);
  border-color: rgba(167, 255, 91, 0.38);
  background: rgba(77, 243, 255, 0.08);
  box-shadow: 0 12px 28px rgba(77, 243, 255, 0.12);
}

.news-tile span {
  color: var(--gamer-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-tile strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  line-height: 1.05;
}

.news-tile small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(229, 239, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.home-insights {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.insight-box {
  border-radius: 24px;
  border: 1px solid rgba(131, 154, 255, 0.2);
  background:
    radial-gradient(20rem 10rem at 12% 12%, rgba(95, 168, 255, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(12, 20, 39, 0.94), rgba(8, 14, 30, 0.96));
  box-shadow: 0 18px 44px rgba(4, 8, 17, 0.45);
  padding: 1rem;
}

.insight-box.live-box {
  background:
    radial-gradient(18rem 10rem at 85% 12%, rgba(122, 255, 178, 0.2), transparent 72%),
    linear-gradient(180deg, rgba(10, 24, 35, 0.95), rgba(7, 16, 25, 0.96));
}

.insight-box.archive-box {
  background:
    radial-gradient(20rem 10rem at 85% 16%, rgba(255, 177, 97, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(24, 20, 29, 0.95), rgba(15, 12, 20, 0.96));
}

.insight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.insight-kicker,
.insight-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.64rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.insight-chip {
  color: rgba(220, 236, 255, 0.88);
}

.insight-box h2 {
  margin: 0.65rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.18rem, 2.1vw, 1.65rem);
  letter-spacing: -0.02em;
}

.insight-box p {
  margin: 0.55rem 0 0;
  color: rgba(222, 233, 251, 0.8);
  line-height: 1.55;
}

.live-cards {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.live-card {
  border-radius: 12px;
  border: 1px solid rgba(145, 215, 255, 0.32);
  background: rgba(33, 77, 105, 0.24);
  padding: 0.54rem;
}

.live-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.04rem;
}

.live-card span {
  display: block;
  margin-top: 0.22rem;
  color: rgba(223, 241, 255, 0.82);
  font-size: 0.84rem;
}

.live-card small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(198, 224, 248, 0.72);
  font-size: 0.74rem;
}

.live-leaders {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.live-leaders li {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.42rem 0.56rem;
  color: rgba(231, 242, 255, 0.88);
  font-size: 0.86rem;
}

.insight-actions {
  margin-top: 0.76rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.insight-link {
  border-radius: 12px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.56rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ecf3ff;
  background: rgba(255, 255, 255, 0.08);
}

.insight-link.is-primary {
  border-color: rgba(255, 216, 137, 0.56);
  background: linear-gradient(180deg, #ffd88e, #f2be62);
  color: #1b1408;
}

.calendar-list,
.archive-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.5rem;
}

.calendar-item,
.archive-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem;
}

.calendar-item-head,
.archive-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.48rem;
}

.calendar-item h3,
.archive-item h3 {
  margin: 0;
  font-size: 0.95rem;
}

.calendar-item p,
.archive-item p {
  margin: 0.34rem 0 0;
  font-size: 0.84rem;
  color: rgba(224, 236, 253, 0.8);
}

.calendar-item-time,
.archive-item-status {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(230, 240, 255, 0.86);
  white-space: nowrap;
}

.calendar-item-link,
.archive-item-link {
  margin-top: 0.38rem;
  display: inline-flex;
  color: #cfe6ff;
  text-decoration: underline;
  text-underline-offset: 0.16rem;
  font-size: 0.8rem;
}

.home-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 22, 42, 0.86);
}

.home-footer .home-shell {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  text-align: center;
}

.home-footer p {
  margin: 0;
  color: #b6cef7;
  font-size: 1.04rem;
}

.home-footer span {
  color: rgba(188, 198, 221, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 1260px) {
  .home-header-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0.6rem 0;
  }

  .home-nav {
    justify-content: flex-start;
  }

  .home-header-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .event-banner {
    grid-template-columns: 1fr;
  }

  .event-medallion {
    width: min(100%, 220px);
  }

  .hub-carousel {
    grid-template-columns: 1fr;
  }

  .hub-arrow {
    display: none;
  }

  .home-insights {
    grid-template-columns: 1fr;
  }

  .live-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-shell {
    width: min(1420px, 95vw);
  }

  .online-pill {
    display: none;
  }

  .brand-sub,
  .brand-mini-row,
  .home-search {
    display: none;
  }

  .brand-title {
    font-size: 1.55rem;
  }

  .stage-meta-row {
    flex-wrap: wrap;
  }

  .stage-top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-official {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
  }

  .event-copy h1,
  .hub-slide h3 {
    font-size: clamp(1.8rem, 9vw, 2.9rem);
  }

  .event-cta,
  .slide-cta {
    width: 100%;
    min-width: 0;
  }
}

/* Internal pages */
.subpage-hero {
  margin-top: 0.95rem;
  border-radius: 28px;
  border: 1px solid rgba(131, 154, 255, 0.2);
  background:
    radial-gradient(24rem 14rem at 14% 16%, rgba(95, 168, 255, 0.18), transparent 68%),
    radial-gradient(24rem 15rem at 86% 22%, rgba(155, 96, 220, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(11, 18, 38, 0.98), rgba(5, 10, 24, 0.98));
  box-shadow: 0 28px 62px rgba(4, 8, 18, 0.44);
  padding: clamp(1rem, 2.5vw, 1.7rem);
}

.subpage-kicker {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.35rem 0.78rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.subpage-title {
  margin: 0.72rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.subpage-subtitle {
  margin: 0.72rem 0 0;
  max-width: 920px;
  color: var(--muted);
  font-size: clamp(0.97rem, 1.55vw, 1.18rem);
  line-height: 1.6;
}

.subpage-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.subpage-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(39, 47, 75, 0.75), rgba(27, 34, 60, 0.86));
  padding: 1rem;
}

.subpage-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.subpage-card p {
  margin: 0.55rem 0 0;
  color: rgba(231, 237, 250, 0.74);
  line-height: 1.55;
  font-size: 0.94rem;
}

.subpage-mini-list {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
}

.subpage-mini-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.55rem;
  align-items: baseline;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.32rem 0.46rem;
}

.subpage-mini-list strong {
  color: #9fd2ff;
  font-size: 0.8rem;
}

.subpage-mini-list span {
  color: rgba(235, 241, 252, 0.8);
  font-size: 0.82rem;
  line-height: 1.4;
}

.top-leader-line {
  margin: 0.55rem 0 0;
  color: rgba(231, 237, 250, 0.74);
  line-height: 1.55;
  font-size: 0.94rem;
}

.player-link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #cce5ff;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(171, 206, 255, 0.55);
  text-underline-offset: 0.14rem;
}

.player-link:hover {
  color: #ffffff;
}

.player-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.player-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.78);
  backdrop-filter: blur(4px);
}

.player-modal-card {
  position: relative;
  width: min(980px, 92vw);
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  border-radius: 20px;
  border: 1px solid rgba(139, 165, 242, 0.34);
  background:
    radial-gradient(26rem 18rem at 12% 8%, rgba(95, 168, 255, 0.17), transparent 70%),
    radial-gradient(20rem 14rem at 92% 10%, rgba(189, 123, 255, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(14, 22, 42, 0.98), rgba(8, 13, 28, 0.99));
  box-shadow: 0 32px 78px rgba(1, 4, 11, 0.7);
  padding: 1rem;
}

.player-modal-close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #e9f2ff;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.player-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-right: 2.3rem;
}

.player-avatar {
  width: 78px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid rgba(156, 201, 255, 0.48);
  background: linear-gradient(145deg, rgba(58, 90, 158, 0.88), rgba(90, 51, 149, 0.88));
  color: #f7fbff;
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.player-head-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.player-head-copy p {
  margin: 0.35rem 0 0;
  color: rgba(216, 227, 248, 0.8);
}

.player-head-chips {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.player-head-chips span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  padding: 0.3rem 0.72rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.player-tabs {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.player-tab {
  border: 1px solid rgba(140, 164, 224, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(227, 236, 255, 0.86);
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.42rem 0.78rem;
  cursor: pointer;
}

.player-tab.is-active {
  border-color: rgba(255, 215, 135, 0.55);
  background: rgba(255, 215, 135, 0.16);
  color: #ffe0a2;
}

.player-panel-wrap {
  margin-top: 0.9rem;
}

.player-panel {
  display: none;
}

.player-panel.is-active {
  display: block;
}

.player-info-grid,
.player-season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.62rem;
}

.player-info-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(31, 42, 72, 0.68), rgba(21, 30, 54, 0.78));
  padding: 0.72rem;
}

.player-info-card h3 {
  margin: 0;
  color: rgba(207, 223, 251, 0.88);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.player-info-card p {
  margin: 0.5rem 0 0;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.45;
}

.player-info-card-wide {
  grid-column: 1 / -1;
}

.player-badge-list {
  margin-top: 0.48rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.player-badge-chip {
  border-radius: 999px;
  border: 1px solid rgba(141, 198, 255, 0.38);
  background: rgba(72, 118, 186, 0.2);
  color: #e4f1ff;
  padding: 0.28rem 0.6rem;
  font-size: 0.8rem;
  line-height: 1.2;
}

.player-badge-chip.is-empty {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(221, 232, 252, 0.76);
}

.player-stats-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.player-stats-list li {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.58rem 0.66rem;
}

.player-stats-list strong {
  display: block;
  color: #ebf3ff;
  font-size: 0.9rem;
}

.player-stats-list span {
  display: block;
  color: rgba(214, 229, 252, 0.83);
  margin-top: 0.2rem;
}

.player-empty-panel {
  min-height: 96px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.subpage-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.subpage-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0.9rem;
  color: rgba(233, 239, 251, 0.85);
}

.subpage-list li strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.season-selector-wrap {
  margin-top: 1rem;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(208, 214, 226, 0.6);
  background: #e8ebf1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.season-selector-title {
  margin: 0;
  padding: 0.9rem 1rem;
  color: #2a3241;
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: #f0f2f6;
  border-bottom: 1px solid rgba(180, 190, 208, 0.55);
}

.season-selector {
  display: grid;
  gap: 1px;
  background: rgba(184, 193, 208, 0.7);
}

.season-option {
  width: 100%;
  border: 0;
  background: #e6eaf1;
  color: #2d3544;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.95rem 1rem;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.season-option:hover {
  background: #dde4ee;
}

.season-option.is-active {
  background: #d4dce9;
  color: #1d2535;
}

.season-option-label {
  text-align: left;
}

.season-option-arrow {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.72;
}

.season-panel {
  margin-top: 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(145, 167, 255, 0.25);
  background: linear-gradient(180deg, rgba(25, 34, 63, 0.58), rgba(14, 22, 42, 0.72));
  padding: 0.95rem;
}

.season-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.season-panel-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2.7vw, 1.9rem);
  letter-spacing: -0.02em;
}

.season-chip-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.season-status-chip,
.season-period-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.32rem 0.72rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.season-status-chip {
  border-color: rgba(255, 214, 126, 0.58);
  background: rgba(255, 214, 126, 0.12);
  color: #ffd27f;
}

.season-status-chip.is-live {
  border-color: rgba(123, 250, 201, 0.55);
  background: rgba(111, 233, 185, 0.14);
  color: #88f5cf;
}

.season-period-chip {
  color: rgba(214, 228, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
}

.season-summary {
  margin: 0.62rem 0 0;
  color: rgba(223, 233, 251, 0.84);
  line-height: 1.6;
}

.season-details-grid {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.season-subcard {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.72rem;
}

.season-subcard h3 {
  margin: 0;
  font-size: 0.98rem;
}

.season-rows {
  margin: 0.58rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.season-rows li {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.48rem 0.55rem;
}

.season-rows li strong {
  display: block;
  color: #ecf3ff;
  font-size: 0.86rem;
  margin-bottom: 0.14rem;
}

.season-rows li span {
  color: rgba(228, 237, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

.season-note {
  margin: 0.72rem 0 0;
  color: rgba(190, 206, 236, 0.82);
  font-size: 0.9rem;
}

.season-panel.is-legacy {
  border-color: rgba(246, 172, 66, 0.42);
  background:
    radial-gradient(24rem 17rem at 14% 16%, rgba(255, 175, 55, 0.18), transparent 68%),
    radial-gradient(24rem 16rem at 76% 18%, rgba(255, 90, 24, 0.11), transparent 74%),
    linear-gradient(180deg, rgba(26, 15, 6, 0.96), rgba(19, 11, 4, 0.96));
}

.season-legacy-view {
  display: grid;
  gap: 0.85rem;
}

.season-legacy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.season-legacy-kicker {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 132, 0.42);
  background: rgba(255, 208, 132, 0.12);
  padding: 0.34rem 0.75rem;
  color: #ffdb9f;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.season-legacy-head h2 {
  margin: 0.58rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 4.7vw, 3rem);
  letter-spacing: -0.02em;
}

.season-legacy-head p {
  margin: 0.55rem 0 0;
  max-width: 760px;
  color: rgba(244, 228, 198, 0.84);
  line-height: 1.55;
}

.season-legacy-archive {
  border-radius: 16px;
  border: 1px solid rgba(255, 208, 132, 0.3);
  background: rgba(41, 24, 10, 0.58);
  color: rgba(255, 227, 182, 0.92);
  padding: 0.6rem 0.95rem;
  text-align: right;
  line-height: 1.45;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.season-legacy-grid {
  display: grid;
  grid-template-columns: 1.75fr 0.9fr;
  gap: 0.72rem;
}

.season-legacy-main h3,
.season-legacy-meme h3,
.season-legacy-memory h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffe2ac;
}

.season-legacy-groups {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.58rem;
}

.legacy-group {
  border-radius: 14px;
  border: 1px solid rgba(250, 190, 96, 0.28);
  background: linear-gradient(180deg, rgba(70, 44, 16, 0.52), rgba(50, 29, 11, 0.42));
  padding: 0.62rem;
}

.legacy-group h4 {
  margin: 0;
  font-size: 1.02rem;
  color: #fff1d3;
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.legacy-group ul {
  margin: 0.52rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.legacy-group li {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(250, 236, 206, 0.94);
  padding: 0.42rem 0.56rem;
}

.legacy-group.is-violet {
  border-color: rgba(185, 132, 255, 0.34);
  background: linear-gradient(180deg, rgba(57, 30, 66, 0.54), rgba(37, 18, 43, 0.44));
}

.legacy-group.is-red {
  border-color: rgba(255, 115, 96, 0.34);
  background: linear-gradient(180deg, rgba(73, 27, 20, 0.58), rgba(48, 16, 10, 0.46));
}

.legacy-group.is-green {
  border-color: rgba(126, 236, 162, 0.3);
  background: linear-gradient(180deg, rgba(20, 56, 33, 0.56), rgba(13, 39, 24, 0.44));
}

.season-legacy-side {
  display: grid;
  gap: 0.62rem;
  align-content: start;
}

.season-legacy-meme,
.season-legacy-memory {
  border-radius: 14px;
  padding: 0.7rem;
}

.season-legacy-meme {
  border: 1px solid rgba(213, 145, 255, 0.3);
  background: linear-gradient(180deg, rgba(57, 25, 61, 0.55), rgba(34, 15, 38, 0.48));
}

.legacy-meme-winner,
.legacy-meme-award {
  margin-top: 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.45rem 0.58rem;
  color: #f4e9ff;
}

.legacy-meme-award {
  margin-top: 0.38rem;
  color: rgba(239, 220, 255, 0.92);
}

.season-legacy-memory {
  border: 1px solid rgba(255, 203, 112, 0.3);
  background: linear-gradient(180deg, rgba(65, 40, 14, 0.52), rgba(38, 22, 9, 0.46));
}

.season-legacy-memory p {
  margin: 0.48rem 0 0;
  color: rgba(249, 232, 202, 0.9);
  line-height: 1.55;
}

.subpage-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.subpage-btn {
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  padding: 0.84rem 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.subpage-btn-primary {
  background: linear-gradient(180deg, #ffd88e, #f2be62);
  color: #171105;
}

.subpage-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #eef3ff;
}

.subpage-media {
  margin-top: 1rem;
}

.subpage-poster {
  width: min(100%, 860px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: block;
  box-shadow: 0 18px 34px rgba(7, 11, 22, 0.35);
}

.profile-main {
  margin-top: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(32, 41, 70, 0.72), rgba(20, 29, 54, 0.82));
  padding: 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.86rem;
  align-items: center;
}

.profile-connection {
  margin-top: 0.86rem;
  border-radius: 16px;
  border: 1px solid rgba(145, 175, 255, 0.28);
  background: linear-gradient(180deg, rgba(29, 41, 73, 0.74), rgba(18, 28, 56, 0.82));
  padding: 0.72rem;
}

.profile-connection strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
}

.profile-connection p {
  margin: 0.35rem 0 0;
  color: rgba(219, 231, 252, 0.84);
  font-size: 0.9rem;
}

.profile-connection.is-ok {
  border-color: rgba(126, 245, 190, 0.35);
  background: linear-gradient(180deg, rgba(19, 56, 52, 0.76), rgba(11, 35, 33, 0.84));
}

.profile-connection.is-warn {
  border-color: rgba(255, 213, 126, 0.42);
  background: linear-gradient(180deg, rgba(63, 44, 18, 0.72), rgba(44, 30, 12, 0.84));
}

.profile-connection.is-error {
  border-color: rgba(255, 129, 129, 0.4);
  background: linear-gradient(180deg, rgba(66, 25, 25, 0.72), rgba(47, 16, 16, 0.84));
}

.profile-connection-actions {
  margin-top: 0.56rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-connection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ecf3ff;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.profile-connection-btn.is-primary {
  border-color: rgba(255, 216, 137, 0.58);
  background: linear-gradient(180deg, #ffd88e, #f2be62);
  color: #1a1308;
}

.profile-avatar {
  width: 84px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid rgba(156, 201, 255, 0.48);
  background: linear-gradient(145deg, rgba(58, 90, 158, 0.88), rgba(90, 51, 149, 0.88));
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.profile-main-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.26rem, 2.8vw, 2rem);
  letter-spacing: -0.02em;
}

.profile-main-copy p {
  margin: 0.34rem 0 0;
  color: rgba(218, 229, 248, 0.86);
}

.profile-chips {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.profile-chips span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-auth {
  margin-top: 0.44rem;
  font-size: 0.82rem;
  color: rgba(188, 204, 236, 0.82);
}

.profile-stats-grid {
  margin-top: 0.86rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.profile-stat-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.62rem;
}

.profile-stat-card span {
  display: block;
  color: rgba(217, 228, 249, 0.82);
  font-size: 0.78rem;
}

.profile-stat-card strong {
  margin-top: 0.28rem;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
}

.profile-stat-card small {
  margin-top: 0.28rem;
  display: block;
  color: rgba(195, 213, 243, 0.74);
  font-size: 0.74rem;
}

.profile-columns {
  margin-top: 0.86rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.profile-block {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(30, 39, 67, 0.66), rgba(19, 28, 51, 0.76));
  padding: 0.75rem;
}

.profile-block h3 {
  margin: 0;
  font-size: 1.02rem;
}

.profile-row-list {
  margin: 0.58rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.profile-row-list li {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.46rem 0.56rem;
}

.profile-row-list strong {
  display: block;
  color: #ecf3ff;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.profile-row-list span {
  color: rgba(224, 236, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .subpage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .profile-columns {
    grid-template-columns: 1fr;
  }

  .season-details-grid {
    grid-template-columns: 1fr;
  }

  .season-legacy-grid {
    grid-template-columns: 1fr;
  }

  .player-info-grid,
  .player-season-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 640px) {
  .subpage-hero {
    border-radius: 20px;
  }

  .subpage-title {
    font-size: clamp(1.6rem, 9vw, 2.6rem);
  }

  .subpage-actions {
    flex-direction: column;
  }

  .subpage-btn {
    width: 100%;
    min-width: 0;
  }

  .profile-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-chips {
    justify-content: center;
  }

  .season-selector {
    display: grid;
  }

  .season-option {
    width: 100%;
  }

  .player-modal-card {
    width: min(980px, 95vw);
    margin: 14px auto;
    padding: 0.78rem;
  }

  .player-head {
    align-items: flex-start;
  }

  .player-avatar {
    width: 62px;
    font-size: 1.45rem;
  }
}

/* Gamer refresh layer */
:root {
  --gamer-cyan: #4df3ff;
  --gamer-lime: #a7ff5b;
  --gamer-pink: #ff4fd8;
  --gamer-amber: #ffd35c;
  --gamer-panel: rgba(7, 13, 26, 0.78);
  --gamer-panel-strong: rgba(10, 18, 36, 0.92);
}

body {
  background:
    radial-gradient(54rem 24rem at 14% 8%, rgba(77, 243, 255, 0.18), transparent 62%),
    radial-gradient(42rem 22rem at 86% 10%, rgba(255, 79, 216, 0.13), transparent 66%),
    radial-gradient(38rem 24rem at 52% 92%, rgba(167, 255, 91, 0.1), transparent 68%),
    linear-gradient(180deg, #02050d 0%, #07101d 42%, #03060d 100%);
}

body::before {
  background:
    linear-gradient(rgba(77, 243, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 243, 255, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 7px);
  background-size: 42px 42px, 42px 42px, 100% 7px;
  opacity: 0.42;
}

.home-header {
  border-bottom-color: rgba(77, 243, 255, 0.22);
  background: rgba(3, 8, 17, 0.88);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), 0 0 34px rgba(77, 243, 255, 0.07);
}

.brand-logo-wrap,
.online-pill,
.home-user,
.home-search input,
.subpage-card,
.profile-main,
.profile-connection,
.profile-block,
.profile-stat-card,
.season-panel,
.season-subcard,
.season-selector-wrap,
.hub-player-panel,
.hub-card,
.hub-stat-card,
.player-modal-card,
.player-info-card {
  border-radius: 8px;
}

.brand-logo-wrap,
.online-pill {
  border-color: rgba(77, 243, 255, 0.35);
  box-shadow: inset 0 0 18px rgba(77, 243, 255, 0.08), 0 0 18px rgba(77, 243, 255, 0.08);
}

.home-nav a,
.brand-mini,
.chip,
.stage-meta-chip,
.season-status-chip,
.season-period-chip,
.profile-chips span,
.hub-badge {
  border-radius: 8px;
}

.home-nav a {
  position: relative;
  border: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.home-nav a:hover,
.home-nav a.is-active {
  color: #061018;
  border-color: rgba(77, 243, 255, 0.55);
  background: linear-gradient(135deg, var(--gamer-cyan), var(--gamer-lime));
  box-shadow: 0 0 20px rgba(77, 243, 255, 0.18);
  transform: translateY(-1px);
}

.home-stage {
  position: relative;
}

.home-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(77, 243, 255, 0.08) 48% 49%, transparent 50% 100%),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 79, 216, 0.05) 49% 50%, transparent 51% 100%);
  background-size: 180px 180px, 220px 220px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 78%);
}

.subpage-kicker,
.site-official,
.hub-card-head,
.season-legacy-kicker {
  color: var(--gamer-cyan);
  text-shadow: 0 0 18px rgba(77, 243, 255, 0.24);
}

.subpage-title,
.season-panel-head h2,
.profile-main-copy h2,
.hub-player-head h2 {
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(77, 243, 255, 0.12);
}

.subpage-card,
.profile-main,
.profile-connection,
.profile-block,
.profile-stat-card,
.season-panel,
.season-subcard,
.hub-player-panel,
.hub-card,
.hub-stat-card,
.player-info-card {
  border-color: rgba(77, 243, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(12, 24, 44, 0.88), rgba(5, 12, 25, 0.88)),
    linear-gradient(135deg, rgba(77, 243, 255, 0.18), rgba(255, 79, 216, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 38px rgba(0, 0, 0, 0.26);
}

.subpage-card:hover,
.hub-card:hover,
.profile-stat-card:hover,
.season-subcard:hover {
  border-color: rgba(167, 255, 91, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 42px rgba(0, 0, 0, 0.3), 0 0 26px rgba(77, 243, 255, 0.09);
}

.subpage-btn,
.profile-connection-btn,
.hub-searchbar button,
.player-tab,
.season-option,
.hub-result {
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.subpage-btn-primary,
.profile-connection-btn.is-primary,
.hub-searchbar button {
  border: 1px solid rgba(167, 255, 91, 0.58);
  background:
    linear-gradient(135deg, var(--gamer-lime), var(--gamer-cyan) 58%, #ffffff);
  color: #041017;
  box-shadow: 0 10px 28px rgba(77, 243, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.subpage-btn-ghost,
.profile-connection-btn:not(.is-primary) {
  border-color: rgba(77, 243, 255, 0.28);
  background: rgba(7, 15, 30, 0.76);
  color: #f7fbff;
  box-shadow: inset 0 0 18px rgba(77, 243, 255, 0.06);
}

.subpage-btn:hover,
.profile-connection-btn:hover,
.hub-searchbar button:hover,
.season-option:hover,
.hub-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(77, 243, 255, 0.18), 0 0 22px rgba(255, 79, 216, 0.1);
}

.home-search input,
.hub-searchbar input {
  border-color: rgba(77, 243, 255, 0.24);
  background: rgba(3, 8, 17, 0.82);
  box-shadow: inset 0 0 18px rgba(77, 243, 255, 0.05);
}

.home-search input:focus,
.hub-searchbar input:focus {
  border-color: rgba(167, 255, 91, 0.62);
  box-shadow: 0 0 0 3px rgba(167, 255, 91, 0.12), inset 0 0 18px rgba(77, 243, 255, 0.06);
}

.chip,
.stage-meta-chip,
.brand-mini {
  border: 1px solid rgba(77, 243, 255, 0.24);
  background: rgba(8, 18, 36, 0.74);
  color: #eafcff;
}

.chip:nth-child(3n),
.stage-meta-chip:nth-child(2n) {
  border-color: rgba(255, 211, 92, 0.28);
}

.season-selector-wrap {
  border-color: rgba(77, 243, 255, 0.26);
  background: var(--gamer-panel-strong);
}

.season-selector-title,
.season-option {
  background: rgba(8, 18, 36, 0.92);
  color: #f7fbff;
}

.season-selector {
  background: rgba(77, 243, 255, 0.16);
}

.season-option.is-active {
  color: #041017;
  background: linear-gradient(135deg, var(--gamer-cyan), var(--gamer-lime));
}

.hub-badge.is-earned,
.season-status-chip.is-live {
  background: linear-gradient(135deg, var(--gamer-lime), var(--gamer-cyan));
  color: #041017;
}

.hub-player-avatar,
.profile-avatar,
.player-avatar {
  border-radius: 8px;
  border-color: rgba(77, 243, 255, 0.42);
  background: linear-gradient(135deg, var(--gamer-cyan), var(--gamer-pink));
  color: #ffffff;
  box-shadow: 0 0 28px rgba(77, 243, 255, 0.18);
}

.hub-mini-row,
.profile-row-list li,
.season-rows li {
  border-color: rgba(77, 243, 255, 0.12);
}

.home-clips-section {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  border: 1px solid rgba(77, 243, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 24, 44, 0.82), rgba(5, 12, 25, 0.9)),
    linear-gradient(135deg, rgba(255, 79, 216, 0.12), rgba(77, 243, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 38px rgba(0, 0, 0, 0.25);
  padding: 18px;
}

.home-clips-head h2 {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
}

.home-clips-head p {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-clips-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-clip-card {
  overflow: hidden;
  border: 1px solid rgba(77, 243, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-clip-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #02050d;
}

.home-clip-card div {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.home-clip-card span {
  color: var(--gamer-cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-clip-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.home-clip-card p {
  margin: 0;
  color: rgba(229, 239, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.awards-hall {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.awards-hall-head h2 {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1;
}

.awards-hall-head p {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.awards-season-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(77, 243, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 24, 44, 0.9), rgba(5, 12, 25, 0.92)),
    linear-gradient(135deg, rgba(255, 211, 92, 0.13), rgba(77, 243, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 38px rgba(0, 0, 0, 0.25);
  padding: 16px;
}

.awards-season-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.awards-season-head span,
.awards-season-head strong {
  color: var(--gamer-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.awards-season-head h3 {
  margin: 4px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
}

.awards-season-summary {
  margin: 0;
  color: rgba(229, 239, 255, 0.76);
  line-height: 1.55;
}

.awards-winner-list {
  display: grid;
  gap: 8px;
}

.awards-winner-row {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(77, 243, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 10px;
}

.awards-winner-row strong {
  color: #ffffff;
  font-size: 1rem;
}

.awards-winner-row span {
  color: rgba(229, 239, 255, 0.76);
  line-height: 1.45;
}

.awards-winner-row.is-meme {
  border-color: rgba(255, 79, 216, 0.26);
  background: rgba(255, 79, 216, 0.075);
}

@media (max-width: 760px) {
  .awards-season-grid {
    grid-template-columns: 1fr;
  }

  .awards-season-head {
    flex-direction: column;
  }
}

/* Mobile polish */
@media (max-width: 820px) {
  body {
    background:
      radial-gradient(34rem 18rem at 12% 2%, rgba(77, 243, 255, 0.16), transparent 65%),
      radial-gradient(28rem 18rem at 92% 8%, rgba(255, 79, 216, 0.12), transparent 68%),
      linear-gradient(180deg, #02050d 0%, #07101d 52%, #03060d 100%);
  }

  .home-shell {
    width: min(100% - 20px, 1420px);
  }

  .home-header {
    position: relative;
  }

  .home-header-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .home-brand {
    width: 100%;
    align-items: center;
  }

  .brand-logo-wrap {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
  }

  .brand-title {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    line-height: 0.95;
  }

  .brand-sub {
    max-width: 220px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .brand-mini-row {
    display: none;
  }

  .home-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home-nav a {
    justify-content: center;
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.78rem;
    text-align: center;
    white-space: normal;
  }

  .home-header-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .home-search {
    display: block;
    min-width: 0;
  }

  .home-search input {
    width: 100%;
    min-width: 0;
    height: 42px;
  }

  .home-user {
    min-width: 0;
    padding: 6px;
  }

  .home-user-copy {
    display: none;
  }

  .home-user-avatar {
    width: 34px;
    height: 34px;
  }

  .home-stage {
    padding-top: 12px;
  }

  .stage-meta-row,
  .stage-top-row,
  .chips-row {
    gap: 8px;
  }

  .stage-meta-chip,
  .chip {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .chips-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .chip {
    flex: 0 0 auto;
  }

  .subpage-hero {
    border-radius: 14px;
    padding: 18px 14px;
  }

  .subpage-title {
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 0.98;
  }

  .subpage-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .subpage-grid,
  .profile-stats-grid,
  .profile-columns,
  .season-details-grid,
  .season-legacy-grid,
  .hub-two-col,
  .hub-section-grid,
  .hub-stat-grid,
  .awards-season-grid,
  .home-clips-grid {
    grid-template-columns: 1fr;
  }

  .subpage-card,
  .home-clips-section,
  .profile-main,
  .profile-connection,
  .profile-block,
  .profile-stat-card,
  .season-panel,
  .season-subcard,
  .season-legacy-meme,
  .season-legacy-memory,
  .hub-player-panel,
  .hub-card,
  .awards-season-card {
    padding: 14px;
  }

  .subpage-actions,
  .profile-connection-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subpage-btn,
  .profile-connection-btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }

  .profile-main,
  .hub-player-head,
  .player-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .profile-avatar,
  .hub-player-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.55rem;
  }

  .profile-chips {
    justify-content: flex-start;
  }

  .profile-stat-card {
    min-height: 86px;
  }

  .profile-row-list li,
  .season-rows li,
  .awards-winner-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .season-selector-wrap {
    max-width: none;
  }

  .season-selector-title {
    font-size: 1.2rem;
    padding: 12px;
  }

  .season-option {
    min-height: 52px;
    padding: 12px;
    font-size: 0.95rem;
  }

  .season-panel-head,
  .season-legacy-head,
  .awards-season-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .season-chip-row {
    width: 100%;
  }

  .season-status-chip,
  .season-period-chip {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }

  .season-legacy-archive {
    width: 100%;
    text-align: left;
  }

  .hub-searchbar {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hub-searchbar input,
  .hub-searchbar button {
    width: 100%;
    min-height: 46px;
  }

  .news-tile-row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .news-tile {
    flex: 0 0 min(78vw, 260px);
    scroll-snap-align: start;
  }

  .hub-result {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hub-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hub-mini-row {
    overflow-wrap: anywhere;
  }

  .awards-hall {
    margin-top: 20px;
  }

  .player-modal {
    padding: 8px;
  }

  .player-modal-card {
    width: min(100%, 100vw - 16px);
    max-height: calc(100vh - 16px);
    margin: 0 auto;
    padding: 12px;
    overflow-y: auto;
  }

  .player-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .player-tab {
    flex: 0 0 auto;
    min-height: 40px;
  }

  .player-info-grid,
  .player-season-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .home-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .online-pill {
    display: none;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
  }

  .brand-sub {
    display: none;
  }

  .home-header-actions {
    grid-template-columns: 1fr auto;
  }

  .subpage-hero {
    padding: 16px 12px;
  }

  .subpage-title {
    font-size: clamp(1.75rem, 13vw, 2.5rem);
  }

  .top-controls {
    width: 100%;
    justify-content: space-between;
  }
}

/* Seasons ranking refresh */
.season-selector-wrap {
  max-width: none;
  border-color: rgba(77, 243, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(10, 20, 38, 0.92), rgba(4, 10, 22, 0.94)),
    linear-gradient(135deg, rgba(77, 243, 255, 0.12), rgba(255, 79, 216, 0.08));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3), 0 0 24px rgba(77, 243, 255, 0.08);
}

.season-selector-title {
  color: #f7fbff;
  background: transparent;
  border-bottom-color: rgba(77, 243, 255, 0.16);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.season-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  background: transparent;
  padding: 10px;
}

.season-option {
  min-height: 76px;
  border: 1px solid rgba(77, 243, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(12rem 7rem at 90% 10%, rgba(77, 243, 255, 0.1), transparent 62%),
    rgba(255, 255, 255, 0.045);
  color: #f7fbff;
  padding: 12px;
}

.season-option:hover {
  background: rgba(77, 243, 255, 0.08);
  border-color: rgba(77, 243, 255, 0.34);
}

.season-option.is-active {
  background:
    linear-gradient(135deg, rgba(167, 255, 91, 0.95), rgba(77, 243, 255, 0.94));
  color: #041017;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(77, 243, 255, 0.2);
}

.season-option-label {
  font-weight: 900;
}

.season-option-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.season-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(77, 243, 255, 0.18);
  background:
    radial-gradient(38rem 22rem at 12% 2%, rgba(77, 243, 255, 0.13), transparent 64%),
    radial-gradient(34rem 22rem at 88% 4%, rgba(255, 79, 216, 0.1), transparent 68%),
    linear-gradient(180deg, rgba(9, 18, 36, 0.92), rgba(4, 10, 22, 0.94));
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.season-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(77, 243, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(77, 243, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
}

.season-panel > * {
  position: relative;
}

.season-panel-head h2 {
  font-size: clamp(1.65rem, 4vw, 3rem);
  line-height: 1;
}

.season-status-chip,
.season-period-chip,
.season-legacy-kicker,
.season-legacy-archive {
  border-radius: 8px;
}

.season-summary,
.season-note {
  max-width: 920px;
}

.season-details-grid {
  gap: 14px;
}

.season-subcard {
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(77, 243, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(12, 24, 44, 0.82), rgba(5, 12, 25, 0.88)),
    linear-gradient(135deg, rgba(77, 243, 255, 0.12), rgba(255, 211, 92, 0.08));
  padding: 0;
}

.season-subcard h3 {
  border-bottom: 1px solid rgba(77, 243, 255, 0.13);
  color: var(--gamer-cyan);
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.season-rows {
  gap: 0;
  margin: 0;
}

.season-rows li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(77, 243, 255, 0.1);
  border-radius: 0;
  background: transparent;
  padding: 13px 16px 13px 50px;
}

.season-rows li:last-child {
  border-bottom: 0;
}

.season-rows li::before {
  content: counter(season-row);
  counter-increment: season-row;
  position: absolute;
  left: 14px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(77, 243, 255, 0.1);
  color: var(--gamer-cyan);
  font-size: 0.74rem;
  font-weight: 900;
}

.season-rows {
  counter-reset: season-row;
}

.season-rows li strong {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.season-rows li span {
  color: rgba(229, 239, 255, 0.8);
  font-size: 0.92rem;
}

.season-panel.is-legacy {
  border-color: rgba(255, 211, 92, 0.32);
  background:
    radial-gradient(34rem 20rem at 16% 0%, rgba(255, 211, 92, 0.13), transparent 65%),
    radial-gradient(30rem 18rem at 88% 8%, rgba(255, 79, 216, 0.1), transparent 68%),
    linear-gradient(180deg, rgba(16, 14, 24, 0.95), rgba(7, 10, 18, 0.96));
}

.season-legacy-grid {
  gap: 14px;
}

.season-legacy-main,
.season-legacy-meme,
.season-legacy-memory {
  border: 1px solid rgba(255, 211, 92, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.season-legacy-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.legacy-group {
  border-radius: 8px;
  border-color: rgba(255, 211, 92, 0.2);
  background:
    linear-gradient(180deg, rgba(47, 35, 18, 0.74), rgba(22, 18, 15, 0.76));
  padding: 12px;
}

.legacy-group h4 {
  color: #fff7e8;
  font-family: "Montserrat", sans-serif;
}

.legacy-group li {
  border-left: 2px solid rgba(255, 211, 92, 0.45);
  padding-left: 8px;
}

.season-legacy-meme {
  border-color: rgba(255, 79, 216, 0.24);
  background: rgba(255, 79, 216, 0.07);
}

@media (max-width: 820px) {
  .season-selector {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .season-option {
    flex: 0 0 min(76vw, 280px);
    scroll-snap-align: start;
  }

  .season-rows li {
    grid-template-columns: 1fr;
    padding-left: 48px;
  }

  .season-legacy-groups {
    grid-template-columns: 1fr;
  }
}

/* Announcements, tournaments and founders */
.announcements-grid,
.founders-grid,
.tournament-grid {
  display: grid;
  gap: 14px;
}

.announcements-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

#announcementFeatured .announcement-card {
  margin-top: 18px;
}

.announcement-card,
.tournament-card,
.founder-card {
  border: 1px solid rgba(77, 243, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(18rem 12rem at 90% 0%, rgba(77, 243, 255, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(12, 24, 44, 0.88), rgba(5, 12, 25, 0.9));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  padding: 16px;
}

.announcement-meta,
.tournament-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.announcement-meta span,
.announcement-meta strong {
  color: var(--gamer-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-card h3,
.tournament-card h2,
.founder-card h2 {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
}

.announcement-card p,
.tournament-rules p,
.founder-card p {
  color: rgba(229, 239, 255, 0.76);
  line-height: 1.55;
}

.announcement-status {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(167, 255, 91, 0.34);
  border-radius: 8px;
  background: rgba(167, 255, 91, 0.12);
  color: var(--gamer-lime);
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gamer-lime), var(--gamer-cyan));
  color: #041017;
  font-weight: 900;
  text-decoration: none;
  padding: 8px 14px;
}

.tournament-card {
  margin-top: 18px;
}

.tournament-head strong {
  color: #041017;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gamer-amber), var(--gamer-lime));
  padding: 10px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
}

.tournament-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.tournament-grid div {
  border: 1px solid rgba(77, 243, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.tournament-grid span {
  display: block;
  color: rgba(229, 239, 255, 0.68);
}

.tournament-grid strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
}

.tournament-rules {
  margin-top: 16px;
}

.founders-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.founder-card {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}

.founder-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(77, 243, 255, 0.16), transparent 68%);
}

.founder-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gamer-cyan), var(--gamer-pink));
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.founder-card strong {
  color: var(--gamer-cyan);
}

@media (max-width: 920px) {
  .announcements-grid,
  .tournament-grid,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .announcement-meta,
  .tournament-head {
    flex-direction: column;
  }
}
