
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800;900&family=Oxanium:wght@500;700;800&display=swap');

:root {
  --bg: #04090d;
  --bg-deep: #071218;
  --bg-fog: #0b1d23;
  --stone: #0e191f;
  --panel: rgba(10, 24, 30, 0.84);
  --panel-strong: rgba(14, 34, 42, 0.94);
  --text: #eafcfe;
  --muted: rgba(188, 226, 232, 0.76);
  --brand: #4aeaff;
  --brand-2: #93fbff;
  --brand-3: #63e3c7;
  --glow-soft: rgba(74, 234, 255, 0.14);
  --glow-mid: rgba(74, 234, 255, 0.24);
  --glow-strong: rgba(147, 251, 255, 0.34);
  --stroke: rgba(110, 233, 242, 0.16);
  --stroke-strong: rgba(147, 251, 255, 0.24);
  --shadow: 0 24px 78px rgba(0, 0, 0, 0.7);
  --radius: 18px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --wrap: min(1100px, calc(100vw - 36px));
  --heading: "Oxanium", Inter, system-ui, sans-serif;
  --body-font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% -6%, rgba(74, 234, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% -2%, rgba(147, 251, 255, 0.12), transparent 24%),
    radial-gradient(circle at 50% 18%, rgba(44, 134, 146, 0.16), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(30, 96, 108, 0.26), transparent 44%),
    linear-gradient(180deg, #020507 0%, var(--bg-deep) 38%, var(--bg) 100%);
  font-family: var(--body-font);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23noise)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(74, 234, 255, 0.03) 50%, transparent 100%),
    radial-gradient(circle at 50% 0%, rgba(147, 251, 255, 0.06), transparent 35%);
  opacity: 0.7;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

code {
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(147, 251, 255, 0.12);
  background: rgba(8, 22, 28, 0.92);
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 999;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(7, 18, 22, 0.92);
  border: 1px solid var(--stroke-strong);
  color: var(--text);
  transform: translateY(-140%);
  transition: transform 0.12s ease;
}

.skip-link:focus {
  transform: translateY(0);
  box-shadow: 0 0 28px rgba(74, 234, 255, 0.18);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(74, 234, 255, 0.18),
    0 0 24px rgba(74, 234, 255, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(6, 14, 17, 0.9), rgba(5, 11, 14, 0.78));
  border-bottom: 1px solid var(--stroke);
  box-shadow:
    inset 0 -1px 0 rgba(147, 251, 255, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.24);
}

