﻿:root {
  --bg: #050302;
  --panel: rgba(20, 12, 7, .82);
  --panel-2: rgba(9, 6, 4, .94);
  --gold: #f7b24a;
  --gold-soft: #ffe7ad;
  --gold-deep: #b86414;
  --ember: #f27720;
  --red: #c74932;
  --green: #78d889;
  --blue: #9ed1ff;
  --text: #fff4d6;
  --muted: #c9b89c;
  --line: rgba(255, 226, 166, .18);
  --line-strong: rgba(255, 226, 166, .42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background:
    radial-gradient(circle at 50% -18%, rgba(247,178,74,.30), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(242,119,32,.14), transparent 26%),
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,226,166,.06), transparent 18%, rgba(0,0,0,.28));
  z-index: -1;
}
.page-glow {
  position: fixed;
  inset: auto 0 0 0;
  height: 260px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(184,100,20,.17), transparent 65%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}
.brand strong { display:block; color: var(--gold-soft); font-size: 29px; letter-spacing: .02em; }
.brand span { display:block; color: var(--muted); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .2em; }
nav { display:flex; align-items:center; flex-wrap:wrap; gap: 10px; }
nav a, .button, button {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 42px; padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 226, 166, .055);
  color: var(--gold-soft);
  font-weight: 950;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
