:root {
  color-scheme: dark;
  --bg: #07080b;
  --bg-soft: #0e1118;
  --panel: #11151e;
  --panel-strong: #171c27;
  --line: rgba(255, 255, 255, 0.11);
  --line-hot: rgba(255, 85, 47, 0.48);
  --text: #f7f4ed;
  --muted: #9ea6b4;
  --subtle: #6f7785;
  --red: #ff3d30;
  --red-soft: #d7271f;
  --orange: #ff8a2b;
  --gold: #d6a84f;
  --discord: #5865f2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.68) 0%, rgba(7, 8, 11, 0.9) 34%, rgba(7, 8, 11, 0.98) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 67, 48, 0.18), transparent 30%),
    radial-gradient(circle at 84% 4%, rgba(255, 138, 43, 0.14), transparent 28%),
    url("assets/brand/pvpland-clean-cinematic-background.gif") center top / cover fixed no-repeat,
    #07080b;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 32%, transparent 68%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 0%, rgba(255, 138, 43, 0.14), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.56) 100%);
  opacity: 0.72;
}

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

.banner-link {
  display: block;
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(100%, 1720px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 62px;
  padding: 10px clamp(12px, 2.6vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 15, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(94px, 8vw, 132px);
  height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 14px rgba(255, 138, 43, 0.28));
}

.brand-mark,
.server-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 138, 43, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 61, 48, 0.28), rgba(255, 138, 43, 0.1)),
    #11151e;
  color: #fff3df;
  box-shadow: 0 0 28px rgba(255, 61, 48, 0.16);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: #cdd2db;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 8px;
  border: 1px solid rgba(255, 138, 43, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: #ffd38b;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.language-switcher select {
  min-height: 26px;
  border: 0;
  background: transparent;
  color: #fff3df;
  cursor: pointer;
  font: inherit;
  outline: none;
}

.language-switcher option {
  color: #10141d;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #f7f4ed;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.48;
  cursor: url("assets/cursors/pvpland_cursor.png") 7 3, url("assets/cursors/pvpland_cursor_32.png") 7 3, not-allowed;
  transform: none;
}

.button-primary {
  border-color: rgba(255, 112, 55, 0.55);
  background: linear-gradient(135deg, #e9372b, #ff872b);
  box-shadow: 0 12px 32px rgba(255, 61, 48, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgba(255, 61, 48, 0.36);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost:hover {
  border-color: rgba(255, 138, 43, 0.45);
  background: rgba(255, 138, 43, 0.1);
}

.button-discord {
  border-color: rgba(88, 101, 242, 0.52);
  background: rgba(88, 101, 242, 0.18);
}

.button-discord:hover {
  background: rgba(88, 101, 242, 0.28);
}

.button-large {
  min-height: 38px;
  padding: 0 16px;
  font-size: 1rem;
}

.asset-button {
  width: var(--asset-button-width, 150px);
  min-width: var(--asset-button-width, 150px);
  min-height: var(--asset-button-height, 46px);
  padding: 0;
  border: 0;
  background: var(--asset-button-image) center / 100% 100% no-repeat;
  box-shadow: none;
  color: transparent;
  overflow: hidden;
  text-shadow: none;
  white-space: nowrap;
}

.asset-button:hover {
  box-shadow: none;
  filter: brightness(1.08) drop-shadow(0 0 12px rgba(255, 138, 43, 0.32));
}

.asset-button-buy {
  --asset-button-image: url("assets/ui/pvpland_new/button_buy_banner.png");
  --asset-button-width: 150px;
  --asset-button-height: 48px;
}

.asset-button-login {
  --asset-button-image: url("assets/ui/pvpland_new/button_login.png");
  --asset-button-width: 126px;
  --asset-button-height: 50px;
}

.asset-button-register {
  --asset-button-image: url("assets/ui/pvpland_new/button_register.png");
  --asset-button-width: 126px;
  --asset-button-height: 50px;
}

.asset-button-discord {
  --asset-button-image: url("assets/ui/pvpland_new/asset_5.png");
  --asset-button-width: 148px;
  --asset-button-height: 42px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.46fr) minmax(520px, 1.54fr);
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
  min-height: auto;
  padding: clamp(24px, 3vw, 42px) clamp(12px, 2.6vw, 28px) clamp(14px, 2vw, 24px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: clamp(12px, 2.6vw, 28px);
  bottom: 0;
  left: clamp(12px, 2.6vw, 28px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 138, 43, 0.6), transparent);
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-motion span {
  position: absolute;
  display: block;
  width: 2px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(255, 138, 43, 0.35), transparent);
  filter: blur(0.4px);
  opacity: 0.7;
  animation: driftLine 7s linear infinite;
}

.hero-motion span:nth-child(1) {
  left: 14%;
  animation-delay: -2s;
}

.hero-motion span:nth-child(2) {
  left: 63%;
  height: 160px;
  animation-duration: 9s;
}

.hero-motion span:nth-child(3) {
  left: 86%;
  height: 280px;
  animation-delay: -4s;
  animation-duration: 11s;
}

.hero-content {
  max-width: 420px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 800;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-copy {
  max-width: 380px;
  margin-bottom: 14px;
  color: #c7ccd5;
  font-size: 0.98rem;
  line-height: 1.45;
}

.legendary-showcase {
  position: relative;
  align-self: end;
}

.legendary-showcase::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 138, 43, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 61, 48, 0.11), transparent 46%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.42);
}

.banner-media {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #11151e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.banner-media::before,
.banner-media::after,
.banner-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.banner-media::before {
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 56%),
    radial-gradient(circle at 20% 50%, rgba(255, 111, 43, 0.42), transparent 30%);
  transform: translateX(-120%);
  animation: bannerSweep 4.7s ease-in-out infinite;
}

.banner-media::after {
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  animation: gridSlide 16s linear infinite;
}

.banner-media.real-banner {
  padding: 0;
  background: #05070a;
}

.banner-media.real-banner::before,
.banner-media.real-banner::after,
.banner-media.real-banner .banner-layer {
  display: none;
}

.banner-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.contain-banner .banner-art {
  object-fit: contain;
  background: #05070a;
}

.featured-banner-card:hover .banner-art,
.server-card:hover .banner-art {
  filter: saturate(1.08) brightness(1.08);
  transform: scale(1.025);
}