.site-header .wrap {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 8px;
  color: var(--text);
  font: inherit;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(147, 251, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(11, 24, 29, 0.94), rgba(7, 15, 18, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(147, 251, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.brand::before,
.brand::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand::before {
  left: -8px;
  width: 68px;
  top: -18%;
  height: 136%;
  background:
    radial-gradient(circle at 50% 50%, rgba(147, 251, 255, 0.14), transparent 46%),
    radial-gradient(circle at 58% 46%, rgba(74, 234, 255, 0.12), transparent 34%);
  filter: blur(14px);
  opacity: 0.72;
}

.brand::after {
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(147, 251, 255, 0.05);
}

.brand:hover {
  transform: translateY(-1px);
  border-color: rgba(147, 251, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(15, 33, 39, 0.96), rgba(8, 18, 22, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(147, 251, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(74, 234, 255, 0.08);
}

.brand.is-copied {
  border-color: rgba(147, 251, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(18, 46, 52, 0.98), rgba(9, 24, 28, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(147, 251, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(74, 234, 255, 0.16);
}

.brand-ip {
  padding: 10px 16px;
  white-space: nowrap;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 0 10px rgba(74, 234, 255, 0.12))
    drop-shadow(0 0 22px rgba(147, 251, 255, 0.08));
}

.brand-title {
  position: relative;
  z-index: 1;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(74, 234, 255, 0.08);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nav a {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease,
    box-shadow 0.12s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(147, 251, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(27, 72, 83, 0.26), rgba(14, 36, 42, 0.22));
}

.nav a[aria-current="page"] {
  box-shadow:
    0 0 0 1px rgba(74, 234, 255, 0.16),
    0 0 26px rgba(74, 234, 255, 0.12);
}

.hero {
  position: relative;
  padding: 40px 0 24px;
}

.hero-warden {
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(74, 234, 255, 0.2), transparent 31%),
    radial-gradient(circle at 18% 20%, rgba(147, 251, 255, 0.1), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(99, 227, 199, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(18, 44, 52, 0.34), transparent 64%);
}

.hero-warden::before,
.hero-warden::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-warden::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(74, 234, 255, 0.18), transparent 18%),
    radial-gradient(circle at 50% 28%, rgba(147, 251, 255, 0.08), transparent 30%);
  filter: blur(12px);
  z-index: -1;
}

.hero-warden::after {
  left: 50%;
  bottom: 0;
  width: min(760px, 84vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(147, 251, 255, 0.34), transparent);
  box-shadow: 0 0 24px rgba(74, 234, 255, 0.18);
}

.hero-warden .wrap {
  position: relative;
  z-index: 1;
}

.hero-banner {
  width: min(760px, 100%);
  margin: 0 auto 4px;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 0 42px rgba(74, 234, 255, 0.26))
    drop-shadow(0 0 70px rgba(255, 106, 0, 0.18))
    drop-shadow(0 0 110px rgba(147, 251, 255, 0.18));
  transform-origin: center bottom;
  animation: heroFloat 7.2s ease-in-out infinite, heroGlow 6.4s ease-in-out infinite;
}

.hero-title,
.page-title {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 0 28px rgba(74, 234, 255, 0.12);
}

.subtext,
.page-subtitle {
  max-width: 680px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.ip-text {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(147, 251, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 27, 32, 0.94), rgba(6, 16, 19, 0.94));
  color: rgba(234, 244, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(147, 251, 255, 0.06),
    0 0 22px rgba(74, 234, 255, 0.08);
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    filter 0.12s ease,
    box-shadow 0.12s ease;
}

.primary {
  background:
    linear-gradient(135deg, var(--brand-2), var(--brand) 38%, #1c9fba 72%, #0e5f6d 100%);
  color: #021517;
  border: 1px solid rgba(147, 251, 255, 0.24);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(74, 234, 255, 0.22);
}

.primary:hover,
.secondary:hover {
  transform: translateY(-2px);
}

.primary:hover {
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.36),
    0 0 46px rgba(74, 234, 255, 0.28);
}

.primary.is-copied,
.primary.is-opened {
  background: linear-gradient(135deg, var(--brand-3), #4ec8ab);
}

.secondary {
  border: 1px solid rgba(147, 251, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(14, 28, 35, 0.9), rgba(8, 18, 23, 0.94));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(147, 251, 255, 0.05);
}

.secondary:hover {
  border-color: rgba(147, 251, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(20, 42, 50, 0.94), rgba(10, 21, 26, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(147, 251, 255, 0.06),
    0 0 28px rgba(74, 234, 255, 0.08);
}

.strip {
  position: relative;
  padding: 10px 0 22px;
}

.strip-grid,
.grid {
  display: grid;
  gap: 14px;
}

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

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

.grid-narrow {
  max-width: 780px;
  margin: 20px auto 0;
  grid-template-columns: 1fr;
}

.section {
  position: relative;
  padding: 56px 0 62px;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(10, 23, 27, 0.44), rgba(6, 13, 15, 0.22));
}

.section-head {
  max-width: 660px;
  text-align: center;
  margin: 0 auto 24px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(147, 251, 255, 0.16);
  background: rgba(9, 23, 28, 0.78);
  color: var(--brand-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(147, 251, 255, 0.05),
    0 0 18px rgba(74, 234, 255, 0.08);
}

.section-title {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(25px, 3vw, 30px);
  letter-spacing: -0.02em;
}

.section-sub {
  max-width: 560px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 32, 38, 0.92), rgba(8, 19, 23, 0.98));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 251, 255, 0.26), transparent);
}

.strip .card {
  background:
    radial-gradient(circle at 50% -10%, rgba(74, 234, 255, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(14, 32, 38, 0.94), rgba(8, 19, 23, 0.98));
}

.strip .big {
  font-size: clamp(24px, 4vw, 30px);
  letter-spacing: -0.04em;
}

.small {
  color: var(--muted);
  font-weight: 600;
}

.big {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 900;
}

.feature-title {
  font-family: var(--heading);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.feature-text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.link-card {
  display: block;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 251, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(20, 46, 54, 0.98), rgba(10, 22, 26, 0.98));
  box-shadow:
    var(--shadow),
    0 0 36px rgba(74, 234, 255, 0.1);
}

.steps {
  max-width: 780px;
  margin: 0 auto;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

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

.note {
  max-width: 780px;
  margin: 20px auto 0;
}

.section-announcements {
  padding-top: 6px;
}

.announcements-shell {
  padding: 18px 22px 20px;
  background:
    radial-gradient(circle at 84% 12%, rgba(74, 234, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(14, 32, 38, 0.95), rgba(8, 18, 23, 0.98));
}

.announcements-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.announcement-kicker {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.announcements-grid {
  display: grid;
  gap: 18px;
}

.announcement-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 100%;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(147, 251, 255, 0.14);
  background:
    radial-gradient(circle at 92% 12%, rgba(74, 234, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(15, 32, 39, 0.98), rgba(8, 18, 23, 0.98));
  box-shadow: var(--shadow);
}

.announcement-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(32, 116, 130, 0), rgba(112, 245, 255, 0.38), rgba(32, 116, 130, 0));
}

.announcement-date-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  padding: 22px 14px 18px;
  border-right: 1px solid rgba(147, 251, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 26, 31, 0.94), rgba(6, 14, 18, 0.94));
}

.announcement-month,
.announcement-day,
.announcement-year,
.announcement-meta-label,
.announcement-meta-readtime,
.announcement-link,
.announcement-author-date {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.announcement-month {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-2);
}

.announcement-day {
  font-family: var(--heading);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.announcement-year {
  font-size: 10px;
  color: rgba(208, 244, 247, 0.62);
}

.announcement-main {
  min-width: 0;
  padding: 22px 24px 24px;
}

.announcement-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.announcement-heading-stack {
  min-width: 0;
}

.announcement-author-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}

.announcement-author-meta {
  min-width: 0;
  text-align: right;
}

.announcement-author-panel {
  display: flex;
  flex: 0 0 148px;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.announcement-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(147, 251, 255, 0.18);
  background: linear-gradient(180deg, rgba(18, 37, 44, 0.98), rgba(8, 18, 23, 0.98));
  box-shadow:
    0 0 0 1px rgba(74, 234, 255, 0.06),
    0 0 24px rgba(74, 234, 255, 0.08);
}

.announcement-avatar.placeholder {
  background:
    linear-gradient(135deg, rgba(74, 234, 255, 0.18), rgba(12, 28, 34, 0.96));
}

.announcement-author-name,
.announcement-title,
.announcement-subhead {
  font-family: var(--heading);
}

.announcement-author-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233, 252, 255, 0.92);
}

.announcement-author-date {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(206, 244, 248, 0.68);
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(147, 251, 255, 0.16);
  background: rgba(7, 18, 23, 0.84);
  color: var(--brand-2);
  font-size: 11px;
  font-weight: 800;
  transition:
    transform 0.12s ease,
    border-color 0.12s ease,
    background 0.12s ease;
}

.announcement-link:hover {
  transform: translateY(-1px);
  border-color: rgba(147, 251, 255, 0.24);
  background: rgba(10, 24, 30, 0.94);
}

.announcement-title {
  font-size: clamp(22px, 3.2vw, 31px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.announcement-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.announcement-meta-label,
.announcement-meta-readtime {
  font-size: 11px;
  font-weight: 800;
  color: rgba(214, 249, 251, 0.74);
}

.announcement-meta-dot {
  color: rgba(129, 237, 242, 0.7);
}

.announcement-body {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(147, 251, 255, 0.08);
}

.announcement-subhead {
  margin: 24px 0 10px;
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(243, 254, 255, 0.96);
}

.announcement-subhead:first-child {
  margin-top: 0;
}

.announcement-paragraph {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  white-space: pre-line;
}

.announcement-paragraph + .announcement-paragraph {
  margin-top: 14px;
}

.announcement-subhead + .announcement-paragraph {
  margin-top: 0;
}

.announcement-paragraph + .announcement-subhead {
  margin-top: 24px;
}

.announcement-image {
  width: 100%;
  margin-top: 20px;
  border-radius: 18px;
  border: 1px solid rgba(147, 251, 255, 0.14);
  object-fit: cover;
  aspect-ratio: 16 / 9;
  background: rgba(7, 18, 23, 0.9);
}

.announcement-empty {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(147, 251, 255, 0.18);
  background: rgba(8, 19, 23, 0.78);
}

.announcement-empty.is-hidden {
  display: none;
}

.announcement-card.is-loading {
  min-height: 260px;
}

.announcement-skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(147, 251, 255, 0.08);
}

.announcement-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(147, 251, 255, 0.18), transparent);
  animation: skeletonSweep 1.8s ease-in-out infinite;
}

.announcement-skeleton-month {
  width: 34px;
  height: 10px;
}

.announcement-skeleton-day {
  width: 38px;
  height: 30px;
  margin-top: 4px;
  border-radius: 10px;
}

.announcement-skeleton-year {
  width: 28px;
  height: 10px;
  margin-top: 4px;
}

.announcement-skeleton-heading {
  width: min(72%, 420px);
  height: 18px;
  border-radius: 10px;
}

.announcement-skeleton-label {
  width: 108px;
  height: 11px;
  margin-top: 12px;
}

.announcement-skeleton-dot {
  width: 8px;
  height: 8px;
  margin-top: 13px;
}

.announcement-skeleton-readtime {
  width: 74px;
  height: 11px;
  margin-top: 12px;
}

.announcement-skeleton-author {
  width: 78px;
  height: 12px;
  margin-top: 12px;
}

.announcement-skeleton-author-date {
  width: 68px;
  height: 10px;
  margin-top: 8px;
}

.announcement-skeleton-body {
  width: 100%;
  height: 12px;
  margin-top: 14px;
}

.announcement-skeleton-body.short {
  width: 74%;
}

.sculk-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sculk-field-global {
  position: fixed;
  inset: 0;
  opacity: 0.84;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.sculk-field-hero {
  inset: -4% 0 0;
}

.sculk-mote {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(194, 255, 255, 0.96) 0%, rgba(127, 248, 255, 0.78) 22%, rgba(57, 183, 200, 0.36) 54%, transparent 74%);
  box-shadow:
    0 0 16px rgba(74, 234, 255, 0.24),
    0 0 34px rgba(74, 234, 255, 0.16);
  opacity: 0.12;
  transform: translate3d(0, 0, 0) scale(0.82);
  animation:
    sculkDrift var(--duration) ease-in-out infinite,
    sculkPulse calc(var(--duration) * 0.82) ease-in-out infinite;
  animation-delay: var(--delay);
}

.sculk-mote::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: inherit;
  background: rgba(222, 255, 255, 0.9);
  filter: blur(1px);
}

.sculk-field-global .sculk-mote {
  opacity: 0.08;
}

.sculk-field-hero .sculk-mote {
  opacity: 0.24;
}

.vote-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(74, 234, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(14, 32, 38, 0.92), rgba(8, 19, 23, 0.98));
}

.vote-panel-copy {
  text-align: left;
  align-self: center;
}

.vote-panel-copy .subtext {
  margin-left: 0;
  margin-right: 0;
}

.vote-panel-copy .cta-row {
  justify-content: flex-start;
}

.vote-rotation-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.vote-rotation-status {
  color: rgba(214, 246, 250, 0.8);
  font-size: 13px;
}

.vote-reset {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-2);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.vote-reset:hover {
  text-decoration: underline;
}

.vote-highlight-grid {
  display: flex;
  align-items: center;
}

.vote-hero-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 4px 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.vote-hero-message-title,
.vote-card-title {
  font-family: var(--heading);
}

.vote-hero-message-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--brand-2);
  text-shadow: 0 0 22px rgba(74, 234, 255, 0.18);
}

