/* Loot-Gang Website
   HyperPulse look: dark surface, pulse line, focused tabs, clean community content. */

:root {
  color-scheme: dark;
  --bg: #080914;
  --bg-2: #0d1022;
  --surface: rgba(17, 19, 37, 0.82);
  --surface-solid: #111325;
  --surface-2: rgba(24, 27, 52, 0.82);
  --surface-3: rgba(40, 44, 86, 0.82);
  --text: #f7f3ff;
  --muted: #bdb7dc;
  --muted-2: rgba(247, 243, 255, 0.68);
  --line: rgba(204, 188, 255, 0.17);
  --line-strong: rgba(204, 188, 255, 0.34);
  --violet: #8f5bff;
  --violet-2: #5c2dff;
  --blue: #4f7dff;
  --aqua: #53f3d1;
  --amber: #f4d35e;
  --red: #ff5c7a;
  --ink: #070812;
  --shadow: 0 22px 70px rgba(2, 3, 10, 0.48);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, 0.26);
  --radius: 8px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(143, 91, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(79, 125, 255, 0.045) 1px, transparent 1px),
    linear-gradient(140deg, rgba(92, 45, 255, 0.30), transparent 36%),
    linear-gradient(320deg, rgba(79, 125, 255, 0.20), transparent 35%),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  height: 30vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035), transparent);
  opacity: 0.28;
  transform: translateY(-35vh);
  animation: scan 7s linear infinite;
  z-index: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

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

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

code,
pre {
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

code {
  color: #e8ddff;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.96);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

body.release-locked .site {
  display: none;
}

.release-gate {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(143, 91, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(83, 243, 209, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(92, 45, 255, 0.32), transparent 42%),
    linear-gradient(315deg, rgba(83, 243, 209, 0.16), transparent 38%),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.release-gate__shell {
  position: relative;
  overflow: hidden;
  width: min(920px, 100%);
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(83, 243, 209, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(83, 243, 209, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(143, 91, 255, 0.20), transparent 58%),
    rgba(10, 11, 24, 0.88);
  box-shadow:
    0 28px 100px rgba(0, 0, 0, 0.48),
    0 0 54px rgba(83, 243, 209, 0.12);
}

.release-gate__shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #53f3d1, #4f7dff, #8f5bff, transparent);
}

.release-gate__shell > * {
  position: relative;
}

.release-gate h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.25rem;
  line-height: 0.98;
  background: linear-gradient(92deg, #ffffff 0%, #53f3d1 42%, #8f5bff 78%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 36px rgba(83, 243, 209, 0.16);
}

.release-gate p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.release-countdown div {
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(83, 243, 209, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.52);
}

.release-countdown strong {
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 0 26px rgba(83, 243, 209, 0.22);
}

.release-countdown span,
.release-admin-link {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 880;
  text-transform: uppercase;
}

.release-admin-link {
  justify-self: start;
  opacity: 0.62;
}

.release-admin-link:hover,
.footer-admin-link:hover {
  color: #ffffff;
  opacity: 1;
}

.wrap {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 20, 0.86);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.header-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(560px, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: 188px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(79, 125, 255, 0.34), rgba(143, 91, 255, 0.82));
  box-shadow: 0 0 36px rgba(143, 91, 255, 0.26);
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.brand-title {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.brand-title strong {
  line-height: 1;
  font-size: 1.04rem;
}

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

.top-tabs {
  justify-self: center;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  scrollbar-width: thin;
}

.top-tabs a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 860;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.top-tabs a:hover,
.top-tabs a[aria-current="page"] {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(143, 91, 255, 0.58);
  background: linear-gradient(180deg, rgba(92, 45, 255, 0.22), rgba(79, 125, 255, 0.07));
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: 8px;
}

.header-cta,
.header-discord,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius);
  font-weight: 860;
  white-space: nowrap;
}

.header-discord {
  color: #ffffff;
  border: 1px solid rgba(143, 91, 255, 0.42);
  background: linear-gradient(180deg, rgba(92, 45, 255, 0.18), rgba(79, 125, 255, 0.07));
  box-shadow: 0 14px 30px rgba(79, 125, 255, 0.12);
}

.header-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #ff3f63, #b90f35);
  box-shadow: 0 16px 38px rgba(255, 63, 99, 0.24);
}

.header-discord:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.header-cta:hover {
  box-shadow: 0 20px 46px rgba(255, 63, 99, 0.30);
}

.pulse-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(17, 19, 37, 0.58);
}

.pulse-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(260px, 1fr);
  align-items: center;
  gap: 14px;
}

.pulse-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 780;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 0 0 rgba(143, 91, 255, 0.55);
  animation: pulse 1.8s infinite;
}

.heartbeat {
  position: relative;
  height: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    rgba(8, 9, 20, 0.74);
  background-size: 24px 24px;
}

.heartbeat::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(204, 188, 255, 0.20);
}

.heartbeat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(143, 91, 255, 0.22), transparent);
  transform: translateX(-100%);
  animation: sweep 2.2s linear infinite;
}

.ekg-svg {
  position: absolute;
  inset: 2px 0;
  width: 100%;
  height: calc(100% - 4px);
}

.ekg-glow,
.ekg-trace {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 860;
  stroke-dashoffset: 860;
  animation: ekg-draw 2.6s linear infinite;
}

.ekg-glow {
  stroke: rgba(143, 91, 255, 0.34);
  stroke-width: 11;
  filter: blur(4px);
}

.ekg-trace {
  stroke: #d8c8ff;
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(143, 91, 255, 0.75));
}

main {
  padding: 34px 0 48px;
}

.page-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.page-title h1,
.hero h1,
.section-head h2,
.feature-panel h2,
.server-empty h2,
.download-panel h2 {
  margin: 0;
}

.page-title h1 {
  font-size: 4rem;
  line-height: 1;
}

.signal-word {
  color: #ff4d6d;
  text-shadow: 0 0 18px rgba(255, 77, 109, 0.55), 0 0 34px rgba(185, 15, 53, 0.32);
}

.discord-title .signal-word {
  color: #53f3d1;
  text-shadow: 0 0 18px rgba(83, 243, 209, 0.54), 0 0 34px rgba(143, 91, 255, 0.28);
}

.page-title.support-title p {
  margin-top: 24px;
}

