:root {
  --bg-main: #05070d;
  --bg-shell: #0a1120;
  --bg-card: #101624;
  --bg-card-strong: #0d1628;
  --bg-card-soft: rgba(16, 22, 36, 0.82);
  --orange: #ff9f1c;
  --orange-soft: rgba(255, 159, 28, 0.16);
  --orange-glow: rgba(255, 159, 28, 0.32);
  --blue: #4da3ff;
  --blue-soft: rgba(77, 163, 255, 0.14);
  --blue-glow: rgba(77, 163, 255, 0.24);
  --text-main: #f5f7fa;
  --text-muted: #b8c2d1;
  --text-soft: #d9e2ee;
  --border: rgba(184, 194, 209, 0.18);
  --border-strong: rgba(255, 159, 28, 0.34);
  --shadow-lg: 0 24px 54px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 16px 34px rgba(0, 0, 0, 0.26);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --site-width: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 15% 16%, rgba(77, 163, 255, 0.2), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 159, 28, 0.16), transparent 24%),
    radial-gradient(circle at 52% 78%, rgba(40, 74, 126, 0.22), transparent 28%),
    linear-gradient(180deg, #03050a, #07101c 38%, #05070d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 14% 22%, rgba(245, 247, 250, 0.42), transparent),
    radial-gradient(1.5px 1.5px at 68% 28%, rgba(245, 247, 250, 0.38), transparent),
    radial-gradient(1.8px 1.8px at 36% 84%, rgba(245, 247, 250, 0.28), transparent),
    radial-gradient(1.2px 1.2px at 82% 72%, rgba(245, 247, 250, 0.24), transparent);
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.site-shell {
  width: var(--site-width);
  margin: 0 auto;
  padding: 28px 0 44px;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.brand-main {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.brand-sub {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 14, 26, 0.8);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.btn:hover,
.btn:focus-visible,
.community-link:hover,
.community-link:focus-visible,
.event-btn:hover,
.event-btn:focus-visible {
  transform: translateY(-1px);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-main);
  border-color: rgba(255, 159, 28, 0.64);
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.16), rgba(77, 163, 255, 0.08));
  box-shadow: 0 0 18px rgba(255, 159, 28, 0.14);
}

.site-nav .nav-play-now {
  color: #18130a;
  font-weight: 700;
  border-color: rgba(255, 159, 28, 0.85);
  background: linear-gradient(135deg, #f28c1b, #ffba64);
  box-shadow: 0 0 22px rgba(255, 159, 28, 0.24);
}

.site-nav .nav-play-now:hover,
.site-nav .nav-play-now:focus-visible {
  color: #18130a;
}

.site-main {
  display: grid;
  gap: 22px;
}

/* Shared section shell */
.section-shell {
  display: grid;
  gap: 16px;
}

.section-heading {
  display: grid;
  gap: 8px;
}

.section-heading h2,
.panel h2,
.contact-card h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--orange);
  letter-spacing: 0.06em;
}

.section-heading p,
.panel-copy,
.contact-note {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.eyebrow,
.tagline,
.event-kicker,
.card-kicker {
  margin: 0;
  color: #ffca84;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Panels, cards, and buttons */
.panel,
.card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(6, 12, 24, 0.94), rgba(11, 20, 36, 0.88)),
    var(--bg-card);
  box-shadow: var(--shadow-lg);
}

.panel {
  padding: 24px;
}

