/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* BAGGRUND – mørk trading + AI-matrix */
body.bg {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  color: #e8f4ff;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #020715;

  /* lag 1: dæmpet “chart”-struktur i baggrunden (grid-linjer) */
  background-image:
    radial-gradient(circle at top left, rgba(0, 190, 255, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 255, 170, 0.22), transparent 60%),
    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:
    100% 100%,
    100% 100%,
    100% 48px,
    48px 100%;
  background-blend-mode: soft-light, soft-light, normal, normal;
}

/* PAGE LAYOUT */
.page {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* MAIN – centrer hero og status vertikalt */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}

/* HERO */
.hero {
  max-width: 520px;
}

.title {
  margin: 0 0 14px;
  line-height: 1.05;
}

.title-line {
  display: block;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 2.7rem);
}

.title-line.accent {
  font-weight: 700;
  font-size: clamp(2.6rem, 4.6vw, 3.2rem);
}

.tagline {
  margin: 0 0 26px;
  font-size: 1.05rem;
  color: #9ee5ff;
}

/* DISCORD BUTTON – purple/blue pill med glow */
.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.9rem;
  color: #f5f9ff;
  background: linear-gradient(135deg, #5a5dff, #32d0ff);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(77, 137, 255, 0.7);
  transition: transform 0.12s ease-out,
              box-shadow 0.12s ease-out,
              filter 0.12s ease-out;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(77, 137, 255, 0.9);
  filter: brightness(1.05);
}

.discord-btn:active {
  transform: translateY(0);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.7),
    0 0 45px rgba(77, 137, 255, 0.7);
}

/* STATUS CARD – glassmorphism som på billedet */
.status-card {
  margin-top: 18px;
  padding: 20px 22px;
  max-width: 520px;
  width: 100%;
  border-radius: 26px;
  background: linear-gradient(
      135deg,
      rgba(8, 22, 45, 0.92),
      rgba(3, 10, 26, 0.96)
  );
  border: 1px solid rgba(95, 155, 255, 0.5);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: #d9e9ff;
  margin-bottom: 7px;
}

.status-line:last-child {
  margin-bottom: 0;
}

.status-label {
  min-width: 155px;
  color: #b8d0f3;
}

/* DOT */
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot-gray {
  background: radial-gradient(circle, #7b8291, #414753);
}

.dot-green {
  background: radial-gradient(circle, #38ff9d, #00b46b);
}

.dot-red {
  background: radial-gradient(circle, #ff6b6b, #c53030);
}

/* FOOTER */
.footer {
  padding-top: 18px;
  padding-bottom: 6px;
  font-size: 0.9rem;
  text-align: center;
  color: #8fb7e4;
}

/* MOBILE */
@media (max-width: 720px) {
  .page {
    padding: 24px 16px;
  }

  .main {
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
  }

  .hero, .status-card {
    max-width: 100%;
  }

  .title-line {
    font-size: 2rem;
  }

  .title-line.accent {
    font-size: 2.3rem;
  }

  .status-card {
    padding: 18px 18px;
  }

  .status-label {
    min-width: 140px;
    font-size: 0.92rem;
  }
}