.page-title p,
.hero p,
.section-head p,
.card p,
.news-card p,
.news-item p,
.feature-panel p,
.server-empty p,
.download-panel p,
.legal-panel p,
.timeline-item p,
.discord-hero-card p,
.discord-checklist li span,
.discord-card p,
.discord-channel-card p,
.discord-rule-card p,
.discord-feature p,
.discord-event-panel p,
.discord-event-tiles p,
.discord-small-note {
  color: var(--muted);
  line-height: 1.62;
}

.page-title p {
  max-width: 780px;
  margin: 10px 0 0;
}

.page-meta {
  min-width: 220px;
  display: grid;
  gap: 7px;
  color: var(--muted);
  text-align: right;
  font-size: 0.86rem;
}

.page-meta strong {
  color: var(--text);
}

.page-title-tools {
  min-width: min(360px, 100%);
  display: grid;
  gap: 10px;
  justify-items: stretch;
  align-self: end;
}

.page-title-tools .page-meta {
  min-width: 0;
}

.eyebrow,
.kicker {
  color: #eadcff;
  font-size: 0.76rem;
  font-weight: 860;
  text-transform: uppercase;
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 14px;
  align-items: stretch;
}

.hero-panel,
.visual-panel,
.feature-panel,
.panel,
.card,
.news-card,
.news-lead,
.server-empty,
.download-panel,
.legal-panel,
.hof-panel,
.support-link,
.discord-hero-card,
.discord-checklist,
.discord-card,
.discord-feature,
.discord-channel-card,
.discord-rule-card,
.discord-event-panel,
.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.073), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  padding: 42px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(92, 45, 255, 0.34), transparent 54%),
    linear-gradient(315deg, rgba(79, 125, 255, 0.24), transparent 48%);
  pointer-events: none;
}

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

.hero h1 {
  max-width: 760px;
  margin-top: 10px;
  font-size: 4.7rem;
  line-height: 0.98;
}

.hero-heading-accent,
.heading-accent {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-heading-accent {
  background-image: linear-gradient(92deg, #ffffff 0%, #53f3d1 40%, #8f5bff 78%, #ffffff 100%);
  text-shadow: 0 0 34px rgba(83, 243, 209, 0.18);
}

.heading-accent--community {
  background-image: linear-gradient(92deg, #53f3d1 0%, #34e4ff 45%, #8f5bff 100%);
  text-shadow: 0 0 24px rgba(83, 243, 209, 0.2);
}

.heading-accent--news {
  background-image: linear-gradient(92deg, #ffffff 0%, #34e4ff 44%, #7b4dff 100%);
  text-shadow: 0 0 26px rgba(52, 228, 255, 0.24);
}

.heading-accent--next {
  background-image: linear-gradient(92deg, #ffffff 0%, #8f5bff 48%, #53f3d1 100%);
  text-shadow: 0 0 24px rgba(143, 91, 255, 0.22);
}

.headline-nowrap {
  white-space: nowrap;
}

.hero p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.12rem;
}

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

.btn {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  color: #ffffff;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.support-link:hover,
.discord-card:hover,
.link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 91, 255, 0.60);
  background: linear-gradient(180deg, rgba(92, 45, 255, 0.20), rgba(79, 125, 255, 0.07));
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(79, 125, 255, 0.20);
}

.btn.good {
  border-color: transparent;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  color: #ffffff;
}

.btn-news,
.btn-server,
.btn-support {
  border-color: transparent;
  color: #ffffff;
  font-weight: 920;
}

.btn-news {
  background: linear-gradient(135deg, #22d8ff, #2364ff 48%, #7b4dff);
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
  box-shadow: 0 18px 42px rgba(34, 216, 255, 0.18), 0 0 26px rgba(123, 77, 255, 0.20);
}

.btn-server {
  background: linear-gradient(135deg, #8f5bff, #4f7dff);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(143, 91, 255, 0.20);
}

.btn-support {
  background: linear-gradient(135deg, #ff4d6d, #b90f35);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(255, 77, 109, 0.24);
}

.btn-news:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #4ee6ff, #3478ff 48%, #8f5bff);
  box-shadow: 0 22px 50px rgba(34, 216, 255, 0.28), 0 0 36px rgba(123, 77, 255, 0.26);
}

.btn-server:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #9c6cff, #5d8cff);
  box-shadow: 0 22px 50px rgba(143, 91, 255, 0.28);
}

.btn-support:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #ff5e7c, #c81942);
  box-shadow: 0 22px 50px rgba(255, 77, 109, 0.32);
}

.btn.compact {
  min-height: 38px;
  padding: 9px 12px;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(79, 125, 255, 0.14), rgba(17, 19, 37, 0.86)),
    rgba(17, 19, 37, 0.76);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(204, 188, 255, 0.14);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-logo {
  width: min(420px, 84%);
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.58));
}

.signal-list {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.78);
  backdrop-filter: blur(16px);
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.83rem;
}

.signal-row strong {
  color: var(--text);
}

.section {
  margin-top: 18px;
}

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

.section-head h2,
.feature-panel h2,
.download-panel h2 {
  font-size: 2.2rem;
  line-height: 1.05;
}

.section-head p {
  margin: 7px 0 0;
}

.discord-page .section-head {
  margin-bottom: 18px;
}

.discord-page .section-head h2 {
  font-size: 3.05rem;
  line-height: 0.98;
  text-shadow: 0 0 26px rgba(83, 243, 209, 0.14);
}

.discord-page #regelwerk .section-head h2 {
  font-size: 3.35rem;
}

.home-news-section {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(52, 228, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(52, 228, 255, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026)),
    rgba(17, 19, 37, 0.74);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24), 0 0 42px rgba(52, 228, 255, 0.08);
}

.home-news-section .section-head {
  position: relative;
  z-index: 1;
  align-items: center;
  padding: 0 0 14px;
}

.home-news-section .section-head h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 3.25rem;
  line-height: 0.98;
  color: #f8fbff;
  text-shadow: 0 0 26px rgba(52, 228, 255, 0.30);
}

.home-news-section .section-head p {
  font-size: 1.02rem;
}

.news-alert {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(52, 228, 255, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 216, 255, 0.95), rgba(123, 77, 255, 0.86));
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 28px rgba(52, 228, 255, 0.32);
  animation: news-alert-pulse 1.9s ease-in-out infinite;
}