nav a:hover, .button:hover, button:hover { transform: translateY(-1px); border-color: var(--line-strong); box-shadow: 0 12px 28px rgba(0,0,0,.24); }
.nav-cta, .button.primary, button {
  color: #1b1008;
  border-color: rgba(255, 226, 166, .70);
  background: linear-gradient(180deg, #ffe2a1, #f49a26 62%, #b95a10);
}
button[disabled] { cursor:not-allowed; filter: grayscale(.45); opacity:.72; transform:none; }
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: center;
  padding: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background:
    linear-gradient(120deg, rgba(255,226,166,.12), transparent 42%),
    radial-gradient(circle at 86% 28%, rgba(242,119,32,.24), transparent 33%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 48%),
    var(--panel);
  box-shadow: 0 28px 90px rgba(0,0,0,.46);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,226,166,.08) 42%, transparent 58%);
  transform: translateX(-80%);
  animation: sweep 7s ease-in-out infinite;
}
@keyframes sweep { 0%, 55% { transform: translateX(-85%); } 78%, 100% { transform: translateX(85%); } }
.eyebrow { margin:0 0 12px; color: var(--gold); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .18em; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; color: var(--gold-soft); }
h1 { max-width: 820px; font-size: clamp(46px, 7vw, 88px); line-height: .92; text-shadow: 0 8px 28px rgba(0,0,0,.58); }
h2 { font-size: 38px; }
h3 { font-size: 25px; }
.lead { max-width: 760px; color: #e0cfb2; font-size: 18px; line-height: 1.7; }
.lead.small { max-width: 780px; font-size: 16px; }
.hero-actions { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 24px; }
.trust-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.trust-row span, .mini-rule {
  display:inline-flex;
  min-height: 30px;
  align-items:center;
  padding:0 11px;
  border:1px solid rgba(255,226,166,.20);
  border-radius:999px;
  color:#f6d799;
  background:rgba(0,0,0,.22);
  font-size:12px;
  font-weight:900;
}
.side-panel, .card, .server-card, .panel, .criteria article {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255,226,166,.06), transparent 44%), var(--panel-2);
}
.side-panel { padding: 26px; }
.side-panel strong { display:block; margin:8px 0 14px; color:var(--gold-soft); font-size:36px; font-family: Georgia, serif; }
.hero-card .mini-rule { display:flex; width:max-content; margin-top:8px; border-radius:7px; }
.stats { display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; margin:18px 0 20px; }
.stat { padding: 18px; border:1px solid var(--line); border-radius:8px; background: rgba(8,5,3,.78); }
.stat span { color:var(--muted); font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.12em; }
.stat strong { display:block; margin-top:7px; color:var(--gold-soft); font-size:24px; }
.criteria { display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin: 0 0 34px; }
.criteria article { padding:22px; min-height: 170px; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:20px; margin: 34px 0 18px; }
.filters { display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.filters a { padding:9px 12px; border:1px solid var(--line); border-radius:999px; color:var(--muted); background:rgba(255,226,166,.04); font-weight:850; font-size:13px; }
.filters a.active { color:#1b1008; background:var(--gold); }
.server-grid { display:grid; gap:14px; }
.server-card {
  position: relative;
  overflow: hidden;
  display:grid; grid-template-columns: 76px 184px minmax(0, 1fr) 160px 130px; gap:18px;
  align-items:center; padding:18px;
}
.server-card.top-server { border-color: rgba(255,226,166,.34); }
.server-card.top-server::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(247,178,74,.11), transparent 34%);
}
.server-card > * { position: relative; z-index: 1; }
.rank { width:64px; height:64px; display:grid; place-items:center; border-radius:10px; color:#1b1008; background:linear-gradient(180deg,#ffe6a7,#f49a26); font-size:25px; font-weight:950; box-shadow:0 10px 32px rgba(242,119,32,.22); }
.server-title { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.server-title h3 { font-family: Inter, Segoe UI, Arial, sans-serif; font-size:22px; }
.badge { display:inline-flex; align-items:center; min-height:24px; padding:0 9px; border:1px solid var(--line); border-radius:999px; color:var(--gold-soft); background:rgba(255,226,166,.07); font-size:12px; font-weight:900; }
.badge.green { color:#b8f4c1; border-color:rgba(120,216,137,.3); }
.badge.hot { color:#1b1008; background:var(--gold); }
.desc { color:#d7c6ab; line-height:1.55; }
.votes { text-align:right; }
.votes strong { display:block; color:var(--gold-soft); font-size:28px; }
.votes span { color:var(--muted); font-size:12px; font-weight:900; text-transform:uppercase; }
.panel { margin-top:30px; padding:26px; }
.form-panel h1, .vote-panel h1 { font-size: clamp(42px, 6vw, 76px); }
.form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; margin-top:22px; }
label { display:block; margin-bottom:6px; color:var(--gold-soft); font-size:13px; font-weight:900; }
input, select, textarea {
  width:100%; min-height:42px; border:1px solid var(--line); border-radius:7px; padding:10px 12px;
  color:var(--text); background:rgba(5,4,3,.76); font:inherit;
}
textarea { min-height:132px; resize:vertical; }
.wide { grid-column: 1 / -1; }
table { width:100%; border-collapse: collapse; min-width:850px; }
th, td { padding:13px 12px; border-bottom:1px solid var(--line); text-align:left; }
th { color:var(--gold); font-size:12px; text-transform:uppercase; letter-spacing:.12em; }
td { color:#ead7ba; }
code { color:#ffe7ad; font-size:12px; overflow-wrap:anywhere; }
.table-wrap { overflow-x:auto; }
.notice { margin:18px 0; padding:14px 16px; border:1px solid rgba(120,216,137,.28); border-radius:8px; background:rgba(43,128,55,.12); color:#c8f4ce; }
.error { border-color:rgba(255,88,88,.35); background:rgba(255,88,88,.12); color:#ffb3a8; }
.action-row { display:flex; gap:8px; flex-wrap:wrap; }
.empty-state { margin-top:0; }
.footer { margin:44px 0 24px; padding-top:20px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:18px; color:var(--muted); }
@media (max-width: 980px) {
  .topbar, .footer { display:grid; }
  .hero { grid-template-columns:1fr; padding:30px; }
  .stats, .criteria { grid-template-columns: repeat(2, 1fr); }
  .section-head { display:grid; }
  .filters { justify-content:flex-start; }
  .server-card { grid-template-columns: 64px 1fr; }
  .votes { text-align:left; }
  .form-grid { grid-template-columns:1fr; }
}
@media (max-width: 620px) {
  .shell { width:min(100% - 20px, 1220px); }
  .hero { padding:22px; min-height:auto; }
  h1 { font-size: 43px; }
  .stats, .criteria { grid-template-columns:1fr; }
  .server-card { grid-template-columns:1fr; }
}
.server-thumb {
  position: relative;
  z-index: 1;
  width: 184px;
  height: 82px;
  border: 1px solid rgba(255,226,166,.24);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -30px 60px rgba(0,0,0,.38);
}
.server-thumb.placeholder {
  display:grid;
  place-items:center;
  color:#1b1008;
  background:linear-gradient(180deg,#ffe6a7,#f49a26);
  font-size:38px;
  font-weight:950;
}
.server-main { min-width:0; }
.meta-strip {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:11px;
}
.meta-strip span {
  min-height:26px;
  display:inline-flex;
  align-items:center;
  padding:0 9px;
  border:1px solid rgba(255,226,166,.16);
  border-radius:999px;
  color:#f6d799;
  background:rgba(0,0,0,.18);
  font-size:12px;
  font-weight:850;
}
.profile-banner {
  margin-top: 30px;
  min-height: 260px;
  border: 1px solid rgba(255,226,166,.34);
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -120px 160px rgba(0,0,0,.58), 0 28px 90px rgba(0,0,0,.40);
}
.server-hero { margin-top: 18px; }
.server-detail-card strong { font-size: 31px; }
.detail-grid {
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  margin-top: 18px;
}
.detail-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.detail-grid b {
  color: var(--gold-soft);
  text-align: right;
}
.feature-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 20px;
}
.feature-pill {
  padding: 16px;
  border:1px solid rgba(255,226,166,.18);
  border-radius:8px;
  color:#ffe7ad;
  background:rgba(255,226,166,.055);
  font-weight:850;
}
small {
  display:block;
  margin-top:6px;
  color:var(--muted);
  line-height:1.4;
}
@media (max-width: 980px) {
  .server-thumb { width:100%; max-width:320px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns:1fr; }
  .profile-banner { min-height:160px; }
}
.auth-hero {
  margin-top: 34px;
  display:grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap:28px;
  align-items:stretch;
}
.auth-copy, .auth-panel {
  border:1px solid var(--line-strong);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,226,166,.07), transparent 52%), var(--panel);
  box-shadow:0 28px 90px rgba(0,0,0,.38);
}
.auth-copy {
  min-height: 520px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:56px;
  overflow:hidden;
  position:relative;
}
.auth-copy::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 82% 22%, rgba(242,119,32,.22), transparent 34%);
}
.auth-copy > * { position:relative; z-index:1; }
.auth-panel {
  padding:30px;
}
.auth-panel h2 { font-size:34px; }
.auth-form {
  display:grid;
  gap:14px;
  margin-top:22px;
}
.auth-note {
  color:var(--muted);
  margin:18px 0 0;
}
.auth-note a {
  color:var(--gold-soft);
  font-weight:900;
}
.compact-auth .auth-copy { min-height: 390px; }
.onboarding-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin:18px 0 34px;
}
.onboarding-grid article, .promo-plan, .promotion-preview, .promotion-strip {
  border:1px solid var(--line);
  border-radius:9px;
  background:linear-gradient(180deg, rgba(255,226,166,.06), transparent 44%), var(--panel-2);
}
.onboarding-grid article {
  padding:22px;
}
.onboarding-grid span {
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:8px;
  background:linear-gradient(180deg,#ffe6a7,#f49a26);
  color:#1b1008;
  font-weight:950;
}
.onboarding-grid h3 { margin-top:18px; font-size:22px; }
.promotion-strip {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:26px;
  margin-top:18px;
}
.promotion-plans {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin:18px 0 34px;
}
.promo-plan {
  min-height:270px;
  padding:24px;
}
.promo-plan.spotlight {
  border-color:rgba(255,226,166,.44);
  box-shadow:0 22px 60px rgba(242,119,32,.14);
}
.promo-plan ul {
  margin:18px 0 0;
  padding-left:18px;
  color:#e9d6b8;
  line-height:1.8;
}
.promotion-preview {
  padding:24px;
  margin:34px 0 0;
}
.promo-mini-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.promo-mini-grid article {
  padding:18px;
  border:1px solid rgba(255,226,166,.16);
  border-radius:8px;
  background:rgba(0,0,0,.20);
}
.promo-mini-grid strong {
  display:block;
  color:var(--gold-soft);
  margin-bottom:8px;
}
.promo-mini-grid span {
  color:var(--muted);
  line-height:1.5;
}
@media (max-width: 980px) {
  .auth-hero { grid-template-columns:1fr; }
  .auth-copy { min-height:auto; padding:32px; }
  .onboarding-grid, .promotion-plans, .promo-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .promotion-strip { display:grid; }
}
@media (max-width: 620px) {
  .onboarding-grid, .promotion-plans, .promo-mini-grid { grid-template-columns:1fr; }
}
.submit-hero, .promo-stage {
  margin-top:34px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 430px;
  gap:28px;
  align-items:stretch;
}
.submit-copy, .promo-stage > div, .promo-scorecard, .fast-submit-panel {
  border:1px solid var(--line-strong);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,226,166,.07), transparent 52%), var(--panel);
  box-shadow:0 28px 90px rgba(0,0,0,.38);
}
.submit-copy, .promo-stage > div {
  min-height:520px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:56px;
  position:relative;
  overflow:hidden;
}
.submit-copy::after, .promo-stage > div::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 78% 22%, rgba(242,119,32,.23), transparent 34%);
}
.submit-copy > *, .promo-stage > div > * { position:relative; z-index:1; }
.submit-preview {
  width:min(720px, 100%);
  display:grid;
  grid-template-columns:64px 170px 1fr;
  align-items:center;
  gap:14px;
  margin:26px 0 6px;
  padding:14px;
  border:1px solid rgba(255,226,166,.20);
  border-radius:10px;
  background:rgba(0,0,0,.24);
}
.preview-rank {
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#1b1008;
  background:linear-gradient(180deg,#ffe6a7,#f49a26);
  font-weight:950;
  font-size:22px;
}
.preview-banner {
  height:64px;
  border-radius:8px;
  border:1px solid rgba(255,226,166,.22);
  background:linear-gradient(135deg, rgba(255,226,166,.45), rgba(242,119,32,.22), rgba(0,0,0,.38));
}
.submit-preview strong { display:block; color:var(--gold-soft); font-size:22px; }
.submit-preview span { color:var(--muted); font-weight:800; }
.owner-value-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin:18px 0 34px;
}
.owner-value-grid article {
  min-height:180px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:9px;
  background:linear-gradient(180deg, rgba(255,226,166,.06), transparent 44%), var(--panel-2);
}
.promo-scorecard {
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.promo-scorecard strong {
  color:var(--gold-soft);
  font-size:58px;
  font-family:Georgia, "Times New Roman", serif;
  line-height:1;
}
.promo-scorecard span { margin-top:14px; color:var(--muted); font-weight:900; }
.promo-showcase {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin:18px 0 34px;
}
.promo-card {
  min-height:320px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:9px;
  background:linear-gradient(180deg, rgba(255,226,166,.06), transparent 44%), var(--panel-2);
}
.promo-card.hero-slot {
  border-color:rgba(255,226,166,.45);
  box-shadow:0 22px 70px rgba(242,119,32,.14);
}
.promo-tag {
  display:inline-flex;
  min-height:26px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  color:#1b1008;
  background:var(--gold);
  font-size:12px;
  font-weight:950;
  margin-bottom:16px;
}
.promo-mock {
  margin-top:22px;
  min-height:86px;
  border:1px solid rgba(255,226,166,.20);
  border-radius:8px;
  background:rgba(0,0,0,.23);
  padding:16px;
}
.promo-mock span {
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:8px;
  color:#1b1008;
  background:linear-gradient(180deg,#ffe6a7,#f49a26);
  font-weight:950;
  margin-right:10px;
}
.promo-mock b { color:var(--gold-soft); display:block; margin-bottom:6px; }
.promo-mock em { color:var(--muted); font-style:normal; font-weight:800; }
.banner-mock {
  background:linear-gradient(135deg, rgba(255,226,166,.46), rgba(242,119,32,.28), rgba(0,0,0,.44));
}
.promo-roadmap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:9px;
  background:linear-gradient(180deg, rgba(255,226,166,.06), transparent 44%), var(--panel-2);
}
@media (max-width: 980px) {
  .submit-hero, .promo-stage { grid-template-columns:1fr; }
  .submit-copy, .promo-stage > div { min-height:auto; padding:32px; }
  .owner-value-grid, .promo-showcase { grid-template-columns:repeat(2, 1fr); }
  .promo-roadmap { display:grid; }
}
@media (max-width: 620px) {
  .submit-preview { grid-template-columns:1fr; }
  .owner-value-grid, .promo-showcase { grid-template-columns:1fr; }
}

.dashboard-cards {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin:20px 0;
}
.dashboard-cards article {
  padding:18px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(8,5,3,.78);
}
.dashboard-cards span {
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.dashboard-cards strong {
  display:block;
  margin-top:8px;
  color:var(--gold-soft);
  font-size:30px;
}
.score-line {
  display:grid;
  grid-template-columns:48px minmax(120px, 1fr);
  gap:10px;
  align-items:center;
}
.score-line strong { color:var(--gold-soft); }
.score-line span {
  height:8px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,226,166,.12);
}
.score-line i {
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, #f49a26, #ffe6a7);
}
.profile-score-card {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin:20px 0;
  padding:20px;
  border:1px solid var(--line);
  border-radius:9px;
  background:rgba(0,0,0,.18);
}
.score-ring {
  width:94px;
  height:94px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:999px;
  color:#1b1008;
  background:conic-gradient(#ffe6a7, #f49a26, rgba(255,226,166,.18));
}
.score-ring span {
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#120905;
  color:var(--gold-soft);
  font-weight:950;
}
@media (max-width: 620px) {
  .dashboard-cards { grid-template-columns:1fr; }
  .profile-score-card { display:grid; }
}


.premium-finder {
  position:relative;
  overflow:hidden;
  margin:18px 0 18px;
  padding:28px;
  border:1px solid var(--line-strong);
  border-radius:10px;
  background:
    linear-gradient(135deg, rgba(255,226,166,.10), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(242,119,32,.20), transparent 34%),
    var(--panel-2);
  box-shadow:0 24px 80px rgba(0,0,0,.34);
}
.premium-finder::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(110deg, transparent, rgba(255,226,166,.07), transparent);
  transform:translateX(-85%);
  animation:sweep 8s ease-in-out infinite;
}
.premium-finder > * { position:relative; z-index:1; }
.finder-hero {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}
.finder-hero h2 {
  font-size:clamp(34px, 5vw, 58px);
  line-height:.98;
}
.finder-summary {
  min-width:160px;
  padding:18px;
  border:1px solid rgba(255,226,166,.20);
  border-radius:9px;
  background:rgba(0,0,0,.22);
  text-align:right;
}
.finder-summary strong {
  display:block;
  color:var(--gold-soft);
  font-size:38px;
  line-height:1;
}
.finder-summary span {
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
}
.premium-finder-form {
  display:grid;
  gap:16px;
}
.finder-search-shell label {
  display:block;
  margin-bottom:8px;
}
.finder-search {
  display:grid;
  grid-template-columns:44px minmax(0, 1fr) 132px;
  align-items:center;
  border:1px solid rgba(255,226,166,.28);
  border-radius:9px;
  background:rgba(3,2,1,.72);
  box-shadow:inset 0 0 0 1px rgba(255,226,166,.04);
}
.finder-search span {
  display:grid;
  place-items:center;
  color:var(--gold);
  font-size:25px;
  font-weight:950;
}
.finder-search input {
  border:0;
  background:transparent;
  min-height:54px;
  padding-left:0;
}
.finder-search button {
  margin:6px;
  min-height:42px;
}
.finder-chip-row {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.finder-chip-row a, .quick-links a {
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border:1px solid rgba(255,226,166,.18);
  border-radius:999px;
  background:rgba(255,226,166,.045);
  color:var(--muted);
  font-size:13px;
  font-weight:900;
}
.finder-chip-row a.active, .quick-links a:hover {
  color:#1b1008;
  background:var(--gold);
  border-color:rgba(255,226,166,.72);
}
.finder-fields {
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:12px;
}
.finder-fields div {
  min-width:0;
}
.finder-actions {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.finder-actions > div {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.premium-toggle {
  min-height:42px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 12px;
  border:1px solid rgba(255,226,166,.20);
  border-radius:999px;
  background:rgba(0,0,0,.20);
  color:var(--gold-soft);
  font-weight:900;
}
.premium-toggle input {
  width:auto;
  min-height:auto;
}
.premium-toggle span {
  width:9px;
  height:9px;
  border-radius:999px;
  background:var(--gold);
  box-shadow:0 0 18px rgba(247,178,74,.75);
}
.finder-quick {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
  margin:0 0 34px;
}
.finder-quick article {
  padding:20px;
  border:1px solid var(--line);
  border-radius:9px;
  background:linear-gradient(180deg, rgba(255,226,166,.055), transparent 44%), var(--panel-2);
}
.quick-links {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}
@media (max-width: 1100px) {
  .finder-fields { grid-template-columns:repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .finder-hero, .finder-actions { display:grid; }
  .finder-summary { text-align:left; }
  .finder-search { grid-template-columns:38px minmax(0, 1fr); }
  .finder-search button { grid-column:1 / -1; }
  .finder-fields, .finder-quick { grid-template-columns:1fr; }
}




.smart-suggestions {
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  padding:10px 0 0;
}
.smart-suggestions span {
  color:var(--gold);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.smart-suggestions a {
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:0 10px;
  border:1px solid rgba(255,226,166,.16);
  border-radius:999px;
  color:var(--muted);
  background:rgba(0,0,0,.18);
  font-size:12px;
  font-weight:850;
}
.premium-slots article:first-child {
  border-color:rgba(255,226,166,.42);
  background:linear-gradient(135deg, rgba(255,226,166,.14), rgba(242,119,32,.07)), rgba(0,0,0,.20);
}
.compare-form {
  margin:0;
}
.compare-toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:0 0 14px;
  padding:16px 18px;
  border:1px solid rgba(255,226,166,.22);
  border-radius:9px;
  background:linear-gradient(90deg, rgba(255,226,166,.07), transparent), rgba(0,0,0,.22);
}
.compare-toolbar .eyebrow {
  margin-bottom:4px;
}
.compare-toolbar strong {
  color:var(--gold-soft);
}
.compare-pick {
  position:absolute;
  right:14px;
  top:14px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 10px;
  border:1px solid rgba(255,226,166,.22);
  border-radius:999px;
  background:rgba(0,0,0,.50);
  color:var(--gold-soft);
  font-size:12px;
  font-weight:900;
}
.compare-pick input {
  width:auto;
  min-height:auto;
}
.compare-page h1 {
  font-size:clamp(42px, 6vw, 76px);
}
.compare-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.compare-grid.cols-2 {
  grid-template-columns:repeat(2, 1fr);
}
.compare-card {
  padding:22px;
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,226,166,.07), transparent 46%), var(--panel-2);
}
.compare-banner {
  min-height:120px;
  margin:-6px -6px 18px;
  border:1px solid rgba(255,226,166,.22);
  border-radius:8px;
  background-size:cover;
  background-position:center;
  box-shadow:inset 0 -60px 90px rgba(0,0,0,.52);
}
.compare-features {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:18px 0;
}
.compare-features span {
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:0 9px;
  border:1px solid rgba(255,226,166,.16);
  border-radius:999px;
  color:#f6d799;
  background:rgba(0,0,0,.18);
  font-size:12px;
  font-weight:850;
}
.owner-analytics {
  display:grid;
  gap:5px;
}
.owner-analytics span {
  color:#ead7ba;
  font-size:12px;
  font-weight:850;
}
@media (max-width: 980px) {
  .compare-grid, .compare-grid.cols-2 { grid-template-columns:1fr; }
  .compare-toolbar { display:grid; }
}


.toplist-hero {
  min-height:360px;
  padding:42px;
  margin-top:24px;
}
.toplist-hero h1 {
  font-size:clamp(42px, 6vw, 76px);
}
.toplist-hero .lead {
  max-width:680px;
}
@media (max-width: 760px) {
  .toplist-hero {
    padding:24px;
    min-height:auto;
  }
  .compact-finder .finder-fields {
    grid-template-columns:1fr;
  }
  .compact-head {
    padding:18px;
  }
}




.launch-hero {
  min-height:390px;
  padding:44px;
  margin-top:24px;
}
.launch-hero h1 {
  font-size:clamp(44px, 6vw, 78px);
}
.launch-next-card strong {
  display:block;
  font-size:34px;
  line-height:1.05;
}
.launch-countdown {
  display:flex;
  align-items:end;
  gap:10px;
  margin:16px 0;
}
.launch-countdown span {
  color:var(--gold-soft);
  font-size:56px;
  font-family:Georgia, "Times New Roman", serif;
  line-height:.9;
}
.launch-countdown small {
  margin:0 0 5px;
  color:var(--muted);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
}
.launch-countdown.small span {
  font-size:34px;
}
.launch-board,
.launch-timeline {
  margin-top:22px;
}
.launch-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.launch-card {
  position:relative;
  overflow:hidden;
  padding:20px;
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,226,166,.06), transparent 44%), var(--panel-2);
}
.launch-card.next-up {
  border-color:rgba(255,226,166,.48);
  box-shadow:0 24px 80px rgba(242,119,32,.14);
}
.launch-card.next-up::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(110deg, transparent, rgba(255,226,166,.08), transparent);
  transform:translateX(-90%);
  animation:sweep 8s ease-in-out infinite;
}
.launch-card > * {
  position:relative;
  z-index:1;
}
.launch-banner {
  display:block;
  min-height:130px;
  margin:-4px -4px 18px;
  border:1px solid rgba(255,226,166,.22);
  border-radius:8px;
  background-size:cover;
  background-position:center;
  box-shadow:inset 0 -70px 110px rgba(0,0,0,.52);
}
.launch-card-head,
.launch-footer {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.launch-date-pill {
  min-width:82px;
  padding:12px;
  border:1px solid rgba(255,226,166,.24);
  border-radius:9px;
  text-align:center;
  background:rgba(0,0,0,.24);
}
.launch-date-pill strong {
  display:block;
  color:var(--gold-soft);
  font-size:22px;
}
.launch-date-pill span {
  color:var(--muted);
  font-size:12px;
  font-weight:900;
}
.timeline-list {
  display:grid;
  gap:10px;
}
.timeline-list article {
  display:grid;
  grid-template-columns:120px minmax(0, 1fr) auto;
  gap:16px;
  align-items:center;
  padding:16px;
  border:1px solid var(--line);
  border-radius:9px;
  background:rgba(8,5,3,.76);
}
.timeline-date {
  color:var(--gold);
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.launch-notes {
  margin-top:22px;
}
@media (max-width: 980px) {
  .launch-grid {
    grid-template-columns:1fr;
  }
  .timeline-list article {
    grid-template-columns:1fr;
  }
}
@media (max-width: 620px) {
  .launch-hero {
    padding:24px;
    min-height:auto;
  }
  .launch-card-head,
  .launch-footer {
    display:grid;
  }
}


.horizontal-finder {
  margin:18px 0 18px;
  padding:22px;
}
.horizontal-finder .finder-hero {
  align-items:center;
  margin-bottom:16px;
}
.horizontal-finder .finder-hero h2 {
  font-size:clamp(30px, 4vw, 46px);
}
.horizontal-finder .premium-finder-form {
  gap:12px;
}
.horizontal-finder .finder-fields {
  grid-template-columns:1.2fr 1.1fr .7fr .7fr 1fr 1.4fr;
}
.horizontal-finder .finder-actions {
  align-items:center;
}
.horizontal-finder .finder-actions > div:last-child {
  justify-content:flex-end;
}
.inline-trends {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
#toplist {
  margin-top:18px;
}
#toplist .compact-head {
  margin-top:0;
}
@media (max-width: 1100px) {
  .horizontal-finder .finder-fields {
    grid-template-columns:repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .horizontal-finder .finder-fields {
    grid-template-columns:1fr;
  }
  .horizontal-finder .finder-actions {
    display:grid;
  }
  .horizontal-finder .finder-actions > div:last-child {
    justify-content:stretch;
  }
}



.server-profile-shell {
  margin-top:24px;
}
.profile-cover {
  min-height:260px;
  display:flex;
  align-items:end;
  padding:34px;
  border:1px solid rgba(255,226,166,.34);
  border-radius:10px;
  background-size:cover;
  background-position:center;
  box-shadow:inset 0 -150px 180px rgba(0,0,0,.76), 0 28px 90px rgba(0,0,0,.38);
}
.profile-cover h1 {
  font-size:clamp(44px, 7vw, 82px);
}
.profile-cover p:last-child {
  max-width:720px;
  color:#ead7ba;
  font-size:17px;
  line-height:1.55;
}
.server-profile-grid {
  display:grid;
  grid-template-columns:minmax(0, 1fr) 340px;
  gap:18px;
  align-items:start;
  margin-top:18px;
}
.server-profile-main {
  display:grid;
  gap:16px;
  min-width:0;
}
.profile-overview-card,
.profile-content-card,
.profile-side-card {
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,226,166,.06), transparent 46%), var(--panel-2);
}
.profile-overview-card {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  padding:26px;
}
.profile-overview-card h1 {
  font-size:clamp(42px, 6vw, 72px);
}
.profile-badges {
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
  min-width:220px;
}
.profile-badges span {
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 11px;
  border:1px solid rgba(255,226,166,.20);
  border-radius:999px;
  color:#f6d799;
  background:rgba(0,0,0,.22);
  font-size:12px;
  font-weight:900;
}
.profile-content-card {
  padding:26px;
}
.profile-content-card h2 {
  font-size:34px;
}
.profile-copy {
  display:grid;
  gap:14px;
  margin-top:18px;
}
.profile-copy p {
  margin:0;
  max-width:850px;
  color:#ead7ba;
  line-height:1.75;
  font-size:15px;
}
.profile-feature-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-top:18px;
}
.profile-sidebar {
  position:sticky;
  top:14px;
  display:grid;
  gap:14px;
}
.profile-side-card {
  padding:22px;
}
.profile-actions-card {
  display:grid;
  gap:10px;
}
.profile-actions-card .button {
  width:100%;
}
.server-detail-card.profile-side-card strong {
  font-size:32px;
}
@media (max-width: 980px) {
  .server-profile-grid {
    grid-template-columns:1fr;
  }
  .profile-sidebar {
    position:static;
    grid-row:1;
  }
  .profile-overview-card {
    display:grid;
  }
  .profile-badges {
    justify-content:flex-start;
  }
}
@media (max-width: 620px) {
  .profile-cover {
    min-height:190px;
    padding:22px;
  }
  .profile-feature-grid {
    grid-template-columns:1fr;
  }
  .profile-overview-card,
  .profile-content-card,
  .profile-side-card {
    padding:18px;
  }
}


