:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #08090c;
  color: #f5f5f7;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.35), #08090c 88%),
    url("background.jpg") center / cover no-repeat fixed;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(183, 32, 32, 0.13), transparent 33%),
    rgba(4, 5, 7, 0.56);
}

.page {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
}

.notice {
  width: min(720px, 100%);
  padding: clamp(32px, 7vw, 72px);
  text-align: center;
  background: rgba(10, 11, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 44px;
  padding: 8px 13px;
  color: #d5d5d8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.status__dot {
  width: 7px;
  height: 7px;
  background: #d54a4a;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(213, 74, 74, 0.85);
}

.eyebrow {
  margin: 0 0 14px;
  color: #d54a4a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

h1 {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(34px, 7vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.description {
  max-width: 540px;
  margin: 26px auto 0;
  color: #aaaab1;
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.65;
  text-wrap: balance;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.play-link,
.discord-link,
.steam-chat-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  background: #5865f2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.25);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.play-link {
  background: #b72f2f;
  box-shadow: 0 12px 32px rgba(183, 47, 47, 0.28);
}

.play-link:hover {
  background: #ca3b3b;
  box-shadow: 0 15px 38px rgba(183, 47, 47, 0.38);
  transform: translateY(-2px);
}

.discord-link:hover {
  background: #6875f5;
  box-shadow: 0 15px 38px rgba(88, 101, 242, 0.36);
  transform: translateY(-2px);
}

.steam-chat-link {
  background: #1b6e9f;
  box-shadow: 0 12px 32px rgba(27, 110, 159, 0.26);
}

.steam-chat-link:hover {
  background: #2385bd;
  box-shadow: 0 15px 38px rgba(27, 110, 159, 0.36);
  transform: translateY(-2px);
}

.play-link:focus-visible,
.discord-link:focus-visible,
.steam-chat-link:focus-visible {
  outline: 3px solid rgba(140, 151, 255, 0.65);
  outline-offset: 4px;
}

.server-address {
  margin: 14px 0 0;
  color: #7f7f87;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.divider {
  width: 54px;
  height: 1px;
  margin: 38px auto 24px;
  background: rgba(255, 255, 255, 0.2);
}

.footnote {
  margin: 0;
  color: #73737b;
  font-size: 14px;
}

@media (max-width: 520px) {
  .notice {
    padding: 36px 24px;
    border-radius: 18px;
  }

  .status {
    margin-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    background-attachment: scroll;
  }

  .play-link,
  .discord-link,
  .steam-chat-link {
    transition: none;
  }
}
