* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #0e0f14, #11121a);
  color: #e5e7eb;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
}

/* Logo image + text */
.logo a {
  display: flex;
  align-items: center;    /* vertically centers text with logo */
  text-decoration: none;  /* removes underline */
  color: white !important; /* makes text white and overrides browser defaults */
  font-weight: 700;
  font-size: 24px;
  gap: 8px;
  cursor: pointer;
}

/* Prevent color change on hover or active */
.logo a:hover,
.logo a:active,
.logo a:visited {
  color: white !important;
  text-decoration: none !important;
}

.logo img {
  height: 1em;               /* matches text height */
  width: auto;
  display: block;
}

.logo a span {
  line-height: 1;            /* vertically centers text next to image */
}

/* Navbar links */
.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #c7c9d1;
}

.nav-links a:hover {
  color: white;
}

/* Discord button */
.discord-btn {
  background: #1f2937;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

/* Hero */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 80px 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
}

.hero-text h1 span {
  color: #3b71bc;
}

.hero-text p {
  margin-top: 20px;
  font-size: 18px;
  color: #3b71bc;
  max-width: 520px;
}

.buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.primary {
  background: #5865f2;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.secondary {
  background: transparent;
  border: 1px solid #374151;
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

/* Preview */
.preview {
  background: #1b1d27;
  padding: 24px;
  border-radius: 20px;
}

.card {
  background: #111827;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.status {
  color: #22c55e;
  font-weight: 600;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 48px;
  }
}
