:root {
  --bg: #071014;
  --bg-soft: #0d171b;
  --card: rgba(10, 19, 22, 0.76);
  --card-strong: rgba(8, 15, 18, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --text: #edf4ee;
  --muted: #b8c3bb;
  --accent: #d3a164;
  --accent-soft: #f0c487;
  --accent-deep: rgba(211, 161, 100, 0.18);
  --glow: rgba(211, 161, 100, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --maxw: 1180px;
  --page-header-height: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top, var(--glow), transparent 28%),
    linear-gradient(180deg, #05090b 0%, #081114 38%, #0c1619 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

code {
  padding: 0.16rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Space Grotesk", monospace;
  font-size: 0.92em;
}

.wrap {
  width: min(var(--maxw), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6, 11, 15, 0.94), rgba(6, 11, 15, 0.76));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy small {
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.top-links a,
.server-switcher a,
.btn,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.top-links a,
.server-switcher a {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.top-links a:hover,
.top-links a:focus-visible,
.server-switcher a:hover,
.server-switcher a:focus-visible,
.btn:hover,
.btn:focus-visible,
.back-link:hover,
.back-link:focus-visible,
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  outline: none;
}

.top-links a.is-accent,
.btn-primary {
  border-color: transparent;
  color: #1b140b;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 18px 34px var(--accent-deep);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost,
.back-link {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.switcher-wrap {
  padding-bottom: 16px;
}

.server-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.server-switcher a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  height: calc(100svh - var(--page-header-height));
  height: calc(100dvh - var(--page-header-height));
  height: calc(100vh - var(--page-header-height));
  min-height: 640px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #04090b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(4, 8, 11, 0.04), rgba(4, 8, 11, 0.1) 40%, rgba(4, 8, 11, 0.34) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #04090b;
  --hero-poster: none;
  --hero-poster-position: center center;
}

.hero-media-fallback {
  position: absolute;
  inset: 0;
  background-image: var(--hero-poster);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--hero-poster-position);
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.04);
}

.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.hero-media-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  max-width: none;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.18);
  filter: saturate(1.04) contrast(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, var(--glow), transparent 34%),
    linear-gradient(180deg, rgba(2, 5, 7, 0.02) 0%, rgba(2, 5, 7, 0.08) 54%, rgba(2, 5, 7, 0.22) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 0 clamp(44px, 7vh, 76px);
}

.hero-glass {
  width: min(1040px, 100%);
  margin-inline: auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(10, 20, 24, 0.54), rgba(10, 20, 24, 0.26));
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
}

.hero-glass-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-trailer-bar {
  align-self: center;
}

.hero-copy {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.85rem, 4.8vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-summary {
  margin: 0;
  color: var(--text);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  max-width: 62ch;
}

.hero-note {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.hero-media-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.audio-btn,
.hero-sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.audio-btn:hover,
.audio-btn:focus-visible,
.hero-sound-toggle:hover,
.hero-sound-toggle:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.audio-btn {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(17, 38, 25, 0.72);
  color: #eaf7e5;
  box-shadow: 0 0 0 1px rgba(126, 202, 127, 0.08) inset, 0 0 12px rgba(87, 180, 95, 0.18);
  position: relative;
}

.audio-btn[data-sound="off"] {
  animation: audio-btn-pulse 2.8s ease-in-out infinite;
}

.audio-btn[data-sound="on"] {
  background: rgba(72, 22, 22, 0.78);
  color: #fff1ef;
  border-color: rgba(228, 123, 123, 0.28);
  box-shadow: 0 0 0 1px rgba(228, 123, 123, 0.08) inset, 0 0 10px rgba(188, 67, 67, 0.14);
}

.audio-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

@keyframes audio-btn-pulse {
  0%,
  100% {
    border-color: rgba(146, 205, 142, 0.18);
    box-shadow: 0 0 0 1px rgba(126, 202, 127, 0.08) inset, 0 0 10px rgba(87, 180, 95, 0.08);
  }

  50% {
    border-color: rgba(146, 205, 142, 0.28);
    box-shadow: 0 0 0 1px rgba(126, 202, 127, 0.1) inset, 0 0 18px rgba(87, 180, 95, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .audio-btn[data-sound="off"] {
    animation: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.stat-card {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 15, 18, 0.62), rgba(8, 15, 18, 0.4));
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.section {
  padding: 30px 0;
}

.section-hero-overview {
  padding-top: 24px;
}

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

.hero-overview-card {
  padding-top: 22px;
}

.intro-back-link {
  margin-bottom: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%),
    var(--card);
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h2,
.card h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.28rem, 3vw, 1.86rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.card ul,
.card ol {
  margin: 14px 0 0;
  padding-left: 18px;
}

.card li + li {
  margin-top: 10px;
}

.spotlight-copy {
  margin-top: 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mini-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-card ul,
.mini-card ol {
  margin-top: 10px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tier-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.tier-card h4 {
  color: var(--accent-soft);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vip-shell {
  display: grid;
  gap: 22px;
  margin-top: 14px;
}

.vip-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.vip-overview-copy > p:first-child {
  margin-top: 0;
}

.vip-support-box {
  padding: 20px;
  border: 1px solid rgba(135, 110, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 23, 44, 0.94), rgba(8, 13, 28, 0.98)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 48px rgba(4, 8, 24, 0.24);
}

.vip-support-box h3,
.vip-rank-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  line-height: 1.1;
}

.vip-support-box ul {
  margin-top: 14px;
}

.vip-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.vip-action,
.vip-buy-link,
.vip-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.vip-action:hover,
.vip-action:focus-visible,
.vip-buy-link:hover,
.vip-buy-link:focus-visible,
.vip-inline-link:hover,
.vip-inline-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.vip-action-primary {
  color: #1b1309;
  background: linear-gradient(135deg, #f6d285, #d39a47);
  box-shadow: 0 14px 28px rgba(211, 161, 100, 0.18);
}

.vip-action-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-action-ghost,
.vip-inline-link {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vip-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.vip-rank-card {
  --vip-glow: rgba(115, 130, 255, 0.18);
  --vip-hover-glow: rgba(115, 130, 255, 0.58);
  --vip-border: rgba(115, 130, 255, 0.16);
  --vip-hover-border: rgba(171, 186, 255, 0.58);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid var(--vip-border);
  background:
    linear-gradient(180deg, rgba(18, 27, 51, 0.96), rgba(9, 14, 29, 0.99));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.vip-rank-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 180px;
  background: radial-gradient(circle at top center, var(--vip-glow), transparent 72%);
  opacity: 0.38;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vip-rank-card::after {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at center, var(--vip-hover-glow), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vip-rank-card:hover {
  border-color: var(--vip-hover-border);
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.42),
    0 0 34px var(--vip-hover-glow),
    0 0 82px var(--vip-hover-glow);
}

.vip-rank-card:hover::before {
  opacity: 0.98;
  transform: scale(1.08);
}

.vip-rank-card:hover::after {
  opacity: 0.8;
  transform: scale(1.05);
}

.vip-rank-card-bronze {
  --vip-glow: rgba(239, 124, 50, 0.18);
  --vip-hover-glow: rgba(255, 132, 37, 0.6);
  --vip-border: rgba(239, 124, 50, 0.18);
  --vip-hover-border: rgba(255, 161, 95, 0.64);
}

.vip-rank-card-iron {
  --vip-glow: rgba(76, 110, 255, 0.18);
  --vip-hover-glow: rgba(93, 128, 255, 0.6);
  --vip-border: rgba(93, 128, 255, 0.18);
  --vip-hover-border: rgba(142, 168, 255, 0.62);
}

.vip-rank-card-gold {
  --vip-glow: rgba(239, 206, 65, 0.18);
  --vip-hover-glow: rgba(245, 225, 79, 0.6);
  --vip-border: rgba(239, 206, 65, 0.18);
  --vip-hover-border: rgba(255, 239, 134, 0.64);
}

.vip-rank-card-titan {
  --vip-glow: rgba(22, 240, 192, 0.18);
  --vip-hover-glow: rgba(23, 245, 207, 0.58);
  --vip-border: rgba(22, 240, 192, 0.16);
  --vip-hover-border: rgba(118, 255, 223, 0.58);
}

.vip-rank-card-player {
  --vip-glow: rgba(71, 208, 121, 0.18);
  --vip-hover-glow: rgba(97, 222, 138, 0.58);
  --vip-border: rgba(71, 208, 121, 0.16);
  --vip-hover-border: rgba(142, 244, 176, 0.58);
}

.vip-rank-card-creator {
  --vip-glow: rgba(255, 106, 128, 0.18);
  --vip-hover-glow: rgba(255, 114, 137, 0.58);
  --vip-border: rgba(255, 106, 128, 0.16);
  --vip-hover-border: rgba(255, 156, 170, 0.58);
}

.vip-rank-card-legend {
  --vip-glow: rgba(255, 187, 74, 0.18);
  --vip-hover-glow: rgba(255, 200, 92, 0.56);
  --vip-border: rgba(211, 144, 55, 0.16);
  --vip-hover-border: rgba(255, 214, 133, 0.58);
}

.vip-rank-card-legend:last-child {
  grid-column: 2;
}

.vip-rank-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 14px;
  text-align: center;
}

.vip-rank-image-link {
  display: block;
  width: min(100%, 240px);
  margin: 0 auto 12px;
}

.vip-rank-image-link img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.26));
}

.vip-rank-tagline {
  width: 100%;
  max-width: none;
  margin: 8px auto 0;
  padding: 0 6px;
  color: rgba(227, 235, 246, 0.82);
  font-size: 0.97rem;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
  max-height: calc(1.4em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.vip-card-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}

.vip-rank-card.is-open .vip-card-highlights {
  margin-top: 18px;
  padding-top: 0;
}

.vip-card-highlight {
  display: grid;
  align-items: center;
  min-height: 58px;
  padding: 10px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

.vip-card-toggle {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  margin: 0 20px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #5d2ab5, #8e44ec);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(93, 42, 181, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vip-card-toggle:hover,
.vip-card-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(93, 42, 181, 0.32);
  outline: none;
}

.vip-card-arrow {
  transition: transform 0.2s ease;
}

.vip-rank-card.is-open .vip-card-arrow {
  transform: rotate(180deg);
}

.vip-card-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid transparent;
}

.vip-rank-card.is-open .vip-card-panel {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.vip-card-panel-inner {
  padding: 18px 20px 20px;
}

.vip-fact-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.vip-fact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.vip-fact-row dt,
.vip-fact-row dd {
  margin: 0;
}

.vip-fact-row dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.vip-fact-row dd {
  text-align: right;
  font-weight: 800;
}

.vip-fact-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 54px;
  min-height: 34px;
  padding: 4px 12px;
  border-radius: 999px;
}

.vip-fact-value-yes {
  color: #deffe9;
  background: rgba(52, 176, 92, 0.28);
  border: 1px solid rgba(100, 232, 143, 0.34);
  box-shadow: inset 0 0 18px rgba(62, 182, 101, 0.18);
}

.vip-fact-value-no {
  color: #ffe3e3;
  background: rgba(185, 54, 54, 0.28);
  border: 1px solid rgba(255, 112, 112, 0.34);
  box-shadow: inset 0 0 18px rgba(196, 60, 60, 0.18);
}

.vip-bonus-block {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.vip-bonus-block ul {
  margin-top: 0;
}

.vip-buy-link {
  width: 100%;
  margin-top: 18px;
  min-height: 46px;
  border-radius: 12px;
  color: #101010;
}

.vip-buy-bronze {
  background: linear-gradient(135deg, #f49a58 0%, #ffcf77 100%);
}

.vip-buy-iron {
  color: #eef4ff;
  background: linear-gradient(135deg, #31559f 0%, #7ea9ff 100%);
}

.vip-buy-gold {
  background: linear-gradient(135deg, #fff25c 0%, #ffe2a0 100%);
}

.vip-buy-titan {
  background: linear-gradient(135deg, #39f0a9 0%, #98ffd9 100%);
}

.vip-buy-player {
  background: linear-gradient(135deg, #20995c 0%, #7ff0a5 100%);
}

.vip-buy-creator {
  color: #fff3f6;
  background: linear-gradient(135deg, #a53049 0%, #ff7890 100%);
}

.vip-buy-legend {
  background: linear-gradient(135deg, #c48620 0%, #ffe287 100%);
}

.vip-thanks-note {
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-align: center;
}

.vip-thanks-note strong {
  color: #dbe7ff;
}

.section-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.link-card {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.link-card strong {
  display: block;
  font-size: 0.98rem;
}

.link-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.full-span {
  grid-column: 1 / -1;
}

.empty-state {
  text-align: center;
  padding: 80px 0 96px;
}

.footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1080px) {
  .hero-glass-body {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-stats,
  .section-grid,
  .tier-grid,
  .link-card-grid,
  .mini-grid,
  .vip-rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vip-overview {
    grid-template-columns: 1fr;
  }

  .vip-rank-card-legend:last-child {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    padding: 18px 0 22px;
  }

  .hero-glass {
    padding: 14px 14px 16px;
    border-radius: 22px;
  }

  .hero-media-embed {
    transform: translate(-50%, -50%) scale(1.34);
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.7rem);
  }

  .hero-summary {
    font-size: 0.96rem;
  }

  .hero-sound-toggle {
    width: 100%;
  }

  .hero-stats,
  .section-grid,
  .tier-grid,
  .link-card-grid,
  .mini-grid,
  .vip-rank-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px;
  }

  .vip-fact-row {
    grid-template-columns: 1fr;
  }

  .vip-fact-row dd {
    text-align: left;
  }

  .vip-fact-value {
    justify-self: start;
  }

  .vip-card-highlights {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
