/* WarmupServer hub — owned by the warmup-server plugin. Loaded only on
   /warmup-server.php (header.php conditional). Red WarmupServer skin over a
   CS2 bombsite hero; chrome bar + footer keep universesigna violet. */

.ws-page {
  --ws-bg: #0a0710;
  --ws-base: #070409;
  --ws-glass: rgba(20, 8, 12, 0.72);
  --ws-line: rgba(255, 255, 255, 0.09);
  --ws-line-strong: rgba(255, 255, 255, 0.16);
  --ws-txt: #ffffff;
  --ws-mut: #b3acb6;
  --ws-cap: #7c727f;
  --ws-red: #e23744;
  --ws-red-h: #c01f2c;
  --ws-red-soft: rgba(226, 55, 68, 0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--ws-txt);
}

/* WarmupServer brand wordmark face (self-hosted, GDPR) — matches the
   warmupserver.net logo typology: bold geometric sans, mixed case. */
@font-face { font-family: 'Montserrat'; src: url('/css/fonts/Montserrat-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('/css/fonts/Montserrat-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

.ws-display { font-family: 'Righteous', system-ui, sans-serif; font-weight: 400; letter-spacing: 0.04em; line-height: 1.05; }
.ws-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ws-red); }

/* Hero brand wordmark — WarmupServer logo lockup (Image #4 match). */
.ws-wordmark { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 800; font-size: clamp(2.9rem, 8.5vw, 6rem); line-height: 0.92; letter-spacing: -0.02em; margin: 0; text-shadow: 0 6px 40px rgba(0,0,0,0.6); }
.ws-wordmark .ws-accent { color: var(--ws-red); }
.ws-tagline { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 600; font-size: clamp(0.95rem, 2vw, 1.35rem); letter-spacing: 0.005em; color: #d7d2da; margin-top: 8px; }

/* Hero — bombsite image scoped to the hero (scrolls away under the solid
   bands below). The --ws-bg-* vars are set inline on .ws-page by the
   entrypoint and inherited here. A scrim layer keeps the copy legible. */
.ws-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 9vh;
  overflow: hidden;
  background-image: var(--ws-bg-mobile);
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) { .ws-hero { background-image: var(--ws-bg-desktop); } }
.ws-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(10,7,16,0.92) 0%, rgba(12,6,12,0.55) 42%, rgba(120,20,30,0.16) 74%, rgba(10,7,16,0.08) 100%),
    linear-gradient(0deg, var(--ws-bg) 1%, rgba(10,7,16,0.35) 26%, transparent 58%);
  z-index: 0;
  pointer-events: none;
}
.ws-hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; width: 100%; }
.ws-markrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.ws-logo { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 0 26px rgba(226,55,68,0.4); }
.ws-lede { margin-top: 22px; max-width: 54ch; font-size: clamp(1rem, 2vw, 1.2rem); color: #ddd6dc; }
.ws-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ws-scrolltip { margin-top: 46px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ws-cap); }

/* Buttons */
.ws-btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: 0.6rem; cursor: pointer; border: 1px solid transparent; text-decoration: none; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s cubic-bezier(.2,.7,.2,1); }
.ws-btn svg { width: 1.05em; height: 1.05em; }
.ws-btn-primary { background: linear-gradient(180deg, #e8404d, var(--ws-red-h)); color: #fff; box-shadow: 0 10px 30px rgba(226,55,68,0.34), inset 0 1px 0 rgba(255,255,255,0.13); }
.ws-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(226,55,68,0.5), inset 0 1px 0 rgba(255,255,255,0.16); }
.ws-btn-primary:active { transform: translateY(0); box-shadow: 0 6px 18px rgba(226,55,68,0.3), inset 0 1px 0 rgba(255,255,255,0.1); }
.ws-btn-ghost { background: rgba(255,255,255,0.06); border-color: var(--ws-line-strong); color: var(--ws-txt); }
.ws-btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* Bands */
.ws-band { background: radial-gradient(120% 85% at 82% 30%, rgba(226,55,68,0.09), transparent 58%), var(--ws-bg); position: relative; z-index: 1; }
.ws-section { max-width: 1180px; margin: 0 auto; padding: 7rem 1.5rem; }
.ws-sec-label { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; }
.ws-sec-label h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 0; }
.ws-sec-label .ws-n { font-size: 12px; color: var(--ws-cap); letter-spacing: 0.1em; }