.home-news-section .news-preview-list {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hub-pulse-section {
  display: grid;
  gap: 14px;
}

.today-pulse {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(83, 243, 209, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(83, 243, 209, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(17, 19, 37, 0.76);
  box-shadow: var(--shadow-soft);
}

.today-pulse::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #53f3d1, #4f7dff, #8f5bff, transparent);
}

.today-pulse__label,
.today-pulse__item,
.pulse-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.48);
}

.today-pulse__label {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border-color: rgba(83, 243, 209, 0.24);
}

.today-pulse__label span,
.today-pulse__item span,
.pulse-card__top a {
  color: #dffdf6;
  font-size: 0.74rem;
  font-weight: 880;
  text-transform: uppercase;
}

.today-pulse__label strong {
  font-size: 1.08rem;
}

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

.today-pulse__item {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 13px;
  border-color: rgba(143, 91, 255, 0.2);
}

.today-pulse__item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #53f3d1, #8f5bff);
}

.today-pulse__item:nth-child(2)::before {
  background: linear-gradient(180deg, #4f7dff, #53f3d1);
}

.today-pulse__item:nth-child(3)::before {
  background: linear-gradient(180deg, #ffd36d, #8f5bff);
}

.today-pulse__item strong {
  color: var(--text);
  line-height: 1.25;
}

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

.pulse-card {
  --pulse-accent: #53f3d1;
  --pulse-rgb: 83, 243, 209;
  min-height: 245px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border-color: rgba(var(--pulse-rgb), 0.28);
  background:
    linear-gradient(145deg, rgba(var(--pulse-rgb), 0.14), transparent 48%),
    rgba(10, 11, 24, 0.78);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pulse-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pulse-accent), transparent 72%);
}

.pulse-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--pulse-rgb), 0.48);
  box-shadow: 0 22px 62px rgba(var(--pulse-rgb), 0.14);
}

.pulse-card > * {
  position: relative;
}

.pulse-card--news {
  --pulse-accent: #34e4ff;
  --pulse-rgb: 52, 228, 255;
}

.pulse-card--creator {
  --pulse-accent: #8f5bff;
  --pulse-rgb: 143, 91, 255;
}

.pulse-card--fame {
  --pulse-accent: #ffd36d;
  --pulse-rgb: 255, 211, 109;
}

.pulse-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pulse-card__top a {
  color: rgba(255, 255, 255, 0.72);
}

.pulse-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.08;
}

.pulse-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 18px;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px 14px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent, var(--violet));
  transform: scaleX(var(--fill, 0.22));
  transform-origin: left center;
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 1.18rem;
}

.card p {
  margin: 0;
}

.metric {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.metric strong {
  font-size: 3rem;
  line-height: 0.92;
}

.metric span {
  color: var(--muted);
  font-weight: 760;
}

.badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 840;
  white-space: nowrap;
}

.badge.ok {
  border-color: rgba(83, 243, 209, 0.35);
  color: #cffff4;
  background: rgba(83, 243, 209, 0.10);
}

.badge.warn {
  border-color: rgba(244, 211, 94, 0.38);
  color: #fff2b8;
  background: rgba(244, 211, 94, 0.10);
}

.badge.off {
  border-color: rgba(255, 92, 122, 0.38);
  color: #ffd4dc;
  background: rgba(255, 92, 122, 0.10);
}

.badge.soft {
  border-color: rgba(143, 91, 255, 0.32);
  color: #eadcff;
  background: rgba(143, 91, 255, 0.10);
}

.link-card {
  display: grid;
  gap: 12px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-card .btn {
  justify-self: start;
  margin-top: 4px;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(83, 243, 209, 0.10), transparent 48%);
}

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

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

.support-link {
  --support-accent: #ff4d6d;
  --support-accent-rgb: 255, 77, 109;
  --support-badge-text: #ffd9e1;
  --support-action-text: #fff7f8;
  position: relative;
  overflow: hidden;
  min-height: 166px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
  border-color: rgba(var(--support-accent-rgb), 0.28);
  background:
    linear-gradient(145deg, rgba(var(--support-accent-rgb), 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.030)),
    rgba(17, 19, 37, 0.76);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.support-link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--support-accent), transparent 72%);
}

.support-link > * {
  position: relative;
}

.support-link--voice {
  --support-accent: var(--violet);
  --support-accent-rgb: 143, 91, 255;
  --support-badge-text: #eadcff;
}

.support-link--team {
  --support-accent: var(--amber);
  --support-accent-rgb: 244, 211, 94;
  --support-badge-text: #fff2b8;
  --support-action-text: #ffffff;
}

.support-link h3 {
  margin: 11px 0 7px;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.12;
}

.support-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.support-link .badge {
  border-color: rgba(var(--support-accent-rgb), 0.46);
  color: var(--support-badge-text);
  background: rgba(var(--support-accent-rgb), 0.13);
}

.support-link strong {
  justify-self: start;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(var(--support-accent-rgb), 0.48);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(var(--support-accent-rgb), 0.92), rgba(var(--support-accent-rgb), 0.34));
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(var(--support-accent-rgb), 0.14);
}

.support-link:hover {
  border-color: rgba(var(--support-accent-rgb), 0.60);
  background:
    linear-gradient(145deg, rgba(var(--support-accent-rgb), 0.24), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.034)),
    rgba(17, 19, 37, 0.78);
  box-shadow: 0 18px 42px rgba(var(--support-accent-rgb), 0.16);
}

.discord-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.discord-hero-card,
.discord-checklist,
.discord-feature {
  position: relative;
  overflow: hidden;
}

.discord-hero-card {
  min-height: 330px;
  display: grid;
  align-content: center;
  padding: 34px;
  border-color: rgba(83, 243, 209, 0.26);
  background:
    linear-gradient(135deg, rgba(87, 242, 135, 0.16), transparent 44%),
    linear-gradient(315deg, rgba(143, 91, 255, 0.22), transparent 50%),
    rgba(17, 19, 37, 0.76);
}

.discord-hero-card::before,
.discord-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(83, 243, 209, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 91, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.45;
}

.discord-hero-card > *,
.discord-feature > * {
  position: relative;
}

.discord-hero-card h2,
.discord-checklist h2,
.discord-feature h2 {
  margin: 10px 0 0;
  font-size: 2.55rem;
  line-height: 1.02;
}

.discord-hero-card p {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 1.05rem;
}

.discord-checklist {
  display: grid;
  align-content: center;
  padding: 24px;
  border-color: rgba(143, 91, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(143, 91, 255, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.030)),
    rgba(17, 19, 37, 0.76);
}

.discord-checklist ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: discord-step;
}