.vote-hero-message-text {
  margin-top: 12px;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(220, 248, 251, 0.84);
}

.vote-card-domain,
.vote-card-arrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.vote-links-grid,
.vote-reward-grid {
  display: grid;
  gap: 16px;
}

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

.vote-card {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(147, 251, 255, 0.14);
  background:
    radial-gradient(circle at 88% 14%, rgba(74, 234, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(14, 32, 38, 0.96), rgba(8, 18, 23, 0.98));
  box-shadow: var(--shadow);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.vote-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 251, 255, 0.28), transparent);
}

.vote-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -32% 42%;
  height: 170px;
  background: radial-gradient(circle, rgba(74, 234, 255, 0.16), transparent 68%);
  opacity: 0;
  transform: rotate(-10deg);
  transition: opacity 0.16s ease;
}

.vote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 251, 255, 0.24);
  background:
    radial-gradient(circle at 84% 12%, rgba(74, 234, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(18, 41, 49, 0.98), rgba(8, 19, 23, 0.98));
  box-shadow:
    var(--shadow),
    0 0 36px rgba(74, 234, 255, 0.12);
}

.vote-card:hover::after {
  opacity: 1;
}

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

.vote-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(147, 251, 255, 0.16);
  background: rgba(7, 18, 23, 0.82);
  color: rgba(221, 247, 250, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vote-card-arrow {
  font-size: 11px;
  color: var(--brand-2);
}

.vote-card-title {
  margin-top: 18px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vote-card-domain {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(198, 240, 245, 0.7);
}

.vote-reward-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vote-reward-card {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% -8%, rgba(74, 234, 255, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(15, 32, 39, 0.94), rgba(8, 19, 23, 0.98));
}

.vote-note {
  text-align: center;
}

.vote-note .feature-text {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.wiki-shell,
.wiki-section-stack,
.wiki-board-grid {
  display: grid;
  gap: 18px;
}

.wiki-shell {
  gap: 26px;
}

.wiki-hero-copy {
  max-width: 860px;
  padding: 28px 28px 24px;
  background:
    radial-gradient(circle at 10% 8%, rgba(74, 234, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(13, 29, 35, 0.96), rgba(7, 16, 20, 0.98));
}

.wiki-hero-copy .page-subtitle {
  max-width: 64ch;
  margin: 8px 0 0;
}

.wiki-hero-text,
.wiki-hero-note {
  color: rgba(216, 244, 248, 0.82);
  line-height: 1.72;
}

.wiki-hero-text {
  margin: 12px 0 0;
  max-width: 64ch;
}

.wiki-hero-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: rgba(123, 244, 230, 0.96);
  font-weight: 700;
}

.wiki-group-block + .wiki-group-block {
  margin-top: 12px;
}

.wiki-group-head {
  margin-bottom: 6px;
}

.wiki-group-copy {
  min-width: 0;
}

.wiki-group-copy .section-title {
  margin-bottom: 6px;
}

.wiki-board-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}

.wiki-board-card {
  background:
    linear-gradient(180deg, rgba(12, 27, 32, 0.95), rgba(7, 15, 19, 0.98));
}

.wiki-board-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(147, 251, 255, 0.14);
  background: rgba(10, 22, 26, 0.76);
  color: rgba(213, 246, 249, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wiki-board-surface {
  margin-top: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(147, 251, 255, 0.12);
  background:
    radial-gradient(circle at 50% -24%, rgba(74, 234, 255, 0.06), transparent 48%),
    linear-gradient(180deg, rgba(20, 43, 51, 0.12), rgba(8, 16, 20, 0.16)),
    var(--wiki-board-bg, rgba(6, 12, 16, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 0 0 1px rgba(255, 255, 255, 0.01),
    0 0 20px rgba(74, 234, 255, 0.04);
}

.wiki-board-title {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.22;
  text-wrap: balance;
}

.wiki-board-body {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.wiki-board-copy {
  margin: 0;
  color: rgba(226, 245, 248, 0.92);
  font-size: 14px;
  line-height: 1.68;
}

.wiki-board-callout {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(147, 251, 255, 0.1);
  background: rgba(9, 18, 22, 0.52);
  color: rgba(236, 249, 250, 0.96);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.wiki-board-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wiki-board-divider span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188, 226, 232, 0.42), transparent);
}

.wiki-board-line {
  min-height: 1.2em;
  font-size: 15px;
  line-height: 1.48;
  letter-spacing: 0.01em;
}

.wiki-board-line + .wiki-board-line {
  margin-top: 4px;
}

.wiki-board-line.is-center {
  text-align: center;
}

.wiki-board-line.is-left {
  text-align: left;
}

.wiki-board-line.is-right {
  text-align: right;
}

.wiki-board-line.is-blank {
  min-height: 14px;
}

.wiki-board-line.is-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
}

.wiki-board-line.is-divider span {
  width: min(220px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188, 226, 232, 0.54), transparent);
}

.wiki-board-line.has-shadow {
  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(0, 0, 0, 0.4);
}

.wiki-line-segment.is-bold {
  font-weight: 800;
}

.wiki-line-segment.is-italic {
  font-style: italic;
}

.wiki-line-segment.is-underline {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.wiki-line-segment.is-strike {
  text-decoration: line-through;
}

.wiki-line-segment.is-obfuscated {
  filter: blur(0.6px);
  letter-spacing: 0.08em;
}

.wiki-line-segment.is-gradient {
  color: transparent !important;
  background-image: var(--wiki-line-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.controls {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(13, 29, 35, 0.9), rgba(8, 18, 23, 0.98));
  box-shadow: var(--shadow);
}

.search {
  width: 100%;
  padding: 14px;
  margin: 0 0 12px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(11, 24, 29, 0.94), rgba(7, 15, 19, 0.98));
  border: 1px solid rgba(147, 251, 255, 0.16);
  border-radius: 14px;
}

.search::placeholder {
  color: rgba(188, 226, 232, 0.58);
}

.controls-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

.filters button {
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(14, 28, 34, 0.98), rgba(8, 16, 20, 0.98));
  color: var(--text);
  border: 1px solid rgba(147, 251, 255, 0.1);
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.12s ease;
}

.filters button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(21, 43, 50, 0.98), rgba(11, 22, 26, 0.98));
}

