:root {
  --green: #00eea2;
  --purple: #9c01ff;
  --purple-btn: #8a35c8;
  --orange: #f78700;
  --bg: #160224;
  --white: #ffffff;
  --max-width: 640px;
  --font-body: "Open Sans", sans-serif;
  --font-display: "Orbitron", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.page {
  flex: 1;
  padding: 3rem 0 2.5rem;
}

.page__brand {
  text-align: center;
  margin-bottom: 2rem;
}

.page__brand-logo {
  display: block;
  width: auto;
  max-width: min(220px, 72vw);
  height: auto;
  margin-inline: auto;
}

.page__content {
  text-align: center;
}

.page__notice {
  padding: 1.35rem 1.25rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(247, 135, 0, 0.35);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
}

.page__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.page__title .highlight {
  color: var(--green);
}

.page__text {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
}

.page__text:last-child {
  margin-bottom: 0;
}

.page__actions {
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

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

.btn--discord {
  background: var(--purple-btn);
  color: var(--white);
}

.btn--discord:hover {
  background: var(--green);
}

.footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(156, 1, 255, 0.25);
  text-align: center;
}

.footer p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}

@media (max-width: 899px) {
  .page {
    padding-top: 2.25rem;
  }
}