.discord-checklist li {
  counter-increment: discord-step;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(83, 243, 209, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.38);
}

.discord-checklist li::before {
  content: counter(discord-step, decimal-leading-zero);
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #0b1518;
  background: linear-gradient(135deg, #57f287, #53f3d1);
  font-weight: 950;
}

.discord-checklist li strong {
  grid-column: 2;
  display: block;
  margin-bottom: 4px;
}

.discord-checklist li span {
  grid-column: 2;
}

.discord-action-grid,
.discord-link-grid,
.discord-overview-grid,
.discord-channel-grid,
.discord-rule-grid,
.discord-mini-grid {
  display: grid;
  gap: 14px;
}

.discord-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

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

.discord-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.discord-card {
  --discord-accent: #57f287;
  --discord-rgb: 87, 242, 135;
  position: relative;
  overflow: hidden;
  min-height: 174px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
  border-color: rgba(var(--discord-rgb), 0.28);
  background:
    linear-gradient(145deg, rgba(var(--discord-rgb), 0.15), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.030)),
    rgba(17, 19, 37, 0.76);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.discord-card::before,
.discord-channel-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--discord-accent), transparent 72%);
}

.discord-card > *,
.discord-channel-card > * {
  position: relative;
}

.discord-card--aqua {
  --discord-accent: #53f3d1;
  --discord-rgb: 83, 243, 209;
}

.discord-card--yellow {
  --discord-accent: #f4d35e;
  --discord-rgb: 244, 211, 94;
}

.discord-card--red {
  --discord-accent: #ff5c7a;
  --discord-rgb: 255, 92, 122;
}

.discord-card--turquoise {
  --discord-accent: #53f3d1;
  --discord-rgb: 83, 243, 209;
}

.discord-card--game {
  --discord-accent: #8f5bff;
  --discord-rgb: 143, 91, 255;
}

.discord-card--green {
  --discord-accent: #57f287;
  --discord-rgb: 87, 242, 135;
}

.discord-card--violet {
  --discord-accent: #8f5bff;
  --discord-rgb: 143, 91, 255;
}

.discord-card h3,
.discord-channel-card h3 {
  margin: 10px 0 7px;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.12;
}

.discord-card p,
.discord-channel-card p {
  margin: 0;
}

.discord-card .badge {
  border-color: rgba(var(--discord-rgb), 0.42);
  color: color-mix(in srgb, var(--discord-accent) 72%, #ffffff);
  background: rgba(var(--discord-rgb), 0.12);
}

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

.discord-rule-card {
  --discord-accent: #53f3d1;
  --discord-rgb: 83, 243, 209;
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 16px;
  border-color: rgba(var(--discord-rgb), 0.24);
  background:
    linear-gradient(145deg, rgba(var(--discord-rgb), 0.12), transparent 46%),
    rgba(17, 19, 37, 0.72);
}

.discord-rule-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--discord-accent), transparent 72%);
}

.discord-rule-card > * {
  position: relative;
}

.discord-rule-card span {
  color: #dffdf6;
  font-size: 0.74rem;
  font-weight: 860;
  text-transform: uppercase;
}

.discord-rule-card h3 {
  margin: 10px 0 7px;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.14;
}

.discord-rule-card p {
  margin: 0;
}

.discord-card strong {
  justify-self: start;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(var(--discord-rgb), 0.48);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(var(--discord-rgb), 0.92), rgba(var(--discord-rgb), 0.35));
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 930;
  box-shadow: 0 12px 28px rgba(var(--discord-rgb), 0.14);
}

.discord-card--yellow strong,
.discord-card--red strong,
.discord-card--turquoise strong,
.discord-card--game strong,
.discord-card--green strong {
  background: linear-gradient(135deg, rgba(var(--discord-rgb), 0.92), rgba(var(--discord-rgb), 0.38));
}

.discord-card--yellow strong {
  color: #ffffff;
}

.discord-card--red strong,
.discord-card--game strong {
  color: #ffffff;
}

.discord-card--violet strong {
  color: #ffffff;
}

.discord-card:hover {
  border-color: rgba(var(--discord-rgb), 0.62);
  background:
    linear-gradient(145deg, rgba(var(--discord-rgb), 0.23), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.034)),
    rgba(17, 19, 37, 0.78);
  box-shadow: 0 18px 42px rgba(var(--discord-rgb), 0.16);
}

.discord-btn {
  border-color: transparent;
  color: #ffffff;
  font-weight: 920;
}

.discord-btn--green {
  background: linear-gradient(135deg, #57f287, #1fbf72);
  box-shadow: 0 18px 42px rgba(87, 242, 135, 0.18);
}

.discord-btn--yellow {
  color: #ffffff;
  background: linear-gradient(135deg, #f4d35e, #f5a623);
  box-shadow: 0 18px 42px rgba(244, 211, 94, 0.17);
}

.discord-btn--aqua {
  background: linear-gradient(135deg, #53f3d1, #21a9c5);
  box-shadow: 0 18px 42px rgba(83, 243, 209, 0.16);
}

.discord-btn--violet {
  color: #ffffff;
  background: linear-gradient(135deg, #8f5bff, #5c2dff);
  box-shadow: 0 18px 42px rgba(143, 91, 255, 0.20);
}

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

.discord-channel-card {
  --discord-accent: #53f3d1;
  --discord-rgb: 83, 243, 209;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 16px;
  border-color: rgba(var(--discord-rgb), 0.26);
  background:
    linear-gradient(145deg, rgba(var(--discord-rgb), 0.13), transparent 46%),
    rgba(17, 19, 37, 0.72);
}

.discord-channel-card span,
.discord-mini-grid span {
  color: #dffdf6;
  font-size: 0.76rem;
  font-weight: 860;
  text-transform: uppercase;
}

.discord-feature {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-color: rgba(83, 243, 209, 0.22);
  background:
    linear-gradient(135deg, rgba(83, 243, 209, 0.13), transparent 52%),
    linear-gradient(315deg, rgba(143, 91, 255, 0.14), transparent 42%),
    rgba(17, 19, 37, 0.76);
}

.discord-feature h2 {
  max-width: 820px;
}

.discord-feature p {
  max-width: 860px;
  margin: 12px 0 0;
}

.discord-small-note {
  padding-left: 14px;
  border-left: 3px solid #53f3d1;
}

.discord-feature-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(83, 243, 209, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.44);
}

.discord-feature-box strong {
  font-size: 1.16rem;
}

.discord-mini-grid {
  grid-template-columns: 1fr;
}

.discord-mini-grid div {
  padding: 14px;
  border: 1px solid rgba(143, 91, 255, 0.23);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.44);
}

.discord-mini-grid strong {
  display: block;
  margin-top: 5px;
}

.discord-event-panel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-color: rgba(83, 243, 209, 0.28);
  background:
    linear-gradient(135deg, rgba(87, 242, 135, 0.15), transparent 38%),
    linear-gradient(285deg, rgba(143, 91, 255, 0.22), transparent 54%),
    rgba(17, 19, 37, 0.78);
}

.discord-event-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(83, 243, 209, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 91, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.54;
}

.discord-event-panel > * {
  position: relative;
}

.discord-event-panel h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-size: 2.75rem;
  line-height: 1.02;
}

