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

body {
  font-family: 'Nunito', sans-serif;
  color: white;
  text-align: center;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

/* ── Blurred background image ── */
.bg-blur {
  position: fixed;
  inset: 0;
  background-image: url("background.png");
  background-size: cover;
  background-position: center;
  filter: blur(7px) brightness(0.6);
  transform: scale(1.05); /* prevents blur-edge white borders */
  z-index: -2;
}

/* ── Dark gradient overlay for extra depth ── */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 18, 30, 0.55) 0%,
    rgba(5, 10, 20, 0.70) 100%
  );
  z-index: -1;
}

/* ── Card container ── */
.container {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
  padding: 50px 44px;

  background: rgba(12, 20, 35, 0.72);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 8px 48px rgba(0, 0, 0, 0.6);

  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Logo ── */
.logo {
  display: block;
  width: 230px;
  max-width: 80%;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.5));
}

/* ── Decorative divider ── */
.divider {
  width: 60px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  border-radius: 99px;
  opacity: 0.85;
}

/* ── Description text ── */
.description {
  font-size: 1rem;
  line-height: 1.75;
  color: #c8d8e8;
  margin-bottom: 36px;
  text-align: left;
}

.description p {
  font-weight: 400;
}

.sign {
  color: #94a3b8;
  font-style: italic;
  font-size: 0.92rem !important;
}

/* ── Discord button ── */
.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}

.discord-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(88, 101, 242, 0.55);
  filter: brightness(1.1);
}

.discord-btn:active {
  transform: translateY(0);
}

/* ── Footer ── */
.footer {
  margin-top: 36px;
  font-size: 0.78rem;
  color: #475569;
  letter-spacing: 0.02em;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  body {
    align-items: flex-start;
    padding: 30px 16px;
  }

  .container {
    padding: 36px 24px;
  }

  .logo {
    width: 190px;
  }

  .description {
    font-size: 0.95rem;
  }
}