.profile-line-list {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}
.profile-line-list span {
  display:block;
  padding:12px 14px;
  border:1px solid rgba(255,226,166,.16);
  border-radius:8px;
  color:#ead7ba;
  background:rgba(0,0,0,.18);
  line-height:1.45;
}
@media (max-width: 760px) {
  .profile-line-list {
    grid-template-columns:1fr;
  }
}


/* Smooth static effects override */
.hero::after,
.premium-finder::after,
.launch-card.next-up::after {
  display:none !important;
  animation:none !important;
  transform:none !important;
}
.hero,
.premium-finder,
.launch-card.next-up,
.profile-overview-card,
.profile-content-card,
.profile-side-card {
  will-change:auto;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }
}


/* Premium profile article flow */
.profile-article {
  display:block;
  max-width:860px;
}
.profile-article h3 {
  margin:24px 0 10px;
  color:var(--gold-soft);
  font-family:inherit;
  font-size:17px;
  font-weight:900;
  letter-spacing:.02em;
}
.profile-article h3:first-child {
  margin-top:0;
}
.profile-article p {
  margin:0 0 16px;
  color:#ead7ba;
  font-size:15px;
  line-height:1.75;
}
.profile-article .profile-point {
  margin:0 0 9px;
  padding:0;
  border:0;
  background:none;
  color:#f3dfbd;
  font-weight:750;
  line-height:1.55;
}
.profile-line-list,
.profile-line-list span {
  border:0;
  background:none;
}