/* Unban two-column */
.ws-unban-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.ws-unban-explain p { color: var(--ws-mut); max-width: 48ch; margin-top: 14px; font-size: 1.05rem; line-height: 1.7; }
.ws-unban-explain p .ws-hl { color: var(--ws-txt); font-weight: 600; }

/* Unban panel (glass, justified over the band) */
.ws-panel { position: relative; background: var(--ws-glass); border: 1px solid rgba(226,55,68,0.24); border-radius: 0.9rem; padding: 1.9rem; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
@supports (backdrop-filter: blur(14px)) { .ws-panel { background: rgba(20,8,12,0.55); backdrop-filter: blur(14px); } }
.ws-ph { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ws-ph .ws-ic { width: 46px; height: 46px; border-radius: 0.7rem; display: grid; place-items: center; background: var(--ws-red-soft); border: 1px solid rgba(226,55,68,0.4); color: var(--ws-red); }
.ws-ph .ws-ic svg { width: 24px; height: 24px; }
.ws-ph h3 { font-size: 1.2rem; margin: 0; }
.ws-ph .ws-who { font-size: 12.5px; color: var(--ws-mut); margin-top: 2px; }
.ws-copy { color: #d7d2da; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.ws-ban-status { display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-radius: 0.55rem; font-weight: 600; font-size: 14px; background: var(--ws-red-soft); border: 1px solid rgba(226,55,68,0.3); margin-bottom: 18px; }
.ws-ban-status .ws-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ws-red); box-shadow: 0 0 0 4px rgba(226,55,68,0.2); flex: 0 0 auto; }
.ws-clean { display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-radius: 0.55rem; font-weight: 600; font-size: 14px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); margin-bottom: 18px; color: #c8f3d6; }
.ws-remaining { font-size: 13px; color: var(--ws-mut); margin-bottom: 18px; }
.ws-remaining b { color: var(--ws-txt); font-weight: 700; }
.ws-panel .ws-btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.ws-fineprint { margin-top: 12px; font-size: 11.5px; color: var(--ws-cap); text-align: center; }
.ws-locked .ws-lockmsg { color: var(--ws-mut); margin-bottom: 12px; line-height: 1.5; }
.ws-locked a { color: var(--ws-red); text-decoration: none; font-weight: 600; }
.ws-locked a:hover { text-decoration: underline; }
.ws-cooldown { color: #f3c969; font-weight: 700; }

/* Links band */
.ws-links {
  background:
    radial-gradient(95% 65% at 18% 82%, rgba(226,55,68,0.07), transparent 55%),
    linear-gradient(180deg, var(--ws-bg) 35%, #0d1022 100%);
  border-top: 1px solid var(--ws-line);
}
.ws-links-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.ws-links-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-top: 10px; }
.ws-links-lead { max-width: 40ch; }
.ws-links-lead p { color: var(--ws-mut); margin-top: 10px; }
.ws-acts { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ws-inline { margin-top: 34px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 14px; }
.ws-inline a { color: var(--ws-mut); text-decoration: none; transition: color .2s; }
.ws-inline a:hover { color: var(--ws-red); }
.ws-inline .ws-sep { color: var(--ws-line-strong); }
.ws-soc { margin-left: auto; display: flex; gap: 10px; }
.ws-soc a { width: 40px; height: 40px; border: 1px solid var(--ws-line); border-radius: 0.6rem; display: grid; place-items: center; color: var(--ws-mut); transition: color .2s, border-color .2s, background .2s; }
.ws-soc a svg { width: 18px; height: 18px; }
.ws-soc a:hover { border-color: var(--ws-red); color: var(--ws-red); background: var(--ws-red-soft); }

@media (max-width: 820px) { .ws-unban-wrap { grid-template-columns: 1fr; } }