.banner-layer {
  background:
    radial-gradient(circle at 74% 32%, rgba(255, 255, 255, 0.16), transparent 16%),
    linear-gradient(135deg, rgba(255, 61, 48, 0.28), rgba(255, 138, 43, 0.1) 42%, rgba(8, 10, 15, 0.9));
  animation: pulseGlow 3.4s ease-in-out infinite;
}

.legendary-banner {
  min-height: auto;
  aspect-ratio: 970 / 250;
  padding: clamp(22px, 4vw, 44px);
}

.legendary-banner.real-banner {
  min-height: auto;
  aspect-ratio: 970 / 250;
}

.featured-banner {
  min-height: 250px;
  padding: 26px;
}

.featured-banner.real-banner {
  min-height: auto;
  aspect-ratio: 728 / 90;
}

.featured-banner.featured-slot {
  aspect-ratio: 970 / 250;
}

.medium-banner {
  min-height: 112px;
  padding: 18px;
}

.medium-banner.real-banner {
  min-height: auto;
  aspect-ratio: 728 / 90;
}

.small-banner {
  min-height: 84px;
  padding: 14px;
}

.small-banner.real-banner {
  min-height: auto;
  aspect-ratio: 468 / 74;
}

.ribbon-card-banner {
  min-height: 76px;
  padding: 12px;
}

.ribbon-card-banner.real-banner {
  min-height: auto;
  aspect-ratio: 468 / 60;
}

.banner-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.banner-copy span,
.banner-copy em {
  color: rgba(255, 244, 229, 0.78);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.banner-copy strong {
  color: #fff7eb;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.25rem, 4vw, 4.2rem);
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 61, 48, 0.45);
}

.medium-banner .banner-copy strong {
  font-size: clamp(1.15rem, 2.1vw, 1.75rem);
}

.small-banner .banner-copy strong {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.banner-stat {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: #ffe7bd;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
}

.banner-stat span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.ad-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px clamp(12px, 2.6vw, 28px);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 5, 8, 0.74);
}

.ribbon-banner {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #05070a;
  aspect-ratio: 468 / 60;
  transition:
    border-color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.ribbon-banner:hover {
  border-color: rgba(255, 138, 43, 0.5);
  filter: brightness(1.08) saturate(1.08);
  transform: translateY(-1px);
}

.ribbon-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-ad-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin: 8px 0 10px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 138, 43, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.78);
  overflow: hidden;
}

.live-ad-ticker img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

#live-ticker-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

#live-ticker-track span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: #f4dfbd;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slot-capacity {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px clamp(12px, 2.6vw, 28px) 0;
}

.slot-capacity div {
  display: grid;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 1px 8px;
  min-height: 40px;
  border: 1px solid rgba(255, 138, 43, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.72);
  text-align: center;
}

.slot-capacity strong {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1rem;
}

.slot-capacity span {
  color: #cdd2db;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.slot-capacity small {
  color: rgba(186, 193, 207, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slot-capacity .is-sold-out {
  border-color: rgba(255, 71, 71, 0.22);
  opacity: 0.72;
}

.slot-capacity .is-sold-out strong,
.slot-capacity .is-sold-out small {
  color: #ff9c8f;
}

.featured-band,
.servers-section,
.ad-products {
  padding: clamp(22px, 3.2vw, 42px) clamp(12px, 2.6vw, 28px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.section-heading.compact {
  margin-bottom: 10px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.04;
}

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

.featured-banner-card,
.server-card,
.product-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.78);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.featured-banner-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.featured-banner-card:hover,
.server-card:hover {
  border-color: var(--line-hot);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(255, 61, 48, 0.12);
  transform: translateY(-2px);
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
}

.featured-meta span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #d8dde6;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(280px, 1fr) auto auto;
  align-items: end;
  gap: 8px;
  margin: 0 0 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.filter-group {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.filter-group label,
.filter-label {
  color: var(--orange);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-select {
  width: 100%;
  min-height: 34px;
  padding: 0 38px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #10141d;
  color: #f7f4ed;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  outline: none;
}

.filter-select:focus {
  border-color: rgba(255, 138, 43, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 138, 43, 0.13);
}

.race-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.race-option,
.filter-reset {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dfe4ec;
  cursor: pointer;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.race-option:hover,
.race-option.active,
.filter-reset:hover {
  border-color: rgba(255, 138, 43, 0.52);
  background: rgba(255, 104, 43, 0.13);
  color: #fff4e1;
}

.race-option:hover,
.filter-reset:hover {
  transform: translateY(-1px);
}

.filter-reset {
  padding: 0 15px;
}

.filter-result {
  margin: 0;
  justify-self: end;
  color: var(--muted);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.vote-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  margin: 0 0 10px;
  padding: 8px;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.12), rgba(255, 61, 48, 0.05) 46%, transparent),
    rgba(8, 10, 15, 0.84);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.vote-board::before {
  position: absolute;
  top: 6px;
  right: 14px;
  width: min(42%, 390px);
  height: 54px;
  content: "";
  background: url("assets/ui/pvpland_new/separator.png") center / contain no-repeat;
  opacity: 0.38;
  pointer-events: none;
}

.vote-board > * {
  position: relative;
}

.vote-board-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vote-board-head img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 138, 43, 0.28));
}

.vote-board h3 {
  margin: 2px 0 0;
  color: #fff3df;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.02rem;
}

.vote-ranking-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.vote-rank-row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "rank name"
    "rank votes";
  gap: 1px 7px;
  align-items: center;
  min-height: 52px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: #f7f4ed;
}

.vote-rank-row:hover {
  border-color: rgba(255, 138, 43, 0.52);
  background: rgba(255, 104, 43, 0.12);
}

.vote-rank-mark {
  grid-area: rank;
  display: grid;
  place-items: center;
  min-width: 28px;
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.vote-rank-mark img,
.rank-badge img {
  display: block;
  width: 34px;
  height: auto;
}

.vote-rank-row strong {
  grid-area: name;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.98rem;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vote-rank-row em {
  grid-area: votes;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.tab {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dfe4ec;
  cursor: pointer;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.tab:hover,
.tab.active {
  border-color: rgba(255, 138, 43, 0.48);
  background: rgba(255, 104, 43, 0.12);
  color: #fff4e1;
}

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

.server-card {
  position: relative;
  overflow: hidden;
  padding: 6px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.server-card.is-hidden {
  display: none;
}

.available-slot {
  border-color: rgba(255, 138, 43, 0.32);
}

.server-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 125, 43, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.server-card:hover::before {
  opacity: 1;
}

.server-card.top-ranked {
  border-color: rgba(255, 186, 92, 0.42);
}

.badge-row {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0;
  pointer-events: none;
}

.badge,
.banner-size {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 8px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.badge-hot {
  background: rgba(255, 61, 48, 0.74);
  color: #fff5f0;
}

.badge-new {
  background: rgba(255, 138, 43, 0.72);
  color: #fff5e8;
}

.badge-grand {
  background: rgba(214, 168, 79, 0.72);
  color: #fff7d8;
}

.badge-standard {
  background: rgba(255, 255, 255, 0.18);
  color: #dbe0e8;
}

.banner-size {
  background: rgba(0, 0, 0, 0.56);
  color: #dbe0e8;
}

.server-info {
  position: relative;
  z-index: 1;
  padding: 8px 2px 2px;
}

.server-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.server-logo {
  width: 30px;
  height: 30px;
  color: #ffe5bb;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
}

.server-title h3 {
  margin-bottom: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.08rem;
  line-height: 1.05;
}

.server-title p {
  display: none;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.server-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 8px;
}

.server-stats div {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
}

.server-stats dt {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.server-stats dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #fff3df;
  font-weight: 800;
}

.server-vote {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  min-height: 44px;
  padding: 6px 7px;
  border: 1px solid rgba(255, 138, 43, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.18), rgba(255, 61, 48, 0.07) 54%, transparent),
    rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 18px rgba(255, 138, 43, 0.06);
}

.server-vote img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 138, 43, 0.24));
}

.vote-rank-copy {
  display: grid;
  gap: 1px;
  min-width: 76px;
}

.server-vote span {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.server-vote small {
  color: var(--muted);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.server-vote strong {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.vote-button {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 138, 43, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(64, 108, 37, 0.96), rgba(28, 58, 24, 0.96)),
    #263a18;
  color: #fff7ea;
  cursor: pointer;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 104, 43, 0.16);
}

.vote-button:hover:not(:disabled) {
  filter: brightness(1.08);
}

.vote-button:disabled {
  opacity: 0.65;
  cursor: default;
}

.card-actions {
  align-items: stretch;
  gap: 6px;
}

.rank-badge {
  display: grid;
  place-items: center;
  min-width: 30px;
  min-height: 20px;
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.card-actions .button {
  flex: 1;
  min-width: 0;
}

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

.product-grid article {
  padding: 14px;
}

.product-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 138, 43, 0.12);
  color: #ffbe7f;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
}

.product-grid h3 {
  margin-bottom: 5px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.18rem;
}

.product-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.9rem;
}

.inventory-action {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 26px 12px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(7, 8, 11, 0.28), rgba(7, 8, 11, 0.82)),
    rgba(0, 0, 0, 0.28);
}

.site-footer img {
  display: block;
  width: clamp(190px, 24vw, 360px);
  max-width: 86%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 138, 43, 0.32));
}