.discord-event-panel p {
  max-width: 820px;
  margin: 12px 0 0;
}

.discord-event-tiles {
  display: grid;
  gap: 12px;
}

.discord-event-tiles div {
  padding: 14px;
  border: 1px solid rgba(83, 243, 209, 0.20);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(83, 243, 209, 0.10), rgba(143, 91, 255, 0.07)),
    rgba(8, 9, 20, 0.48);
}

.discord-event-tiles span {
  color: #dffdf6;
  font-size: 0.74rem;
  font-weight: 860;
  text-transform: uppercase;
}

.discord-event-tiles strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 1rem;
}

.discord-event-tiles p {
  margin-top: 6px;
  font-size: 0.9rem;
}

.text-link {
  color: #53f3d1;
  font-weight: 880;
}

.news-preview-list,
.news-feed,
.brief-list {
  display: grid;
  gap: 10px;
}

.news-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 37, 0.66);
}

.news-date {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
}

.news-item h3 {
  margin: 8px 0 6px;
  font-size: 1rem;
}

.news-item p {
  margin: 0;
}

.notice {
  padding: 14px;
  color: var(--muted);
  line-height: 1.58;
}

.newsroom-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(280px, 0.74fr);
  gap: 14px;
  align-items: start;
}

.news-lead {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
}

.news-lead__flag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 92, 122, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 92, 122, 0.92), rgba(143, 91, 255, 0.28));
  color: #fff6f8;
  box-shadow: 0 16px 34px rgba(255, 92, 122, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.news-lead__flag strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 940;
  text-transform: uppercase;
}

.news-lead__flag span {
  color: rgba(255, 246, 248, 0.80);
  font-size: 0.8rem;
  font-weight: 840;
}

.news-lead__copy {
  display: grid;
  align-content: center;
  padding: 76px 32px 32px;
}

.news-lead h2 {
  margin: 12px 0;
  font-size: 3.6rem;
  line-height: 1;
}

.news-lead p {
  margin: 0;
  font-size: 1.04rem;
}

.news-lead__media {
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(79, 125, 255, 0.18), rgba(17, 19, 37, 0.88));
}

.news-lead__media img {
  width: 230px;
  opacity: 0.95;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.48));
}

.news-side {
  display: grid;
  gap: 14px;
}

.panel {
  padding: 16px;
}

.panel h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.brief {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brief:last-child {
  border-bottom: 0;
}

.brief time {
  color: #eadcff;
  font-size: 0.74rem;
  font-weight: 860;
}

.brief strong {
  display: block;
  font-size: 0.88rem;
}

.brief span {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.category-pill {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-weight: 760;
}

.category-pill strong {
  color: var(--text);
}

.news-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 780;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  color: var(--text);
  border-color: rgba(143, 91, 255, 0.58);
  background: rgba(143, 91, 255, 0.12);
}

.search-box {
  width: min(320px, 100%);
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.64);
  color: var(--text);
  outline: none;
}

.search-box--title {
  width: 100%;
}

.search-box:focus {
  border-color: rgba(143, 91, 255, 0.58);
}

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

.news-card {
  min-height: 210px;
  padding: 18px;
}

.news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.news-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.16;
}

.news-card p {
  margin: 0;
}

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

.server-card {
  min-height: 236px;
}

.card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.server-meta {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 10px;
  margin-top: 14px;
}

.meta-box {
  min-height: 58px;
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.46);
}

.meta-box span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.meta-box strong {
  overflow-wrap: anywhere;
  font-size: 0.88rem;
}

.server-empty {
  grid-column: 1 / -1;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.server-empty h2 {
  margin-top: 10px;
  font-size: 2.4rem;
  line-height: 1.05;
}

.server-empty p {
  margin: 12px 0 0;
}

.server-pulse {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    rgba(8, 9, 20, 0.58);
  background-size: 24px 24px;
}

.server-pulse strong {
  font-size: 2.6rem;
  line-height: 1;
}

.team-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.code-sample {
  margin: 0;
  overflow-x: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.74);
  color: #d9d0ff;
  line-height: 1.5;
}

.download-panel {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: center;
  padding: 28px;
}

.download-panel h2 {
  margin-top: 10px;
}

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

.download-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.44);
  color: var(--muted);
  line-height: 1.52;
}

.download-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.legal-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

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

.legal-block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.40);
}

.legal-block h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.legal-warning {
  border-color: rgba(244, 211, 94, 0.34);
  background: rgba(244, 211, 94, 0.09);
  color: #fff3c2;
}

.hof-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 14px;
}

.hof-panel {
  padding: 22px;
}

.hof-panel h2 {
  margin: 8px 0 10px;
  font-size: 2.2rem;
}

.hof-panel p {
  color: var(--muted);
  line-height: 1.62;
}

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

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

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.40);
}

.timeline-date {
  display: grid;
  gap: 6px;
  align-content: start;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 820;
}

.timeline-date strong {
  color: var(--text);
  font-size: 1rem;
}

.timeline-item h3 {
  margin: 9px 0 6px;
  font-size: 1.22rem;
}

.timeline-item p {
  margin: 0;
}

.name-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.name-cloud span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 780;
}

.members-page .page-title h1 {
  max-width: 900px;
}

.member-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.member-tab {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.member-tab:hover,
.member-tab.is-active {
  transform: translateY(-1px);
  border-color: rgba(83, 243, 209, 0.46);
  background: linear-gradient(180deg, rgba(83, 243, 209, 0.16), rgba(143, 91, 255, 0.08));
  color: #ffffff;
}

.member-panel {
  display: grid;
  gap: 18px;
}

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

.member-hero,
.hof-hero,
.admin-shell,
.hof-board,
.member-info-card,
.hof-highlight,
.member-year-card,
.admin-news-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.073), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow-soft);
}