.filters button.is-active {
  background: linear-gradient(180deg, rgba(29, 65, 74, 0.98), rgba(14, 31, 37, 0.98));
  border-color: rgba(147, 251, 255, 0.24);
  box-shadow:
    0 0 0 1px rgba(74, 234, 255, 0.14),
    0 0 30px rgba(74, 234, 255, 0.1);
}

.sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort label,
.result-count,
.page-note {
  color: var(--muted);
}

.sort select {
  min-height: 42px;
  padding: 0 12px;
  min-width: 170px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12, 26, 31, 0.96), rgba(8, 16, 20, 0.98));
  color: var(--text);
  border: 1px solid rgba(147, 251, 255, 0.14);
}

.result-count,
.page-note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.tier {
  margin-top: 30px;
}

.tier.is-hidden {
  display: none;
}

.tier-title {
  margin: 0 0 12px;
  padding: 13px 16px;
  border-radius: 16px;
  border: 1px solid rgba(147, 251, 255, 0.14);
  background: linear-gradient(180deg, rgba(16, 34, 39, 0.98), rgba(10, 21, 25, 0.98));
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enchant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.enchant-card {
  min-height: 166px;
  background:
    radial-gradient(circle at 50% -20%, rgba(74, 234, 255, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(14, 30, 36, 0.98), rgba(8, 18, 22, 0.98));
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(147, 251, 255, 0.12);
  border-left-width: 4px;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
  line-height: 1.6;
}

.enchant-card:hover {
  transform: translateY(-3px);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(74, 234, 255, 0.1);
}

.enchant-card[open] {
  border-color: rgba(147, 251, 255, 0.2);
  box-shadow:
    var(--shadow),
    0 0 36px rgba(74, 234, 255, 0.12);
}

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

.enchant-summary {
  list-style: none;
  cursor: pointer;
  padding: 18px;
}

.enchant-summary::-webkit-details-marker {
  display: none;
}

.enchant-summary-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.enchant-heading {
  min-width: 0;
}

.enchant-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.enchant-focus-tag,
.enchant-tier-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(9, 23, 28, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enchant-focus-tag {
  color: var(--brand-2);
}

.enchant-tier-pill {
  color: rgba(214, 246, 250, 0.84);
}

.enchant-expand-text {
  flex-shrink: 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(147, 251, 255, 0.12);
  color: rgba(214, 246, 250, 0.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enchant-expand-text::before {
  content: "Open";
}

.enchant-card[open] .enchant-expand-text::before {
  content: "Close";
}

.enchant-name {
  font-weight: 800;
  font-size: 17px;
}

.enchant-desc {
  margin-top: 6px;
  color: var(--text);
  opacity: 0.92;
}

.enchant-meta {
  margin-top: 8px;
  font-size: 13px;
  color: #b8c0cc;
}

.enchant-panel {
  padding: 0 18px 18px;
}

.enchant-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(147, 251, 255, 0.08);
}

.enchant-panel-item {
  min-height: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(147, 251, 255, 0.08);
  background: rgba(8, 18, 22, 0.72);
}

.enchant-panel-value {
  margin-top: 6px;
  font-weight: 800;
  line-height: 1.55;
}

.enchant-panel-copy {
  margin: 14px 0 0;
  color: rgba(216, 244, 248, 0.82);
  line-height: 1.72;
}

.simple,
.tier-title.simple {
  border-left-color: #55ff88;
}

.unique,
.tier-title.unique {
  border-left-color: #c76bff;
}

.elite,
.tier-title.elite {
  border-left-color: #5aa8ff;
}

.ultimate,
.tier-title.ultimate {
  border-left-color: #ff9a3c;
}

.legendary,
.tier-title.legendary {
  border-left-color: #ffd84d;
}

.prestige-mining,
.tier-title.prestige-mining {
  border-left-color: #ffd84d;
}

.prestige-mobs,
.tier-title.prestige-mobs {
  border-left-color: #ff4b4b;
}

.prestige-farming,
.tier-title.prestige-farming {
  border-left-color: #67ff55;
}

.prestige-fishing,
.tier-title.prestige-fishing {
  border-left-color: #4bd0ff;
}

.prestige-plus,
.tier-title.prestige-plus {
  border-left-color: #ff4bd8;
}

.footer {
  position: relative;
  margin-top: 26px;
  padding: 34px 0 20px;
  background: linear-gradient(180deg, rgba(5, 11, 13, 0.9), rgba(4, 8, 10, 0.98));
  border-top: 1px solid rgba(147, 251, 255, 0.12);
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(820px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(147, 251, 255, 0.32), transparent);
  box-shadow: 0 0 26px rgba(74, 234, 255, 0.14);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 900;
}

.footer-small {
  margin-top: 4px;
  color: var(--muted);
}

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

.footer-links a {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(147, 251, 255, 0.16);
  background: rgba(27, 61, 68, 0.2);
}

.footer-bottom {
  margin-top: 18px;
  text-align: center;
  color: rgba(234, 244, 255, 0.62);
}

.footer-disclaimer {
  margin-top: 8px;
  color: rgba(188, 226, 232, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.018);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    filter:
      drop-shadow(0 0 42px rgba(74, 234, 255, 0.24))
      drop-shadow(0 0 70px rgba(255, 106, 0, 0.14))
      drop-shadow(0 0 110px rgba(147, 251, 255, 0.16));
  }

  50% {
    filter:
      drop-shadow(0 0 54px rgba(74, 234, 255, 0.34))
      drop-shadow(0 0 88px rgba(255, 122, 26, 0.24))
      drop-shadow(0 0 128px rgba(147, 251, 255, 0.22));
  }
}

@keyframes headerLogoPulse {
  0%,
  100% {
    filter:
      drop-shadow(0 0 14px rgba(74, 234, 255, 0.16))
      drop-shadow(0 0 34px rgba(147, 251, 255, 0.12));
  }

  50% {
    filter:
      drop-shadow(0 0 20px rgba(74, 234, 255, 0.22))
      drop-shadow(0 0 46px rgba(147, 251, 255, 0.16));
  }
}

@keyframes headerBeacon {
  0%,
  100% {
    transform: translateX(0) scale(0.98);
    opacity: 0.62;
  }

  50% {
    transform: translateX(18px) scale(1.06);
    opacity: 1;
  }
}

@keyframes sculkDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.82);
  }

  50% {
    transform: translate3d(var(--drift), -22px, 0) scale(1.18);
  }
}