.site-footer span {
  color: #c5a46f;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer span a {
  margin-left: 10px;
  color: #ffd38b;
}

.topic-page {
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.72) 0%, rgba(7, 8, 11, 0.9) 40%, rgba(7, 8, 11, 0.98) 100%),
    radial-gradient(circle at 22% 4%, rgba(255, 61, 48, 0.18), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(255, 138, 43, 0.12), transparent 24%),
    url("assets/brand/pvpland-clean-cinematic-background.gif") center top / cover fixed no-repeat,
    #07080b;
}

.topic-layout {
  padding: clamp(16px, 2.5vw, 32px) clamp(12px, 2.6vw, 28px) clamp(28px, 4vw, 54px);
}

.topic-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(300px, 0.75fr);
  gap: 16px;
  align-items: stretch;
}

.topic-banner-wrap {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 10px;
  border: 1px solid rgba(255, 138, 43, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 61, 48, 0.08), transparent 44%),
    rgba(0, 0, 0, 0.32);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

.topic-banner {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #05070a;
}

.topic-summary,
.topic-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.topic-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 2.5vw, 26px);
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.1), transparent 48%),
    rgba(8, 10, 15, 0.86);
}

.topic-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topic-logo {
  flex: 0 0 auto;
  width: clamp(54px, 6vw, 82px);
  height: clamp(54px, 6vw, 82px);
  border: 1px solid rgba(255, 138, 43, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 138, 43, 0.15);
}

.topic-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.topic-summary h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
}

.topic-tagline {
  margin-bottom: 14px;
  color: var(--orange);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-text {
  margin-bottom: 18px;
  color: #c9cfda;
  font-size: 1rem;
  line-height: 1.55;
}

.topic-vote-panel {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 7px;
  align-items: center;
  margin: 0 0 12px;
  padding: 9px;
  border: 1px solid rgba(255, 138, 43, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.18), rgba(255, 61, 48, 0.08) 52%, transparent),
    rgba(0, 0, 0, 0.24);
  box-shadow:
    inset 0 0 22px rgba(255, 138, 43, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.topic-vote-panel img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 138, 43, 0.28));
}

.topic-vote-panel span {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.topic-vote-panel strong {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.topic-vote-panel small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
}

.topic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.topic-panel {
  padding: 16px;
}

.topic-panel h2 {
  margin-bottom: 12px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.18rem;
}

.topic-gallery-panel {
  grid-column: 1 / -1;
}

.topic-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.topic-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: #05070a;
  object-fit: contain;
}

.topic-gallery img + img {
  border-top: 1px solid rgba(255, 138, 43, 0.18);
}

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

.topic-list li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9dee7;
  line-height: 1.35;
}

.topic-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.topic-stats div {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.topic-stats dt {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-stats dd {
  margin: 2px 0 0;
  color: #fff3df;
  font-weight: 800;
}

.advertiser-page {
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.74) 0%, rgba(7, 8, 11, 0.91) 44%, rgba(7, 8, 11, 0.98) 100%),
    radial-gradient(circle at 16% 8%, rgba(255, 61, 48, 0.16), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(255, 138, 43, 0.1), transparent 24%),
    url("assets/brand/pvpland-clean-cinematic-background.gif") center top / cover fixed no-repeat,
    #07080b;
}