.card,
.contact-card {
  padding: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover,
.contact-card:hover {
  border-color: rgba(255, 159, 28, 0.28);
  box-shadow:
    var(--shadow-md),
    0 0 22px rgba(255, 159, 28, 0.08);
}

.card h3,
.card h4 {
  margin: 0 0 10px;
  color: var(--text-main);
}

.card p,
.card li,
.contact-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.card .card-kicker {
  color: #ffca84;
  line-height: 1.3;
}

.card ul,
.patch-body ul,
.event-list {
  margin: 0;
  padding-left: 18px;
}

.card ul {
  display: grid;
  gap: 6px;
}

.btn,
.event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.btn-primary,
.event-btn {
  color: #18130a;
  background: linear-gradient(135deg, #f28c1b, #ffba64);
  box-shadow: 0 0 22px rgba(255, 159, 28, 0.24);
}

.btn-ghost,
.btn-outline {
  color: var(--text-main);
  border-color: var(--border);
  background: rgba(8, 14, 26, 0.72);
}

.btn:hover,
.btn:focus-visible,
.event-btn:hover,
.event-btn:focus-visible {
  filter: brightness(1.04);
  box-shadow: 0 0 24px rgba(255, 159, 28, 0.24);
}

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

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.hero-title {
  margin: 0 0 12px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.hero-title span {
  color: var(--orange);
}

.hero-copy {
  max-width: 62ch;
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.pill {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(9, 17, 31, 0.72);
  color: var(--text-soft);
  font-size: 0.84rem;
}

.stack-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.info-card {
  display: grid;
  gap: 12px;
}

.community-links-list {
  display: grid;
  gap: 10px;
}

.community-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 194, 209, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(13, 21, 38, 0.72);
  color: var(--text-soft);
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.community-link:hover,
.community-link:focus-visible {
  border-color: rgba(77, 163, 255, 0.36);
  box-shadow: 0 0 18px rgba(77, 163, 255, 0.1);
}

.community-link span:last-child {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Server status */
.status-widget {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 159, 28, 0.26);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.1), transparent 36%),
    linear-gradient(155deg, rgba(8, 18, 34, 0.94), rgba(7, 15, 28, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    var(--shadow-md);
}

.status-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.status-widget-header h2 {
  font-size: 1rem;
  color: var(--text-main);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(184, 194, 209, 0.14);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.78);
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77849a;
  box-shadow: 0 0 12px rgba(119, 132, 154, 0.34);
}

.status-badge.is-online::before {
  background: #7ce08d;
  box-shadow: 0 0 12px rgba(124, 224, 141, 0.48);
}

.status-badge.is-offline::before {
  background: #ff8a6d;
  box-shadow: 0 0 12px rgba(255, 138, 109, 0.42);
}

.status-server-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.15rem;
  color: var(--orange);
  letter-spacing: 0.05em;
}

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

.status-item {
  padding: 12px 14px;
  border: 1px solid rgba(184, 194, 209, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(10, 18, 32, 0.78);
}

.status-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-item strong {
  color: var(--text-main);
  font-size: 0.98rem;
}

.status-footnote {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Event section */
.featured-event {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 159, 28, 0.32);
  background:
    radial-gradient(circle at top left, rgba(255, 159, 28, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(77, 163, 255, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(6, 12, 24, 0.98), rgba(10, 19, 34, 0.96));
}

.event-poster {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 24px;
  border-right: 1px solid rgba(184, 194, 209, 0.12);
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.18), rgba(4, 8, 16, 0.92)),
    radial-gradient(circle at top, rgba(255, 159, 28, 0.32), transparent 36%),
    radial-gradient(circle at bottom left, rgba(77, 163, 255, 0.24), transparent 42%),
    linear-gradient(145deg, #101a2c, #070c16);
}

.hidden-treasure-event-poster {
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.18), rgba(4, 8, 16, 0.92)),
    radial-gradient(circle at top, rgba(255, 159, 28, 0.24), transparent 36%),
    radial-gradient(circle at bottom left, rgba(77, 163, 255, 0.2), transparent 42%),
    url("../../images/hidden-treasure-naboo-trail-june-14-2026.png") center top / cover no-repeat,
    linear-gradient(145deg, #101a2c, #070c16);
}

.event-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 159, 28, 0.08), transparent 26%),
    linear-gradient(0deg, rgba(3, 6, 12, 0.84), transparent 30%);
}

.event-poster-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.event-poster-label {
  display: inline-flex;
  justify-self: start;
  padding: 7px 11px;
  border: 1px solid rgba(255, 201, 126, 0.34);
  border-radius: 999px;
  background: rgba(8, 14, 26, 0.82);
  color: #ffd49a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-poster-title {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.event-poster-meta {
  color: #dfe8f4;
  line-height: 1.65;
}