/* Admin promotion slots */
.admin-hero-panel { margin-top:20px; }
.admin-promo-panel { overflow:hidden; }
.notice-card {
  display:grid;
  gap:6px;
  padding:16px 18px;
  border:1px solid rgba(255,190,78,.38);
  border-radius:10px;
  background:rgba(255,170,52,.08);
  color:#f5dfba;
}
.notice-card code { color:var(--gold-soft); }
.promo-admin-form {
  display:grid;
  gap:16px;
  margin:18px 0 22px;
  padding:18px;
  border:1px solid rgba(255,226,166,.16);
  border-radius:10px;
  background:rgba(0,0,0,.18);
}
.promo-form-grid {
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.promo-form-grid .span-2 { grid-column:1 / -1; }
.check-row {
  display:flex;
  align-items:center;
  gap:10px;
  min-height:44px;
  padding:0 12px;
  border:1px solid rgba(255,226,166,.16);
  border-radius:8px;
  color:#f5dfba;
  font-weight:900;
}
.form-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.action-row form { display:inline-flex; flex-wrap:wrap; gap:6px; }

/* Promotion placements */
.ad-showcase {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin:18px 0;
}
.ad-banner-card {
  min-height:170px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  padding:24px;
  border:1px solid rgba(255,196,88,.42);
  border-radius:12px;
  background:linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.22)), radial-gradient(circle at 20% 10%, rgba(255,181,60,.24), transparent 34%), var(--panel-2);
  background-size:cover;
  background-position:center;
  box-shadow:0 22px 70px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.04);
  text-decoration:none;
  overflow:hidden;
}
.ad-banner-card span,
.ad-strip-card small,
.ad-side-rail b {
  color:var(--gold);
  font-size:11px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.ad-banner-card strong {
  max-width:580px;
  color:var(--gold-soft);
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(26px, 4vw, 42px);
  line-height:1;
}
.ad-banner-card em,
.ad-strip-card em {
  max-width:620px;
  color:#ead7ba;
  font-style:normal;
  line-height:1.45;
}
.ad-strip-row {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin:20px 0;
}
.ad-strip-card {
  display:grid;
  grid-template-columns:96px 1fr;
  gap:14px;
  align-items:center;
  min-height:92px;
  padding:12px;
  border:1px solid rgba(255,226,166,.18);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,226,166,.055), transparent), rgba(0,0,0,.22);
  text-decoration:none;
}
.ad-strip-card > span {
  min-height:68px;
  border-radius:8px;
  background-size:cover;
  background-position:center;
}
.ad-strip-card div { display:grid; gap:3px; }
.ad-strip-card strong { color:var(--gold-soft); font-size:17px; }
.ad-side-rail {
  position:fixed;
  z-index:20;
  top:190px;
  width:150px;
  min-height:310px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  padding:12px;
  border:1px solid rgba(255,196,88,.36);
  border-radius:12px;
  background:linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.88)), var(--panel-2);
  box-shadow:0 18px 60px rgba(0,0,0,.42);
  text-decoration:none;
}
.ad-side-left { left:18px; }
.ad-side-right { right:18px; }
.ad-side-art {
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:12px;
  background-size:cover;
  background-position:center;
  opacity:.72;
}
.ad-side-rail strong {
  color:var(--gold-soft);
  font-family:Georgia, "Times New Roman", serif;
  font-size:22px;
  line-height:1.05;
}
@media (max-width: 1500px) {
  .ad-side-rail { display:none; }
}
@media (max-width: 860px) {
  .ad-showcase,
  .ad-strip-row,
  .promo-form-grid { grid-template-columns:1fr; }
  .ad-strip-card { grid-template-columns:1fr; }
}