.advertiser-layout {
  padding: clamp(12px, 2vw, 24px) clamp(12px, 2.6vw, 28px) clamp(28px, 4vw, 54px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.54fr);
  gap: 12px;
  align-items: start;
  padding: clamp(18px, 3vw, 42px) clamp(12px, 2.6vw, 28px) clamp(28px, 4vw, 54px);
}

.checkout-panel,
.checkout-summary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.84);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3);
}

.checkout-panel,
.checkout-summary {
  padding: 12px;
}

.checkout-summary {
  display: grid;
  gap: 10px;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.checkout-step {
  display: grid;
  gap: 3px;
  min-height: 70px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.checkout-step span {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.checkout-step strong {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.04rem;
}

.checkout-step em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.checkout-step.active,
.checkout-step.done {
  border-color: rgba(255, 138, 43, 0.42);
  background: rgba(255, 104, 43, 0.1);
}

.checkout-step.done span,
.checkout-step.done strong {
  color: #ffd38b;
}

.checkout-step.blocked {
  opacity: 0.58;
}

.checkout-packages {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.checkout-package {
  display: grid;
  gap: 4px;
  min-height: 124px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #f7f4ed;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.checkout-package::before {
  width: min(100%, 210px);
  height: 58px;
  content: "";
  background: var(--slot-icon) center left / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(255, 138, 43, 0.16));
}

.checkout-package[data-package="Legendary Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/asset_6.png");
}

.checkout-package[data-package="Featured Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/banner_icon_1.png");
}

.checkout-package[data-package="Medium Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/banner_icon_3.png");
}

.checkout-package[data-package="Ribbon Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/banner_icon_2.png");
}

.checkout-package[data-package="Small Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/banner_icon_4.png");
}

.checkout-package span {
  width: fit-content;
  padding: 4px 7px;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  color: #ffbe7f;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
}

.checkout-package strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.18rem;
  line-height: 1.05;
}

.checkout-package em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.25;
}

.checkout-package .inventory-count {
  align-self: end;
  width: fit-content;
  padding: 3px 7px;
  border: 1px solid rgba(124, 255, 172, 0.16);
  border-radius: 999px;
  color: #a9ffc8;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-package .price-count {
  width: fit-content;
  color: #ffd38b;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
}

.checkout-package:hover,
.checkout-package.active {
  border-color: rgba(255, 138, 43, 0.52);
  background: rgba(255, 104, 43, 0.12);
  transform: translateY(-1px);
}

.checkout-package.sold-out {
  border-color: rgba(255, 85, 72, 0.24);
  color: rgba(247, 244, 237, 0.62);
}

.checkout-package.sold-out .inventory-count {
  border-color: rgba(255, 85, 72, 0.22);
  color: #ff9c8f;
}

.legal-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid rgba(255, 138, 43, 0.2);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.68);
  color: #cfd5df;
  font-size: 0.86rem;
  line-height: 1.45;
}

.legal-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.legal-consent a {
  color: #ffd38b;
  font-weight: 800;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.checkout-actions .button {
  flex: 1 1 190px;
}

.toplist-layout {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 42px) clamp(12px, 2.6vw, 28px) clamp(28px, 4vw, 54px);
}

.toplist-hero {
  padding: 14px;
  border: 1px solid rgba(255, 138, 43, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.12), rgba(255, 61, 48, 0.06) 48%, transparent),
    rgba(8, 10, 15, 0.82);
}

.toplist-hero h1 {
  margin: 2px 0 6px;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.toplist-hero p {
  max-width: 720px;
  color: var(--muted);
}

.toplist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.toplist-board {
  display: grid;
  gap: 8px;
}

.toplist-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(180px, 0.4fr) minmax(320px, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.84);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.toplist-banner {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  background: #07080b;
}

.toplist-banner img {
  display: block;
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.toplist-rank {
  display: grid;
  gap: 2px;
}

.toplist-rank span {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
}

.toplist-rank strong {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.toplist-rank em {
  color: var(--muted);
  font-style: normal;
}

.toplist-row dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.toplist-row dt {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.toplist-row dd {
  margin: 0;
  color: #f3e7cf;
  font-size: 0.85rem;
  font-weight: 800;
}

.toplist-actions {
  display: flex;
  gap: 7px;
}

.wallet-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(240px, 0.9fr) minmax(220px, 1fr);
  gap: 10px;
  align-items: stretch;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 138, 43, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.12), transparent 56%),
    rgba(8, 10, 15, 0.84);
}

.wallet-panel > div {
  display: grid;
  gap: 5px;
}

.wallet-panel strong {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.25rem;
}

.wallet-panel span,
.wallet-transactions span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.wallet-redeem {
  grid-template-columns: minmax(0, 1fr) auto;
}

.wallet-redeem input {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: #f7f4ed;
  font: inherit;
  text-transform: uppercase;
}

.wallet-transactions {
  align-content: start;
  max-height: 118px;
  overflow: auto;
}

.wallet-transactions span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wallet-transactions strong {
  flex: 0 0 auto;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
}

.payment-provider-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 138, 43, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 61, 48, 0.08), rgba(255, 138, 43, 0.08) 52%, transparent),
    rgba(8, 10, 15, 0.78);
}

.payment-provider-panel h2 {
  margin: 2px 0 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.25rem;
}

.payment-provider-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) minmax(140px, 0.42fr) auto auto;
  gap: 8px;
  align-items: end;
}

.payment-provider-grid .button[hidden] {
  display: none;
}

.notification-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 138, 43, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.08), transparent 56%),
    rgba(8, 10, 15, 0.78);
}

.notification-list {
  display: grid;
  gap: 7px;
  max-height: 230px;
  overflow: auto;
  padding-right: 4px;
}

.notification-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.notification-item.is-unread {
  border-color: rgba(255, 138, 43, 0.36);
  background: rgba(255, 138, 43, 0.08);
}

.notification-item h2 {
  margin: 0 0 3px;
  color: #ffd38b;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.05rem;
}

.notification-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.notification-item small {
  color: var(--subtle);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.panel-status {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.package-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.package-option {
  display: grid;
  gap: 3px;
  min-height: 92px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.82);
  color: #f7f4ed;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.package-option::before {
  width: min(100%, 170px);
  height: 42px;
  content: "";
  background: var(--slot-icon) left center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(255, 138, 43, 0.14));
}

.package-option[data-package="Legendary Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/asset_6.png");
}

.package-option[data-package="Featured Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/banner_icon_1.png");
}