.member-hero,
.hof-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-color: rgba(83, 243, 209, 0.24);
  background:
    linear-gradient(135deg, rgba(83, 243, 209, 0.14), transparent 44%),
    linear-gradient(315deg, rgba(143, 91, 255, 0.22), transparent 54%),
    rgba(17, 19, 37, 0.76);
}

.member-hero::before,
.hof-hero::before,
.admin-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(83, 243, 209, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 91, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.5;
}

.member-hero > *,
.hof-hero > *,
.admin-shell > * {
  position: relative;
}

.member-hero h2,
.hof-hero h2,
.admin-intro h2 {
  max-width: 840px;
  margin: 10px 0 0;
  font-size: 3.1rem;
  line-height: 1;
}

.member-hero p,
.hof-hero p,
.admin-intro p,
.member-info-card p,
.hof-highlight p,
.member-year-card p,
.admin-news-item p,
.admin-shell label span {
  color: var(--muted);
  line-height: 1.62;
}

.member-hero p,
.hof-hero p,
.admin-intro p {
  max-width: 760px;
  margin: 14px 0 0;
}

.member-hero-side {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(83, 243, 209, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.46);
}

.member-hero-side strong {
  font-size: 1.18rem;
}

.member-info-grid,
.hof-highlight-grid,
.member-year-grid {
  display: grid;
  gap: 14px;
}

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

.member-info-card,
.member-year-card {
  --member-accent: #53f3d1;
  --member-rgb: 83, 243, 209;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 18px;
  border-color: rgba(var(--member-rgb), 0.24);
  background:
    linear-gradient(145deg, rgba(var(--member-rgb), 0.13), transparent 48%),
    rgba(17, 19, 37, 0.72);
}

.member-info-card::before,
.member-year-card::before,
.hof-highlight::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--member-accent), transparent 72%);
}

.member-info-card > *,
.member-year-card > *,
.hof-highlight > * {
  position: relative;
}

.member-info-card--violet,
.member-year-card--violet {
  --member-accent: #8f5bff;
  --member-rgb: 143, 91, 255;
}

.member-info-card--green {
  --member-accent: #57f287;
  --member-rgb: 87, 242, 135;
}

.member-year-card--blue {
  --member-accent: #4f7dff;
  --member-rgb: 79, 125, 255;
}

.member-year-card--aqua {
  --member-accent: #53f3d1;
  --member-rgb: 83, 243, 209;
}

.member-info-card span,
.member-year-card > span,
.hof-highlight time,
.admin-news-meta time {
  color: #dffdf6;
  font-size: 0.76rem;
  font-weight: 860;
  text-transform: uppercase;
}

.member-info-card h3,
.member-year-card h3,
.hof-highlight h3 {
  margin: 10px 0 7px;
  color: var(--text);
  font-size: 1.18rem;
}

.member-info-card p,
.hof-highlight p,
.admin-news-item p {
  margin: 0;
}

.hof-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hof-quick-stats div {
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(83, 243, 209, 0.20);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.44);
}

.hof-quick-stats span {
  color: #dffdf6;
  font-size: 0.74rem;
  font-weight: 860;
  text-transform: uppercase;
}

.hof-quick-stats strong {
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
}

.hof-quick-stats p {
  margin: 0;
  color: var(--muted);
}

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

.hof-highlight {
  --member-accent: #57f287;
  --member-rgb: 87, 242, 135;
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 18px;
  border-color: rgba(var(--member-rgb), 0.26);
  background:
    linear-gradient(145deg, rgba(var(--member-rgb), 0.14), transparent 46%),
    rgba(17, 19, 37, 0.72);
}

.hof-highlight--violet {
  --member-accent: #8f5bff;
  --member-rgb: 143, 91, 255;
}

.hof-board {
  padding: 22px;
}

.members-page .section-head h2 {
  font-size: 3rem;
  line-height: 1;
}

.fame-timeline .timeline-item {
  border-color: rgba(83, 243, 209, 0.18);
  background:
    linear-gradient(145deg, rgba(83, 243, 209, 0.08), transparent 44%),
    rgba(8, 9, 20, 0.42);
}

.member-year-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.9fr) minmax(0, 1.3fr);
}

.hof-wall {
  position: relative;
}

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

.honor-plaque {
  --honor-accent: #ffd36d;
  --honor-rgb: 255, 211, 109;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(var(--honor-rgb), 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(var(--honor-rgb), 0.18), transparent 46%),
    linear-gradient(315deg, rgba(143, 91, 255, 0.12), transparent 62%),
    rgba(10, 11, 24, 0.84);
  box-shadow:
    0 22px 66px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.honor-plaque::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--honor-accent), transparent 78%);
}

.honor-plaque::after {
  content: attr(data-initial);
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 4.2rem;
  font-weight: 950;
  line-height: 1;
}