.event-content {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.event-content > header {
  display: grid;
  gap: 8px;
}

.event-title {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.event-flavor,
.event-description,
.event-cta-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.68;
}

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

.event-meta-item,
.event-section,
.event-objective {
  padding: 14px;
  border: 1px solid rgba(184, 194, 209, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(10, 18, 32, 0.72);
}

.event-meta-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-objective {
  border-left: 4px solid #d76d2d;
  background:
    linear-gradient(135deg, rgba(95, 25, 12, 0.46), rgba(29, 10, 12, 0.82)),
    rgba(10, 18, 32, 0.82);
}

.event-objective h4,
.event-section h4 {
  margin: 0 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.92rem;
  color: #ffca84;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-objective p,
.event-section p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

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

.event-boss {
  padding: 12px;
  border: 1px solid rgba(215, 109, 45, 0.24);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(61, 18, 10, 0.32), rgba(21, 10, 12, 0.72)),
    rgba(12, 16, 24, 0.86);
  color: #fde1cb;
  line-height: 1.5;
}

.event-boss.final-boss {
  border-color: rgba(255, 201, 126, 0.36);
  color: #ffd49a;
  box-shadow: 0 0 18px rgba(255, 159, 28, 0.08);
}

.event-countdown {
  color: #ffd49a;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Feature grid */
.feature-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid .card,
.features-grid .card {
  height: 100%;
}

.feature-grid .card.full-span,
.features-grid .feature-card-wide {
  grid-column: 1 / -1;
}

.feature-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border-color: rgba(77, 163, 255, 0.16);
}

.feature-card h3 {
  color: var(--orange);
}

.feature-card ul {
  gap: 7px;
}

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

.compact-list li {
  list-style: none;
  padding: 10px 12px;
  border: 1px solid rgba(184, 194, 209, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(9, 17, 31, 0.58);
}

/* Patch notes */
.updates-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.screenshots-column {
  display: grid;
  min-width: 0;
  gap: 16px;
  align-self: start;
}

.screenshot-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-color: rgba(77, 163, 255, 0.2);
  background:
    radial-gradient(circle at top right, rgba(77, 163, 255, 0.08), transparent 28%),
    linear-gradient(160deg, rgba(6, 12, 24, 0.94), rgba(11, 20, 36, 0.88)),
    var(--bg-card);
}

.screenshot-placeholder,
.screenshot-image {
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius-md);
}

.screenshot-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px dashed rgba(255, 159, 28, 0.42);
  background:
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.24), transparent 30%),
    radial-gradient(circle at bottom left, rgba(77, 163, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(10, 18, 32, 0.98), rgba(6, 11, 22, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 30px rgba(255, 159, 28, 0.12);
  text-align: center;
}

.screenshot-placeholder.is-blue {
  border-color: rgba(77, 163, 255, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 30px rgba(77, 163, 255, 0.12);
}

.screenshot-placeholder span {
  color: #e5edf8;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screenshot-image {
  display: block;
  object-fit: cover;
  border: 1px solid rgba(184, 194, 209, 0.14);
  box-shadow: var(--shadow-md);
}

.screenshot-caption {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.screenshot-gallery {
  gap: 16px;
}

.screenshot-gallery-stage {
  position: relative;
}

.screenshot-slide {
  display: none;
  margin: 0;
  gap: 12px;
}

.screenshot-slide.is-active {
  display: grid;
}

.screenshot-gallery-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.gallery-btn {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(184, 194, 209, 0.16);
  border-radius: 999px;
  background: rgba(7, 13, 24, 0.92);
  color: var(--text-main);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-btn:hover,
.gallery-btn:focus-visible {
  border-color: rgba(255, 159, 28, 0.52);
  box-shadow: 0 0 18px rgba(255, 159, 28, 0.16);
  transform: translateY(-1px);
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.gallery-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(184, 194, 209, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gallery-dot.is-active {
  background: linear-gradient(135deg, #f28c1b, #ffba64);
  box-shadow: 0 0 12px rgba(255, 159, 28, 0.28);
  transform: scale(1.08);
}

.updates-column {
  min-width: 0;
}

.patch {
  border-left: 4px solid var(--orange);
  padding-left: 0;
}

.patch-note {
  padding: 0;
  overflow: hidden;
}

.patch-note + .patch-note {
  margin-top: 12px;
}

.patch-note summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
  color: var(--text-main);
  font-family: "Orbitron", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  transition: background 0.18s ease, color 0.18s ease;
}

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

.patch-note summary:hover,
.patch-note summary:focus-visible {
  background: rgba(255, 159, 28, 0.07);
  color: #ffd49a;
}

.patch-note summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 159, 28, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.05rem;
}

.patch-note[open] summary {
  border-bottom: 1px solid rgba(184, 194, 209, 0.12);
  background: rgba(255, 159, 28, 0.06);
}

.patch-note[open] summary::after {
  content: "-";
}

.patch-body {
  padding: 18px;
}

.patch-body > :first-child {
  margin-top: 0;
}

.patch-body h3 {
  margin-top: 18px;
  color: #ffd49a;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 212, 154, 0.18);
}

.patch-body p,
.patch-body li {
  color: var(--text-muted);
  line-height: 1.68;
}

/* Contact and footer */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

footer {
  margin-top: 22px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

footer small {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
}

/* Responsive layout */
@media (max-width: 1040px) {
  .hero,
  .featured-event {
    grid-template-columns: 1fr;
  }

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

  .screenshots-column {
    position: static;
  }

  .screenshot-gallery-controls {
    grid-template-columns: 1fr;
  }

  .gallery-btn {
    width: 100%;
  }

  .event-poster {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 194, 209, 0.12);
  }

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

@media (max-width: 820px) {
  .site-shell {
    width: min(100vw - 20px, 100%);
    padding: 18px 0 28px;
  }

  .site-header {
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .panel,
  .card,
  .contact-card,
  .patch-note summary,
  .patch-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .status-grid,
  .event-meta,
  .event-boss-grid {
    grid-template-columns: 1fr;
  }

  .status-widget-header,
  .event-actions,
  .contact-actions {
    align-items: stretch;
  }

  .actions .btn,
  .contact-actions .btn,
  .event-actions .event-btn {
    width: 100%;
  }

  .community-link {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-nav a {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .event-content {
    padding: 18px 16px;
  }

  .event-poster {
    padding: 18px 16px;
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