.package-option[data-package="Medium Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/banner_icon_3.png");
}

.package-option[data-package="Ribbon Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/banner_icon_2.png");
}

.package-option[data-package="Small Banner"] {
  --slot-icon: url("assets/ui/pvpland_new/banner_icon_4.png");
}

.package-option span {
  color: var(--orange);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-option strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.1rem;
}

.package-option:hover,
.package-option.active {
  border-color: rgba(255, 138, 43, 0.5);
  background: rgba(255, 104, 43, 0.12);
}

.campaign-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 138, 43, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 104, 43, 0.13), rgba(255, 255, 255, 0.025) 48%),
    rgba(8, 10, 15, 0.84);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}

.campaign-notice h2 {
  margin: 8px 0 4px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.35rem;
}

.campaign-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.campaign-notice .button[hidden] {
  display: none;
}

.launch-checklist-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 138, 43, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.07), transparent 58%),
    rgba(8, 10, 15, 0.82);
}

.launch-checklist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.launch-check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  min-width: 0;
  min-height: 66px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.launch-check-item[data-state="done"] {
  border-color: rgba(255, 211, 139, 0.36);
  background: rgba(255, 138, 43, 0.08);
}

.launch-check-item[data-state="active"] {
  border-color: rgba(255, 138, 43, 0.42);
}

.launch-check-item[data-state="blocked"] {
  opacity: 0.58;
}

.launch-check-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 24px;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 999px;
  color: #ffd38b;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
}

.launch-check-item strong {
  display: block;
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.98rem;
  line-height: 1.05;
}

.launch-check-item em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.25;
}

.analytics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.analytics-strip div {
  display: grid;
  gap: 3px;
  min-height: 70px;
  padding: 10px;
  border: 1px solid rgba(255, 138, 43, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.08), transparent 58%),
    rgba(8, 10, 15, 0.82);
}

.analytics-strip strong {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.18rem;
}

.analytics-strip span {
  color: var(--muted);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-deep-panel {
  display: grid;
  grid-template-columns: minmax(340px, 1.15fr) minmax(280px, 0.85fr);
  gap: 10px;
  margin-bottom: 10px;
}

.analytics-deep-panel article {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 138, 43, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.07), transparent 58%),
    rgba(8, 10, 15, 0.82);
}

.analytics-trend-board,
.analytics-target-board {
  display: grid;
  gap: 7px;
  max-height: 248px;
  overflow: auto;
  padding-right: 4px;
}

.analytics-trend-row,
.analytics-target-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(86px, 0.7fr) minmax(96px, 0.75fr) minmax(84px, 0.55fr);
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.analytics-target-card {
  grid-template-columns: minmax(120px, 1fr) 72px;
}

.analytics-trend-row span,
.analytics-target-card span {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-trend-row strong,
.analytics-target-card strong {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.94rem;
}

.analytics-trend-row em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
}

.analytics-trend-row i,
.analytics-target-card em {
  position: absolute;
  inset: auto auto 0 0;
  width: var(--bar-width, 0%);
  height: 3px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(90deg, #ff442f, #ffb347);
}

.campaign-ops {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 1.08fr);
  gap: 10px;
  margin-bottom: 10px;
}

