:root {
  --bg: #0d1117;
  --bg-2: #141b22;
  --bg-3: #111820;
  --card: rgba(16, 23, 31, 0.72);
  --line: rgba(130, 164, 98, 0.24);
  --ink: #edf4e8;
  --muted: #b7c7b1;
  --green: #7bc96f;
  --gold: #e4a744;
  --danger: #df4f4f;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  isolation: isolate;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(980px 560px at 12% -4%, rgba(123, 201, 111, 0.16), transparent 74%),
    radial-gradient(860px 520px at 108% 12%, rgba(228, 167, 68, 0.16), transparent 72%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 52%, var(--bg-3));
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-logo {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(123, 201, 111, 0.22), transparent 46%),
    radial-gradient(circle at 85% 18%, rgba(228, 167, 68, 0.2), transparent 48%),
    radial-gradient(circle at 52% 78%, rgba(90, 140, 255, 0.16), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  opacity: 0.42;
  mix-blend-mode: normal;
  z-index: -4;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

@keyframes auroraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -3;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.013) 0 1px, transparent 1px 4px);
  z-index: -2;
}

.bg-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(86px);
  z-index: -1;
  animation: floatGlow 9s ease-in-out infinite;
}

.bg-glow-a {
  background: rgba(123, 201, 111, 0.24);
  top: -90px;
  left: -90px;
}

.bg-glow-b {
  background: rgba(228, 167, 68, 0.22);
  right: -90px;
  bottom: 2%;
  animation-delay: 1.8s;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0);
  }
}

.section {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.hero {
  padding-top: 1.1rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(200, 223, 188, 0.46);
  box-shadow:
    0 0 0 3px rgba(123, 201, 111, 0.18),
    0 9px 26px rgba(0, 0, 0, 0.34);
}

.brand-text {
  font-family: "Antonio", sans-serif;
  letter-spacing: 1px;
  font-size: 1.22rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 1rem;
}

.hero-copy-wrap {
  position: relative;
  padding: 1.1rem;
  border: 1px solid rgba(200, 223, 188, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(19, 27, 36, 0.78), rgba(15, 23, 31, 0.62));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.hero-copy-wrap::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -55px;
  bottom: -95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 201, 111, 0.28), transparent 72%);
  pointer-events: none;
}

.kicker {
  margin: 0;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.05px;
}

h1,
h2,
h3 {
  font-family: "Antonio", sans-serif;
  margin: 0;
  letter-spacing: 0.3px;
}

h1 {
  font-size: clamp(2.25rem, 5.6vw, 4.25rem);
  line-height: 0.95;
  margin-top: 0.35rem;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 0.4rem;
}

.hero-copy {
  margin: 1rem 0 1.15rem;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.54;
}

.newbie-note {
  margin: 0 0 1.05rem;
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(123, 201, 111, 0.42);
  background: rgba(123, 201, 111, 0.14);
  color: #ebf6e1;
  font-weight: 700;
}

.newbie-note strong {
  color: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-ip {
  margin-top: 0.8rem;
  color: var(--muted);
}

.btn {
  border: 0;
  border-radius: 13px;
  padding: 0.74rem 1.03rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  color: #101811;
  background: linear-gradient(135deg, var(--green), #b3df86);
  box-shadow: 0 10px 22px rgba(91, 158, 76, 0.3);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 223, 188, 0.3);
}

.btn-discord {
  color: #f5f8ff;
  background: linear-gradient(135deg, #5f70f2, #3f56c7);
  box-shadow: 0 10px 22px rgba(72, 96, 216, 0.34);
}

.status-card,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.status-card {
  padding: 1rem;
}

.status-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.status-title {
  margin: 0;
  font-weight: 700;
}

.status-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 11px;
  border: 1px solid rgba(200, 223, 188, 0.36);
  opacity: 0.95;
}

.status-line {
  margin: 0.58rem 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.56rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.dot.online {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(123, 201, 111, 0.3);
}

.dot.offline {
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(223, 79, 79, 0.26);
}

.status-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.72rem;
}

.status-tiles article {
  border: 1px solid rgba(200, 223, 188, 0.16);
  border-radius: 12px;
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.15);
}

.tiny {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.value {
  margin: 0.2rem 0 0;
  font-weight: 800;
  font-size: 1.03rem;
}

.status-meta,
.last-updated {
  margin: 0.28rem 0;
  color: var(--muted);
  font-size: 0.89rem;
}

code,
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.strip {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(200, 223, 188, 0.2);
  margin-top: 1.15rem;
  background: rgba(7, 12, 18, 0.6);
}

.strip-track {
  display: flex;
  gap: 1.6rem;
  white-space: nowrap;
  padding: 0.58rem 0;
  animation: scroll 26s linear infinite;
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.9px;
  color: rgba(228, 167, 68, 0.95);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

main .section {
  padding-top: 1.4rem;
}

.cards {
  display: grid;
  gap: 0.8rem;
}

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

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

.card {
  padding: 0.95rem;
}

.card p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.rules-card ol {
  margin: 0;
  padding-left: 1.17rem;
}

.rules-card li {
  margin: 0.42rem 0;
  line-height: 1.42;
}

.rules-note {
  margin-top: 0.74rem !important;
  color: var(--gold) !important;
  font-weight: 800;
}

.footer {
  padding: 1.8rem 0 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.small {
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .cards.two,
  .cards.three {
    grid-template-columns: 1fr;
  }

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

  .section {
    width: min(1120px, calc(100% - 1.2rem));
  }

  h1 {
    max-width: 16ch;
  }

}

@media (max-width: 640px) {
  .footer {
    flex-direction: column;
    gap: 0.2rem;
  }

  .strip-track {
    gap: 1.2rem;
  }

  .brand-logo,
  .status-logo {
    width: 36px;
    height: 36px;
  }
}