/* Promotion visibility fixes */
.admin-live-preview {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:18px 0 12px;
  padding:14px 16px;
  border:1px solid rgba(255,226,166,.18);
  border-radius:10px;
  background:rgba(255,226,166,.045);
}
.admin-live-preview strong {
  display:block;
  color:var(--gold-soft);
  font-size:18px;
}
.admin-ad-preview {
  margin:12px 0 22px;
}
.top-ad-showcase {
  position:relative;
  z-index:2;
}
.ad-banner-card {
  color:#fff;
}
@media (max-width: 760px) {
  .admin-live-preview { display:grid; }
}


/* Global top promotion */
.global-top-promo {
  margin:14px 0 18px;
}
.global-top-promo-card {
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:7px;
  padding:24px;
  border:1px solid rgba(255,196,88,.48);
  border-radius:12px;
  background:linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.30)), radial-gradient(circle at 20% 10%, rgba(255,181,60,.24), transparent 34%), var(--panel-2);
  background-size:cover;
  background-position:center;
  box-shadow:0 18px 70px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
}
.global-top-promo-card span {
  color:var(--gold);
  font-size:11px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.global-top-promo-card strong {
  color:var(--gold-soft);
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(26px, 4vw, 44px);
  line-height:1;
}
.global-top-promo-card em {
  max-width:680px;
  color:#ead7ba;
  font-style:normal;
  line-height:1.45;
}
@media (max-width: 760px) {
  .global-top-promo-card { min-height:120px; padding:18px; }
}


/* Promotion polish pass */
.admin-promo-panel {
  background:radial-gradient(circle at 12% 0%, rgba(255,183,67,.11), transparent 30%), linear-gradient(180deg, rgba(255,226,166,.055), transparent 50%), var(--panel-2);
}
.premium-admin-form {
  padding:22px;
  border-color:rgba(255,196,88,.28);
  background:linear-gradient(135deg, rgba(255,172,56,.075), rgba(0,0,0,.20) 42%, rgba(255,226,166,.035));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04), 0 18px 50px rgba(0,0,0,.18);
}
.premium-promo-grid {
  gap:14px;
}
.premium-promo-grid label small {
  color:#a99474;
  font-size:11px;
  font-weight:800;
}
.premium-check {
  justify-content:flex-start;
  background:rgba(0,0,0,.20);
}
.premium-check.disabled {
  opacity:.58;
}
.notice-card.slim {
  margin:12px 0;
  padding:12px 14px;
}
.muted {
  color:#a99474;
}
.global-top-promo {
  margin:16px 0 22px;
}
.global-top-promo-card {
  min-height:190px;
  width:100%;
  position:relative;
  overflow:hidden;
  border-radius:10px;
  background:linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.12) 48%, rgba(0,0,0,.38)), var(--panel-2);
  background-size:cover;
  background-position:center;
  border-color:rgba(255,190,78,.34);
}
.global-top-promo-card::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 30%, rgba(0,0,0,.45));
  pointer-events:none;
}
.global-top-promo-card > * {
  position:relative;
  z-index:1;
}
.global-top-promo-card span {
  display:inline-flex;
  width:max-content;
  padding:5px 9px;
  border:1px solid rgba(255,213,128,.36);
  border-radius:999px;
  background:rgba(0,0,0,.46);
  text-shadow:0 1px 2px rgba(0,0,0,.7);
}
.global-top-promo-card strong {
  max-width:560px;
  font-size:clamp(24px, 3vw, 38px);
  text-shadow:0 3px 18px rgba(0,0,0,.9);
}
.global-top-promo-card em {
  display:block;
  max-width:520px;
  padding:0;
  color:#f3dfbd;
  text-shadow:0 2px 12px rgba(0,0,0,.9);
}
.global-top-promo-card.image-only {
  min-height:178px;
}
.global-top-promo-card.image-only::before {
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.10));
}
.ad-banner-card.image-only,
.global-top-promo-card.image-only {
  justify-content:flex-end;
}
.admin-ad-preview .ad-banner-card {
  min-height:160px;
}
@media (max-width: 760px) {
  .global-top-promo-card { min-height:145px; }
  .global-top-promo-card strong { font-size:28px; }
}