.campaign-lifecycle-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 138, 43, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.08), transparent 56%),
    rgba(8, 10, 15, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.compact-heading {
  margin-bottom: 0;
}

.compact-heading h1 {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.campaign-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.campaign-timeline-grid div,
.campaign-order-row,
.analytics-server-row {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.campaign-timeline-grid div {
  display: grid;
  gap: 2px;
  min-height: 64px;
  padding: 8px;
}

.campaign-timeline-grid span,
.campaign-order-row span,
.analytics-server-row span {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-timeline-grid strong,
.campaign-order-row strong,
.analytics-server-row strong {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.campaign-order-list,
.analytics-server-board {
  display: grid;
  gap: 7px;
  max-height: 210px;
  overflow: auto;
  padding-right: 4px;
}

.campaign-order-row,
.analytics-server-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) repeat(3, minmax(72px, 0.45fr));
  gap: 8px;
  align-items: center;
  padding: 8px;
}

.analytics-server-row {
  grid-template-columns: minmax(180px, 1fr) repeat(4, minmax(64px, 0.42fr));
}

.analytics-server-row em {
  position: relative;
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.analytics-server-row em::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-width, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #ff442f, #ffb347);
}

.submission-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.submission-filter-strip .status-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.submission-filter-strip span {
  min-width: 22px;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(255, 138, 43, 0.16);
  color: #ffd38b;
  font-size: 0.76rem;
  text-align: center;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.workflow-step {
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.74);
}

.workflow-step span {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-step strong {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.05rem;
}

.workflow-step em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.workflow-step.active,
.workflow-step.done {
  border-color: rgba(255, 138, 43, 0.42);
  background: rgba(255, 104, 43, 0.1);
}

.workflow-step.done span,
.workflow-step.done strong {
  color: #ffd38b;
}

.workflow-step.blocked {
  opacity: 0.58;
}

.panel-status div,
.editor-panel,
.live-topic-preview {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.panel-status div {
  display: grid;
  gap: 3px;
  padding: 10px;
}

.panel-status strong {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.panel-status span {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(380px, 1.05fr);
  gap: 10px;
  align-items: start;
}

.editor-panel,
.live-topic-preview {
  padding: 12px;
}

.submission-history-panel {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.submission-history {
  display: grid;
  gap: 10px;
}

.submission-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(240px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.submission-card img {
  display: block;
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.submission-card h2 {
  margin-bottom: 4px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.1rem;
}

.submission-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-note {
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  color: #ffd38b;
  background: rgba(255, 138, 43, 0.08);
}

.editor-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.editor-heading h1 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
}

.field-grid,
.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.upload-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 5px;
}

.field-full {
  margin-bottom: 8px;
}

.field span,
.upload-tile span {
  color: var(--orange);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: #f7f4ed;
  font: inherit;
  outline: none;
}

.field textarea {
  resize: vertical;
  line-height: 1.4;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 138, 43, 0.62);
  box-shadow: 0 0 0 3px rgba(255, 138, 43, 0.12);
}

.upload-tile {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 10px;
  overflow: hidden;
  border: 1px dashed rgba(255, 138, 43, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 61, 48, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.upload-tile strong {
  color: #e2e6ee;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
}

.upload-tile small {
  max-width: 100%;
  color: var(--muted);
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-tile input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-tile.disabled {
  opacity: 0.62;
}

.upload-tile.disabled input {
  cursor: url("assets/cursors/pvpland_cursor.png") 7 3, url("assets/cursors/pvpland_cursor_32.png") 7 3, not-allowed;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-banner-box {
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.preview-banner-box img {
  display: block;
  width: 100%;
  aspect-ratio: 728 / 90;
  object-fit: contain;
  border-radius: 8px;
  background: #05070a;
}

.preview-topic-card {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.preview-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.preview-title-row img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(255, 138, 43, 0.38);
  border-radius: 8px;
}

.preview-title-row h2 {
  margin-bottom: 2px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

.preview-title-row p,
.preview-content {
  margin-bottom: 0;
  color: var(--muted);
}

.preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.preview-meta span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
}

.preview-content {
  margin-bottom: 12px;
  line-height: 1.45;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.preview-gallery img,
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  object-fit: cover;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-gallery.is-poster-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 720px;
  padding: 8px;
  overflow: auto;
  border: 1px solid rgba(255, 138, 43, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
}

.preview-gallery.is-poster-stack img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: #05070a;
  object-fit: contain;
}

.preview-gallery.is-poster-stack img + img {
  border-top: 1px solid rgba(255, 138, 43, 0.18);
}

.auth-page {
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.72) 0%, rgba(7, 8, 11, 0.9) 44%, rgba(7, 8, 11, 0.98) 100%),
    radial-gradient(circle at 18% 8%, rgba(255, 61, 48, 0.18), transparent 28%),
    radial-gradient(circle at 82% 6%, rgba(255, 138, 43, 0.12), transparent 24%),
    url("assets/brand/pvpland-clean-cinematic-background.gif") center top / cover fixed no-repeat,
    #07080b;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(380px, 1.18fr);
  gap: 12px;
  align-items: start;
  padding: clamp(18px, 3vw, 42px) clamp(12px, 2.6vw, 28px);
}

.auth-card,
.auth-side {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.84);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3);
}

.auth-helper {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.45;
}

.auth-inline-link {
  width: fit-content;
  min-height: 30px;
  margin: 2px auto 0;
  border: 0;
  background: transparent;
  color: #ffd38b;
  cursor: pointer;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-inline-link:hover {
  color: #fff3df;
}

.auth-card {
  padding: 16px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.auth-tab {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dfe4ec;
  cursor: pointer;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.auth-tab.active,
.auth-tab:hover {
  border-color: rgba(255, 138, 43, 0.52);
  background: rgba(255, 104, 43, 0.13);
  color: #fff4e1;
}

.auth-message {
  min-height: 22px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-message[data-type="error"] {
  color: #ff9a91;
}

.auth-message[data-type="success"] {
  color: #ffd38b;
}

.auth-form {
  display: none;
  gap: 10px;
}

.auth-form.active {
  display: grid;
}

.auth-side {
  padding: 12px;
}

.admin-layout {
  padding: clamp(12px, 2vw, 24px) clamp(12px, 2.6vw, 28px) clamp(28px, 4vw, 54px);
}

.admin-access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 85, 72, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 85, 72, 0.14), rgba(255, 138, 43, 0.08) 45%, transparent),
    rgba(8, 10, 15, 0.9);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.admin-access-panel[hidden] {
  display: none;
}

.admin-access-panel h1 {
  margin: 2px 0 6px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
}

.admin-access-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-section-tabs {
  position: sticky;
  top: 82px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 10px;
  padding: 8px;
  border: 1px solid rgba(255, 138, 43, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.88);
  backdrop-filter: blur(14px);
}

.admin-section-tab {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce1ec;
  cursor: pointer;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.admin-section-tab:hover,
.admin-section-tab.active {
  border-color: rgba(255, 138, 43, 0.5);
  background: rgba(255, 104, 43, 0.13);
  color: #fff4e1;
}

.admin-global-message {
  margin: 0 0 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.admin-global-message:empty {
  display: none;
}

.admin-queue {
  display: grid;
  gap: 10px;
}

.admin-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
}

.admin-command-center {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 10px;
  align-items: stretch;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.12), rgba(255, 61, 48, 0.05) 46%, transparent),
    rgba(8, 10, 15, 0.86);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.admin-command-center h1 {
  margin: 2px 0 0;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

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

.admin-overview-grid div,
.admin-top-votes a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.admin-overview-grid div {
  display: grid;
  gap: 2px;
  min-height: 66px;
  padding: 8px;
}

.admin-overview-grid strong {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.05rem;
}

.admin-overview-grid span,
.admin-overview-grid small {
  color: var(--muted);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-top-votes {
  display: grid;
  gap: 6px;
}

.admin-signal-stack {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-alert-board {
  display: grid;
  gap: 7px;
}

.admin-alert-card {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.admin-alert-card[data-level="warning"],
.admin-alert-card[data-level="critical"] {
  border-color: rgba(255, 138, 43, 0.25);
  background: rgba(255, 104, 43, 0.08);
}

.admin-alert-card[data-level="critical"] {
  border-color: rgba(255, 85, 72, 0.32);
}

.admin-alert-card strong {
  color: #ffd38b;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.98rem;
}

.admin-alert-card span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.admin-top-votes a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 7px 8px;
  color: #f7f4ed;
}

.admin-top-votes span {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-top-votes strong {
  overflow: hidden;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-top-votes em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.admin-slot-panel {
  margin-bottom: 12px;
}

.admin-wallet-panel {
  margin-bottom: 12px;
}

.admin-users-panel,
.admin-ledger-panel,
.admin-vote-panel,
.admin-maintenance-panel,
.admin-pricing-panel,
.admin-audit-panel {
  margin-bottom: 12px;
}

.admin-legal-panel {
  margin-bottom: 12px;
}

.admin-wallet-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-credit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 138, 43, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.7);
}

.admin-credit-form .button {
  align-self: end;
}

.admin-credit-board {
  display: grid;
  gap: 8px;
  max-height: 330px;
  overflow: auto;
  padding-right: 4px;
}

.admin-credit-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-credit-card h2 {
  margin: 7px 0 3px;
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.admin-credit-card p {
  margin: 0;
  color: var(--muted);
}

.admin-credit-card dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.admin-credit-card dt {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-credit-card dd {
  margin: 0;
  color: #f3e7cf;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.admin-user-board,
.admin-vote-log {
  display: grid;
  gap: 8px;
  max-height: 390px;
  overflow: auto;
  padding-right: 4px;
}

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

.admin-order-board,
.admin-wallet-history,
.admin-maintenance-board,
.admin-notification-board,
.admin-mail-board,
.admin-audit-board {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.admin-package-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.admin-package-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 138, 43, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.035);
}

.admin-package-card h2 {
  margin: 7px 0 3px;
  color: #ffd38b;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.admin-package-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-package-card .field {
  gap: 3px;
}

.admin-package-card input {
  min-height: 36px;
}

.toggle-field {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f6e6c5;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.toggle-field input {
  width: 18px;
  height: 18px;
  accent-color: #ff8a2b;
}

.admin-slot-create {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 160px auto;
  gap: 8px;
  align-items: end;
  padding: 10px;
  border: 1px solid rgba(255, 138, 43, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.72);
}

.admin-system-status {
  margin-bottom: 10px;
}

.admin-system-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 138, 43, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.035);
}

.admin-system-card h2 {
  margin: 7px 0 3px;
  color: #ffd38b;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.08rem;
}

.admin-system-card p {
  margin: 0;
  color: var(--muted);
}

.admin-system-card dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.admin-system-card dt {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-system-card dd {
  margin: 0;
  color: #f3e7cf;
  font-size: 0.82rem;
}

.admin-user-card,
.admin-ledger-card,
.admin-vote-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(300px, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 43, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.admin-user-card h2,
.admin-ledger-card h2,
.admin-vote-card h2 {
  margin: 7px 0 3px;
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.03rem;
  overflow-wrap: anywhere;
}

.admin-user-card p,
.admin-ledger-card p,
.admin-vote-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-user-card dl,
.admin-ledger-card dl,
.admin-vote-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.admin-ledger-card dl,
.admin-vote-card dl {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-user-card dt,
.admin-ledger-card dt,
.admin-vote-card dt {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-user-card dd,
.admin-ledger-card dd,
.admin-vote-card dd {
  margin: 0;
  color: #f3e7cf;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.admin-inventory-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.admin-inventory-summary div,
.admin-slot-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-inventory-summary div {
  display: grid;
  gap: 2px;
  min-height: 78px;
  padding: 10px;
}

.admin-inventory-summary strong {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.05rem;
}

.admin-inventory-summary span,
.admin-slot-card h2 {
  color: #f7f4ed;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-inventory-summary small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-inventory-summary .is-sold-out {
  border-color: rgba(255, 85, 72, 0.26);
}

.admin-slot-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
}

.admin-slot-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 180px;
  padding: 10px;
  border-left: 3px solid rgba(255, 255, 255, 0.14);
}

.admin-slot-card h2 {
  margin: 6px 0 2px;
  font-size: 1rem;
}

.admin-slot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.slot-state {
  width: fit-content;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dce1ec;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-slot-card dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.admin-slot-card dl div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px;
}

.admin-slot-card dt {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-slot-card dd,
.admin-slot-card a {
  margin: 0;
  color: #f3e7cf;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.slot-status-open {
  border-left-color: rgba(92, 214, 139, 0.75);
}

.slot-status-reserved {
  border-left-color: rgba(255, 138, 43, 0.78);
}

.slot-status-pending-review {
  border-left-color: rgba(90, 190, 255, 0.72);
}

.slot-status-active {
  border-left-color: rgba(255, 211, 139, 0.82);
}

.slot-status-disabled,
.slot-status-expired {
  opacity: 0.72;
}

.admin-complaint-board {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.admin-complaint-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.7fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-complaint-card h2 {
  margin: 8px 0 4px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.08rem;
}

.admin-complaint-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.admin-complaint-card dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.admin-complaint-card dt {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-complaint-card dd {
  margin: 0;
  color: #f3e7cf;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.status-filter {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce1ec;
  cursor: pointer;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.status-filter:hover,
.status-filter.active {
  border-color: rgba(255, 138, 43, 0.52);
  background: rgba(255, 104, 43, 0.13);
  color: #fff4e1;
}

.status-filter:hover {
  transform: translateY(-1px);
}

.admin-submission,
.empty-state {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px;
}

.admin-submission {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(260px, 1fr) minmax(260px, 0.85fr) auto;
  gap: 12px;
  align-items: center;
}

.admin-preview {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.admin-preview img {
  display: block;
  width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.admin-submission h2 {
  margin: 8px 0 4px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.25rem;
}

.admin-submission p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.4;
}

.admin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.admin-links a {
  color: #ffd38b;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-media-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.admin-media-strip img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 138, 43, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  object-fit: cover;
}

.admin-inspection {
  display: grid;
  gap: 8px;
}

.inspection-list {
  display: grid;
  gap: 6px;
}

.inspection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.inspection-item span {
  color: var(--subtle);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inspection-item strong {
  color: #fff3df;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
  text-align: right;
}

.inspection-item[data-state="pass"] {
  border-color: rgba(92, 214, 139, 0.28);
  background: rgba(92, 214, 139, 0.08);
}

.inspection-item[data-state="warn"] {
  border-color: rgba(255, 138, 43, 0.3);
  background: rgba(255, 138, 43, 0.08);
}

.inspection-item[data-state="fail"] {
  border-color: rgba(255, 61, 48, 0.32);
  background: rgba(255, 61, 48, 0.08);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.reviewed-state {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #b8c0cf;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
}

.empty-state {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.empty-state strong {
  color: #ffd38b;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.95rem;
}

.empty-state span,
.empty-state em {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.35;
  text-transform: none;
}

.admin-action-note {
  display: block;
  grid-column: 1 / -1;
  color: #ffbe7f;
  font-size: 0.76rem;
  line-height: 1.3;
}

.legal-layout {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2.5vw, 32px) clamp(12px, 2.6vw, 28px) clamp(28px, 4vw, 54px);
}

.legal-hero,
.legal-card,
.legal-complaint-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.legal-hero {
  padding: clamp(16px, 2.5vw, 28px);
}

.legal-hero h1 {
  max-width: 960px;
  margin-bottom: 10px;
}

.legal-hero p {
  max-width: 900px;
  color: var(--muted);
  line-height: 1.5;
}

.legal-jumpbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.legal-jumpbar a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 138, 43, 0.22);
  border-radius: 8px;
  color: #ffd38b;
  background: rgba(255, 138, 43, 0.08);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

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

.legal-card,
.legal-complaint-panel {
  padding: 14px;
}

.legal-card h2 {
  margin: 6px 0 8px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.28rem;
}

.legal-card p,
.legal-card li {
  color: #cfd5df;
  line-height: 1.48;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

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

.legal-form .button {
  justify-self: start;
}

.crimson-run .banner-layer {
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 138, 43, 0.42), transparent 18%),
    linear-gradient(135deg, #2b0d12 0%, #891d21 44%, #151923 100%);
}

.ember-line .banner-layer {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 176, 74, 0.34), transparent 20%),
    linear-gradient(135deg, #131923 0%, #78281d 46%, #211412 100%);
}

.gold-surge .banner-layer {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 219, 118, 0.42), transparent 18%),
    linear-gradient(135deg, #10141d 0%, #5c211c 44%, #6d4b16 100%);
}

.violet-red .banner-layer {
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 61, 48, 0.35), transparent 18%),
    linear-gradient(135deg, #151723 0%, #502044 45%, #931d25 100%);
}

.steel-fire .banner-layer {
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 109, 43, 0.32), transparent 18%),
    linear-gradient(135deg, #0f1720 0%, #263342 44%, #7d2119 100%);
}

.amber-core .banner-layer {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 180, 74, 0.45), transparent 21%),
    linear-gradient(135deg, #160e0d 0%, #9a2a1d 48%, #1a1c21 100%);
}

.red-circuit .banner-layer {
  background:
    radial-gradient(circle at 18% 70%, rgba(255, 61, 48, 0.4), transparent 18%),
    linear-gradient(135deg, #0d1118 0%, #3a1d23 45%, #bf3524 100%);
}

.smoke-gold .banner-layer {
  background:
    radial-gradient(circle at 80% 26%, rgba(214, 168, 79, 0.38), transparent 18%),
    linear-gradient(135deg, #0d1016 0%, #352828 48%, #8a551d 100%);
}

@keyframes driftLine {
  from {
    transform: translateY(-260px);
  }
  to {
    transform: translateY(calc(100vh + 260px));
  }
}

@keyframes bannerSweep {
  0%,
  42% {
    transform: translateX(-120%);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  76%,
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes gridSlide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 20px;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    filter: saturate(1) brightness(0.98);
  }
  50% {
    filter: saturate(1.18) brightness(1.08);
  }
}

html,
body,
button,
a,
input,
textarea,
select,
label,
[role="button"],
.button,
.package-option,
.tab,
.race-option,
.filter-reset,
.status-filter,
.auth-tab,
.upload-tile,
.checkout-package,
.vote-button {
  cursor: url("assets/cursors/pvpland_cursor.png") 7 3, url("assets/cursors/pvpland_cursor_32.png") 7 3, auto;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .legendary-showcase {
    align-self: auto;
  }

  .banner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .admin-slot-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

  .slot-capacity {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topic-hero,
  .topic-board {
    grid-template-columns: 1fr;
  }

  .topic-banner-wrap {
    min-height: auto;
  }

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

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

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

  .admin-inventory-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vote-board {
    grid-template-columns: 1fr;
  }

  .vote-ranking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-slot-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-submission {
    grid-template-columns: 1fr;
  }

  .admin-complaint-card {
    grid-template-columns: 1fr;
  }

  .legal-grid,
  .legal-form {
    grid-template-columns: 1fr;
  }

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

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions .button {
    flex: 1;
  }

  .panel-status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .wallet-panel,
  .admin-wallet-grid,
  .admin-credit-card,
  .admin-ledger-grid,
  .admin-user-card,
  .admin-ledger-card,
  .admin-vote-card,
  .admin-system-card,
  .campaign-ops,
  .analytics-deep-panel,
  .admin-package-board,
  .admin-slot-create,
  .admin-command-center {
    grid-template-columns: 1fr;
  }

  .admin-credit-card dl,
  .admin-user-card dl,
  .admin-ledger-card dl,
  .admin-system-card dl,
  .admin-vote-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .campaign-order-row,
  .analytics-server-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: 100%;
  }

  .site-header {
    position: static;
    align-items: stretch;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions,
  .hero-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions .button,
  .hero-actions .button {
    flex: 1 1 150px;
  }

  .header-actions .asset-button,
  .hero-actions .asset-button {
    flex: 0 0 var(--asset-button-width, 150px);
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .hero {
    padding-top: 24px;
  }

  .legendary-banner {
    min-height: auto;
  }

  .banner-stat {
    display: none;
  }

  .featured-grid,
  .banner-grid,
  .product-grid,
  .admin-package-board,
  .admin-slot-create,
  .admin-slot-board {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .filter-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .filter-result {
    justify-self: start;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .tab {
    flex: 0 0 auto;
  }

  .field-grid,
  .upload-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .button {
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .featured-banner {
    min-height: 160px;
  }

  .ad-ribbon {
    grid-template-columns: 1fr;
  }

  .slot-capacity {
    grid-template-columns: 1fr;
  }

  .server-stats {
    grid-template-columns: 1fr;
  }

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

  .topic-actions .button {
    flex: 1 1 140px;
  }

  .toplist-row dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .topic-stats {
    grid-template-columns: 1fr;
  }

  .panel-status,
  .package-strip,
  .checkout-packages,
    .workflow-steps,
    .checkout-progress,
    .launch-checklist,
    .preview-gallery,
    .campaign-timeline-grid,
    .campaign-order-row,
    .analytics-server-row,
    .analytics-deep-panel,
    .analytics-trend-row,
    .analytics-target-card,
    .payment-provider-grid,
    .toplist-row dl,
    .admin-inventory-summary,
    .admin-overview-grid,
    .admin-package-board,
    .admin-slot-create,
    .analytics-strip,
    .admin-credit-form,
    .admin-credit-card dl,
    .admin-user-card dl,
    .admin-ledger-card dl,
    .admin-system-card,
    .admin-system-card dl,
    .admin-vote-card dl,
    .vote-ranking-list,
    .topic-vote-panel {
    grid-template-columns: 1fr;
  }

  .server-vote {
    grid-template-columns: auto 1fr auto;
  }

  .server-vote img {
    display: none;
  }

  .campaign-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .campaign-notice .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