@keyframes sculkPulse {
  0%,
  100% {
    opacity: 0.08;
  }

  50% {
    opacity: 0.34;
  }
}

@keyframes skeletonSweep {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 780px) {
  .site-header .wrap,
  .controls-row,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav,
  .footer-links {
    width: 100%;
  }

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

  .wiki-board-grid,
  .codex-hero-shell,
  .spotlight-grid,
  .codex-stat-grid,
  .enchant-panel-grid {
    grid-template-columns: 1fr;
  }

  .sort {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .vote-highlight-grid,
  .vote-links-grid,
  .vote-reward-grid,
  .announcements-grid {
    grid-template-columns: 1fr;
  }

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

  .vote-rotation-meta {
    justify-content: flex-start;
  }

  .announcements-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .announcement-date-rail {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 10px;
    padding: 16px 18px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(147, 251, 255, 0.08);
  }

  .announcement-main {
    padding: 18px 18px 20px;
  }

  .announcement-card-head {
    flex-direction: column;
  }

  .announcement-author-panel,
  .announcement-author-row {
    width: 100%;
    align-items: flex-start;
  }

  .announcement-author-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100vw - 28px, 1100px);
  }

  .primary,
  .secondary {
    width: 100%;
  }

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

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-ip {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .hero-banner {
    width: min(100%, 680px);
  }

  .wiki-board-surface {
    padding: 16px;
  }

  .wiki-board-line {
    font-size: 14px;
  }

  .codex-hero-copy,
  .spotlight-card,
  .vote-hero-shell,
  .vote-card {
    padding: 18px;
  }

  .enchant-summary,
  .enchant-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .enchant-summary-top {
    flex-direction: column;
  }

  .enchant-expand-text {
    align-self: flex-start;
  }

  .announcements-shell {
    padding: 18px;
  }

  .announcement-date-rail {
    padding: 14px 16px 12px;
  }

  .announcement-main {
    padding: 16px 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