.honor-plaque:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--honor-rgb), 0.52);
  box-shadow:
    0 26px 76px rgba(var(--honor-rgb), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.honor-plaque span {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(var(--honor-rgb), 0.34);
  border-radius: 999px;
  background: rgba(var(--honor-rgb), 0.11);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.honor-plaque h3 {
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 1.72rem;
  line-height: 1.05;
  text-shadow: 0 0 26px rgba(var(--honor-rgb), 0.2);
}

.honor-plaque p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.honor-plaque--aqua {
  --honor-accent: #53f3d1;
  --honor-rgb: 83, 243, 209;
}

.honor-plaque--violet {
  --honor-accent: #8f5bff;
  --honor-rgb: 143, 91, 255;
}

.member-download-panel {
  border-color: rgba(83, 243, 209, 0.28);
  background:
    linear-gradient(135deg, rgba(83, 243, 209, 0.15), transparent 44%),
    linear-gradient(315deg, rgba(143, 91, 255, 0.18), transparent 56%),
    rgba(17, 19, 37, 0.76);
}

.member-download-panel .download-list li {
  position: relative;
  overflow: hidden;
  border-color: rgba(83, 243, 209, 0.18);
  background: rgba(8, 9, 20, 0.52);
}

.member-download-panel .download-list li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #53f3d1, #8f5bff);
}

.member-download-panel .download-list li:nth-child(2)::before {
  background: linear-gradient(180deg, #8f5bff, #4f7dff);
}

.member-download-panel .download-list li:nth-child(3)::before {
  background: linear-gradient(180deg, #4f7dff, #53f3d1);
}

.members-page .hof-hero {
  isolation: isolate;
  min-height: 390px;
  border-color: rgba(255, 211, 109, 0.34);
  background:
    linear-gradient(120deg, rgba(255, 211, 109, 0.16), transparent 38%),
    linear-gradient(225deg, rgba(143, 91, 255, 0.26), transparent 56%),
    linear-gradient(315deg, rgba(83, 243, 209, 0.12), transparent 62%),
    rgba(10, 11, 24, 0.9);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(143, 91, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.members-page .hof-hero::before {
  opacity: 0.44;
  background:
    linear-gradient(90deg, rgba(255, 211, 109, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(83, 243, 209, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
}

.members-page .hof-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -18%;
  right: -18%;
  bottom: 0;
  height: 98px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 109, 0.28), rgba(83, 243, 209, 0.22), rgba(143, 91, 255, 0.24), transparent);
  filter: blur(18px);
  opacity: 0.82;
  transform: translateX(-16%) skewX(-10deg);
  animation: hofCrownSweep 7.5s ease-in-out infinite;
}

.members-page .hof-hero h2 {
  max-width: 840px;
  background: linear-gradient(92deg, #ffffff 0%, #ffe8a8 42%, #d9c2ff 74%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 30px rgba(255, 211, 109, 0.16);
}

.members-page .hof-hero .actions .btn {
  box-shadow: 0 0 22px rgba(83, 243, 209, 0.1);
}

.hof-quick-stats div {
  --stat-accent: #ffd36d;
  --stat-rgb: 255, 211, 109;
  position: relative;
  overflow: hidden;
  border-color: rgba(var(--stat-rgb), 0.28);
  background:
    linear-gradient(145deg, rgba(var(--stat-rgb), 0.14), transparent 48%),
    rgba(8, 9, 20, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hof-quick-stats div:nth-child(2) {
  --stat-accent: #8f5bff;
  --stat-rgb: 143, 91, 255;
}

.hof-quick-stats div:nth-child(3) {
  --stat-accent: #53f3d1;
  --stat-rgb: 83, 243, 209;
}

.hof-quick-stats div:nth-child(4) {
  --stat-accent: #4f7dff;
  --stat-rgb: 79, 125, 255;
}

.hof-quick-stats div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--stat-accent), transparent 72%);
}

.hof-quick-stats div:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--stat-rgb), 0.5);
  box-shadow: 0 18px 42px rgba(var(--stat-rgb), 0.14);
}

.hof-quick-stats strong {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(var(--stat-rgb), 0.26);
}

.members-page .hof-highlight {
  min-height: 230px;
  padding: 22px;
  border-color: rgba(var(--member-rgb), 0.34);
  background:
    linear-gradient(140deg, rgba(var(--member-rgb), 0.18), transparent 50%),
    linear-gradient(315deg, rgba(255, 211, 109, 0.09), transparent 62%),
    rgba(10, 11, 24, 0.82);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.members-page .hof-highlight:hover,
.members-page .member-year-card:hover,
.fame-timeline .timeline-item:hover {
  transform: translateY(-3px);
}

.members-page .hof-highlight h3 {
  font-size: 1.42rem;
}

.members-page .hof-highlight .name-cloud span,
.members-page .member-year-card .name-cloud span {
  border-color: rgba(var(--member-rgb), 0.34);
  background:
    linear-gradient(180deg, rgba(var(--member-rgb), 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.members-page .hof-board {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 211, 109, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 211, 109, 0.08), transparent 44%),
    linear-gradient(315deg, rgba(143, 91, 255, 0.12), transparent 56%),
    rgba(10, 11, 24, 0.78);
}

.members-page .hof-board::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd36d, #53f3d1, #8f5bff, transparent);
}

.members-page .hof-board > * {
  position: relative;
}

.fame-timeline .timeline-item {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 211, 109, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 211, 109, 0.08), transparent 42%),
    rgba(8, 9, 20, 0.5);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.fame-timeline .timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #ffd36d, #53f3d1);
}

.fame-timeline .timeline-item:hover {
  border-color: rgba(255, 211, 109, 0.34);
  box-shadow: 0 18px 48px rgba(255, 211, 109, 0.08);
}

.fame-timeline .timeline-date {
  border-color: rgba(255, 211, 109, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 211, 109, 0.12), rgba(143, 91, 255, 0.08)),
    rgba(8, 9, 20, 0.56);
}

.members-page .member-year-card {
  min-height: 190px;
  border-color: rgba(var(--member-rgb), 0.3);
  background:
    linear-gradient(145deg, rgba(var(--member-rgb), 0.16), transparent 50%),
    rgba(10, 11, 24, 0.78);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.members-page .member-year-card:hover {
  border-color: rgba(var(--member-rgb), 0.46);
  box-shadow: 0 20px 56px rgba(var(--member-rgb), 0.13);
}

@keyframes hofCrownSweep {
  0%,
  100% {
    transform: translateX(-16%) skewX(-10deg);
    opacity: 0.58;
  }

  50% {
    transform: translateX(16%) skewX(-10deg);
    opacity: 0.9;
  }
}

.admin-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-color: rgba(143, 91, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(143, 91, 255, 0.16), transparent 48%),
    linear-gradient(315deg, rgba(83, 243, 209, 0.12), transparent 54%),
    rgba(17, 19, 37, 0.76);
}

.admin-page {
  min-height: 100vh;
}

.admin-standalone {
  min-height: 100vh;
  display: grid;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 34px;
}

.admin-standalone .admin-shell {
  width: 100%;
}

.admin-standalone .notice {
  position: relative;
}

.admin-login,
.admin-workbench {
  position: relative;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-login-form {
  max-width: 520px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
}

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

.admin-shell label {
  display: grid;
  gap: 7px;
}

.admin-shell input,
.admin-shell textarea,
.admin-shell select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(204, 188, 255, 0.20);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.64);
  color: #ffffff;
  padding: 11px 12px;
  outline: none;
}

.admin-shell textarea {
  resize: vertical;
}

.admin-shell input:focus,
.admin-shell textarea:focus,
.admin-shell select:focus {
  border-color: rgba(83, 243, 209, 0.50);
  box-shadow: 0 0 0 3px rgba(83, 243, 209, 0.10);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(83, 243, 209, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.44);
}