/* Premium promotion banner refinement */
.global-top-promo {
  margin:16px 0 24px;
}
.global-top-promo-card {
  min-height:154px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:16px 18px;
  border-radius:10px;
  border:1px solid rgba(255,190,78,.44);
  background-size:cover;
  background-position:center;
  box-shadow:0 16px 42px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.035);
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease, filter .22s ease;
}
.global-top-promo-card:hover {
  transform:translateY(-2px);
  border-color:rgba(255,211,128,.72);
  box-shadow:0 22px 62px rgba(0,0,0,.42), 0 0 26px rgba(255,160,44,.12), inset 0 0 0 1px rgba(255,255,255,.055);
  filter:saturate(1.06) contrast(1.04);
}
.global-top-promo-card::before {
  background:linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.16) 38%, rgba(0,0,0,.08) 64%, rgba(0,0,0,.22));
}
.global-top-promo-card.image-only {
  min-height:154px;
  padding:0;
}
.global-top-promo-card.image-only::before {
  background:linear-gradient(180deg, rgba(255,203,92,.035), rgba(0,0,0,.08));
}
.promo-overlay-pill {
  width:min(300px, 48%);
  display:grid !important;
  gap:3px;
  padding:10px 13px 11px;
  border:1px solid rgba(255,211,128,.38);
  border-radius:8px;
  background:linear-gradient(135deg, rgba(10,6,3,.82), rgba(54,25,9,.62));
  box-shadow:0 10px 28px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(5px);
}
.promo-overlay-pill small {
  color:var(--gold);
  font-size:10px;
  font-weight:950;
  letter-spacing:.16em;
  line-height:1;
  text-transform:uppercase;
}
.promo-overlay-pill strong {
  max-width:100%;
  overflow:hidden;
  color:#ffe4a8;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(18px, 1.6vw, 25px);
  line-height:1.02;
  text-overflow:ellipsis;
  white-space:nowrap;
  text-shadow:0 2px 12px rgba(0,0,0,.78);
}
.promo-overlay-pill em {
  max-width:100%;
  overflow:hidden;
  color:#dfc9a5;
  font-size:12px;
  font-style:normal;
  line-height:1.25;
  text-overflow:ellipsis;
  white-space:nowrap;
  text-shadow:0 1px 8px rgba(0,0,0,.7);
}
.admin-promo-panel {
  border-color:rgba(255,190,78,.30);
  box-shadow:0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.035);
}
.admin-promo-panel .section-head {
  align-items:flex-start;
}
.premium-admin-form {
  border-radius:12px;
}
.premium-promo-grid > div,
.premium-check {
  position:relative;
}
.premium-promo-grid input,
.premium-promo-grid select {
  border-color:rgba(255,226,166,.18);
  background:rgba(0,0,0,.42);
}
.premium-promo-grid input:focus,
.premium-promo-grid select:focus {
  border-color:rgba(255,190,78,.62);
  box-shadow:0 0 0 3px rgba(255,170,52,.10);
  outline:none;
}
.admin-live-preview {
  border-color:rgba(255,190,78,.28);
  background:linear-gradient(135deg, rgba(255,190,78,.07), rgba(0,0,0,.16));
}
.admin-ad-preview .ad-banner-card {
  min-height:150px;
}
.admin-ad-preview .promo-overlay-pill {
  width:min(280px, 56%);
}
@media (max-width: 760px) {
  .global-top-promo-card,
  .global-top-promo-card.image-only {
    min-height:112px;
    padding:10px;
  }
  .promo-overlay-pill {
    width:min(260px, 74%);
    padding:8px 10px;
  }
  .promo-overlay-pill strong {
    font-size:18px;
  }
  .promo-overlay-pill em {
    display:none;
  }
}
/* Premium admin command cards */
.admin-hero-panel {
  position:relative;
  overflow:hidden;
  border-color:rgba(255,190,78,.26);
  background:radial-gradient(circle at 12% 0%, rgba(255,183,67,.14), transparent 34%), linear-gradient(135deg, rgba(255,226,166,.055), rgba(0,0,0,.20)), var(--panel-2);
}
.admin-hero-panel::after {
  content:"";
  position:absolute;
  right:-90px;
  top:-120px;
  width:280px;
  height:280px;
  border:1px solid rgba(255,190,78,.16);
  border-radius:50%;
  box-shadow:0 0 80px rgba(255,160,44,.08);
  pointer-events:none;
}
.admin-stat-grid {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top:22px;
}
.admin-stat-grid div {
  min-height:92px;
  display:grid;
  align-content:center;
  gap:5px;
  padding:16px;
  border:1px solid rgba(255,226,166,.16);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,226,166,.06), rgba(0,0,0,.22));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
}
.admin-stat-grid span {
  color:var(--gold);
  font-size:11px;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.admin-stat-grid strong {
  color:var(--gold-soft);
  font-family:Georgia, "Times New Roman", serif;
  font-size:30px;
  line-height:1;
}
.admin-stat-grid em {
  overflow:hidden;
  color:#bda98d;
  font-size:12px;
  font-style:normal;
  text-overflow:ellipsis;
  white-space:nowrap;
}
@media (max-width: 900px) {
  .admin-stat-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .admin-stat-grid { grid-template-columns:1fr; }
}
/* Banner overlay position correction */
.global-top-promo-card {
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
}
.global-top-promo-card .promo-overlay-pill {
  width:min(260px, 38%);
  margin:0 0 2px 0;
  padding:8px 11px 9px;
}
.global-top-promo-card .promo-overlay-pill strong {
  font-size:clamp(16px, 1.35vw, 22px);
}
.global-top-promo-card .promo-overlay-pill em {
  font-size:11px;
}
@media (max-width: 760px) {
  .global-top-promo-card .promo-overlay-pill {
    width:min(230px, 66%);
  }
}
/* Corner promotion badge */
.global-top-promo-card,
.admin-ad-preview .ad-banner-card {
  position:relative;
}
.promo-corner-badge {
  position:absolute;
  top:12px;
  right:12px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:7px;
  width:auto;
  max-width:180px;
  min-height:28px;
  padding:7px 11px;
  overflow:hidden;
  border:1px solid rgba(255,221,142,.58);
  border-radius:999px;
  background:linear-gradient(135deg, rgba(17,9,3,.92), rgba(92,43,9,.76) 58%, rgba(18,9,3,.90));
  box-shadow:0 8px 24px rgba(0,0,0,.42), 0 0 18px rgba(255,170,52,.12), inset 0 1px 0 rgba(255,255,255,.10);
  color:#ffe6ac;
  font-size:10px;
  font-weight:950;
  letter-spacing:.16em;
  line-height:1;
  text-transform:uppercase;
  text-shadow:0 1px 8px rgba(0,0,0,.72);
  white-space:nowrap;
}
.promo-corner-badge::before {
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255,255,255,.34) 47%, rgba(255,218,132,.24) 52%, transparent 66%, transparent 100%);
  transform:translateX(-125%);
  animation:promoBadgeShine 3.4s ease-in-out infinite;
  pointer-events:none;
}
.promo-corner-badge::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:inset 0 0 16px rgba(255,197,87,.16);
  pointer-events:none;
}
.promo-corner-badge i {
  width:6px;
  height:6px;
  flex:0 0 auto;
  border-radius:50%;
  background:#ffb13b;
  box-shadow:0 0 10px rgba(255,177,59,.95), 0 0 22px rgba(255,177,59,.30);
  animation:promoBadgePulse 1.8s ease-in-out infinite;
}
@keyframes promoBadgeShine {
  0%, 42% { transform:translateX(-125%); opacity:0; }
  52% { opacity:1; }
  72%, 100% { transform:translateX(125%); opacity:0; }
}
@keyframes promoBadgePulse {
  0%, 100% { transform:scale(.86); opacity:.75; }
  50% { transform:scale(1.16); opacity:1; }
}
.global-top-promo-card .promo-overlay-pill,
.admin-ad-preview .promo-overlay-pill {
  display:none !important;
}
@media (max-width: 760px) {
  .promo-corner-badge {
    top:9px;
    right:9px;
    max-width:140px;
    min-height:24px;
    padding:6px 9px;
    font-size:9px;
    letter-spacing:.12em;
  }
}
/* Admin controls polish */
.premium-toggle {
  justify-content:flex-start;
  gap:12px;
  min-height:58px;
  padding:10px 13px;
  cursor:pointer;
  user-select:none;
}
.premium-toggle input {
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}
.toggle-ui {
  position:relative;
  width:44px;
  height:24px;
  flex:0 0 44px;
  border:1px solid rgba(255,226,166,.22);
  border-radius:999px;
  background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(32,18,8,.88));
  box-shadow:inset 0 1px 6px rgba(0,0,0,.55);
  transition:background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.toggle-ui::before {
  content:"";
  position:absolute;
  top:3px;
  left:3px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#8d7760;
  box-shadow:0 2px 8px rgba(0,0,0,.45);
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.premium-toggle input:checked + .toggle-ui {
  border-color:rgba(255,207,111,.70);
  background:linear-gradient(180deg, #f6b24b, #b96515);
  box-shadow:0 0 18px rgba(255,160,44,.16), inset 0 1px 0 rgba(255,255,255,.22);
}
.premium-toggle input:checked + .toggle-ui::before {
  transform:translateX(20px);
  background:#fff0be;
  box-shadow:0 2px 8px rgba(0,0,0,.36), 0 0 12px rgba(255,238,178,.52);
}
.premium-toggle > span:last-child {
  display:grid;
  gap:2px;
  min-width:0;
}
.premium-toggle strong {
  color:#ffe2a1;
  font-size:13px;
  line-height:1.1;
}
.premium-toggle em {
  color:#bda98d;
  font-size:11px;
  font-style:normal;
  line-height:1.2;
}
.premium-toggle.disabled {
  cursor:not-allowed;
}
.promotion-actions {
  min-width:230px;
  align-items:center;
  gap:8px;
}
.promotion-action-form {
  display:inline-flex;
  gap:7px;
  align-items:center;
}
.promotion-actions .button,
.promotion-actions button {
  min-height:36px;
  padding:0 13px;
  border-radius:8px;
  font-size:13px;
}
.promotion-actions .action-edit {
  color:#ffe4aa;
  background:rgba(255,226,166,.055);
  border-color:rgba(255,226,166,.22);
}
.promotion-actions .action-pause {
  color:#1b1008;
  border-color:rgba(255,226,166,.62);
  background:linear-gradient(180deg, #ffe0a0, #f0a040 58%, #b85b12);
}
.promotion-actions .action-delete {
  color:#ffe7d7;
  border-color:rgba(255,105,76,.38);
  background:linear-gradient(180deg, rgba(111,31,16,.92), rgba(72,16,11,.92));
}
.promotion-actions .action-delete:hover {
  border-color:rgba(255,132,96,.70);
  box-shadow:0 12px 28px rgba(96,18,9,.30);
}
.admin-promo-panel table td {
  vertical-align:middle;
}
.admin-promo-panel table tr:hover td {
  background:rgba(255,226,166,.025);
}
/* Toggle legacy override */
.premium-toggle > span:last-child {
  width:auto;
  height:auto;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.premium-toggle > span:last-child::before,
.premium-toggle > span:last-child::after {
  content:none;
}