.admin-toolbar strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.2rem;
}

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

.admin-release-panel {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(83, 243, 209, 0.20);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(83, 243, 209, 0.10), transparent 46%),
    rgba(8, 9, 20, 0.42);
}

.admin-release-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.admin-release-head h3 {
  margin: 6px 0 5px;
  color: #ffffff;
  font-size: 1.3rem;
}

.admin-release-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-release-head > strong {
  min-width: 142px;
  display: inline-flex;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid rgba(83, 243, 209, 0.24);
  border-radius: 999px;
  background: rgba(83, 243, 209, 0.10);
  color: #dffdf6;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.admin-release-head > strong[data-status="open"] {
  border-color: rgba(87, 242, 135, 0.30);
  background: rgba(87, 242, 135, 0.12);
  color: #d9ffe4;
}

.admin-release-head > strong[data-status="locked"] {
  border-color: rgba(255, 211, 109, 0.30);
  background: rgba(255, 211, 109, 0.12);
  color: #fff1bf;
}

.release-form-grid {
  grid-template-columns: minmax(160px, 0.55fr) minmax(190px, 0.7fr) minmax(220px, 1fr) minmax(220px, 1fr);
}

.release-admin-preview {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(143, 91, 255, 0.20);
  border-radius: var(--radius);
  background: rgba(8, 9, 20, 0.42);
}

.release-admin-preview span {
  color: #dffdf6;
  font-size: 0.74rem;
  font-weight: 880;
  text-transform: uppercase;
}

.release-admin-preview strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.release-admin-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-message {
  min-height: 26px;
  margin: 14px 0;
  color: var(--muted);
  font-weight: 820;
}

.admin-message[data-tone="ok"] {
  color: #cffff4;
}

.admin-message[data-tone="off"] {
  color: #ffd4dc;
}

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

.admin-news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(8, 9, 20, 0.44);
}

.admin-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.admin-news-item h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

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

.footer-admin-link {
  opacity: 0.58;
  font-size: 0.78rem;
}

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

.creator-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.creator-card .btn {
  justify-self: start;
  margin-top: 4px;
}

.creator-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(143, 91, 255, 0.12), rgba(79, 125, 255, 0.05));
  box-shadow: var(--shadow-soft);
}

.creator-empty h2 {
  margin: 0 0 8px;
}

.creator-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(143, 91, 255, 0.48); }
  70% { box-shadow: 0 0 0 9px rgba(143, 91, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(143, 91, 255, 0); }
}

@keyframes sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes ekg-draw {
  0% { stroke-dashoffset: 860; opacity: 0.3; }
  12% { opacity: 1; }
  72% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -220; opacity: 0.3; }
}

@keyframes scan {
  0% { transform: translateY(-35vh); }
  100% { transform: translateY(120vh); }
}

@keyframes news-alert-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 22px rgba(52, 228, 255, 0.26);
  }
  50% {
    transform: translateY(-1px) scale(1.06);
    box-shadow: 0 0 36px rgba(52, 228, 255, 0.46), 0 0 28px rgba(123, 77, 255, 0.22);
  }
}

@media (max-width: 1050px) {
  .header-row {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
  }

  .top-tabs {
    justify-self: stretch;
    justify-content: start;
  }

  .header-actions {
    justify-self: end;
  }

  .pulse-row,
  .hero,
  .discord-hero,
  .discord-feature,
  .discord-event-panel,
  .member-hero,
  .hof-hero,
  .newsroom-layout,
  .news-lead,
  .today-pulse,
  .server-empty,
  .download-panel,
  .team-entry,
  .hof-intro {
    grid-template-columns: 1fr;
  }

  .pulse-row {
    padding: 10px 0;
  }

  .visual-panel {
    min-height: 350px;
  }

  .news-lead__media {
    min-height: 190px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 780px) {
  .page-title,
  .grid,
  .grid.two,
  .grid.four,
  .support-grid,
  .discord-action-grid,
  .discord-overview-grid,
  .discord-channel-grid,
  .discord-rule-grid,
  .member-info-grid,
  .hof-highlight-grid,
  .honor-wall-grid,
  .member-year-grid,
  .community-pulse-grid,
  .today-pulse__list,
  .release-countdown,
  .admin-login-form,
  .admin-form-grid,
  .creator-grid,
  .news-grid,
  .server-grid,
  .legal-grid,
  .hof-stats {
    grid-template-columns: 1fr;
  }

  .page-meta {
    text-align: left;
  }

  .page-title-tools {
    min-width: 0;
  }

  .page-title h1,
  .hero h1,
  .release-gate h1 {
    font-size: 3rem;
  }

  .news-lead h2,
  .discord-hero-card h2,
  .discord-checklist h2,
  .discord-feature h2,
  .discord-event-panel h2,
  .member-hero h2,
  .hof-hero h2,
  .admin-intro h2,
  .server-empty h2 {
    font-size: 2.25rem;
  }

  .home-news-section .section-head h2 {
    font-size: 2.35rem;
  }

  .home-news-section {
    padding: 16px;
  }

  .home-news-section .news-preview-list {
    grid-template-columns: 1fr;
  }

  .news-alert {
    width: 36px;
    height: 36px;
    font-size: 1.45rem;
  }

  .hero-panel,
  .news-lead__copy {
    padding: 24px;
  }

  .news-lead__copy {
    padding-top: 76px;
  }

  .section-head,
  .feature-panel,
  .news-toolbar,
  .admin-release-head,
  .admin-toolbar,
  .footer {
    display: grid;
  }

  .news-item,
  .timeline-item {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 520px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 22px));
  }

  .brand {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .page-title h1,
  .hero h1,
  .release-gate h1 {
    font-size: 2.35rem;
  }

  .discord-hero-card,
  .discord-checklist,
  .discord-feature,
  .discord-event-panel,
  .release-gate__shell,
  .member-hero,
  .hof-hero,
  .admin-shell,
  .hof-board {
    padding: 20px;
  }

  .discord-hero-card h2,
  .discord-checklist h2,
  .discord-feature h2,
  .discord-event-panel h2,
  .member-hero h2,
  .hof-hero h2,
  .admin-intro h2,
  .members-page .section-head h2 {
    font-size: 1.95rem;
  }

  .member-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .btn,
  .header-actions,
  .header-cta,
  .header-discord {
    width: 100%;
  }

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

  .signal-list {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 16px;
  }
}

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