:root {
  --bg1: rgba(255, 204, 242, 0.6);
  --bg2: rgba(255, 196, 196, 0.6);
  --bg3: rgba(255, 219, 220, 0.6);
  --ink: #f5f3ff;
  --muted: white;
  --accent: #7aa7ff;
  --accent-2: #c27aff;
  --accent-3: #ffd66b;
  --card: #ffffff0f;
  --ring: #bfa0ff;
  --shadow: 0 5px 100px rgb(255 255 255 / 15%);
  --radius: 20px;
}
body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  cursor: url("assets/img/cursor.png"), auto;
}
#starCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #5c0040;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, var(--bg2), transparent 70%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg3) 100%);
  z-index: -1;
  pointer-events: none;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  background: var(--card);
  backdrop-filter: blur(2px) saturate(1.5);
  box-shadow: var(--shadow);
}
.brand {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 14px;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}
.content {
  display: flex;
  flex-direction: row; /* side by side */
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering */
  gap: 100px; /* 10px between card and discord panel */
  width: 100%;
  height: 70vh;
  padding: 0 20px;
  box-sizing: border-box;
}
.content .card,
.content .discord-card {
  max-width: 500px;
  width: 100%;
}
.h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 62px);
  margin: 0 0 10px;
  text-shadow: 0 0 8px rgba(192, 160, 255, 0.6);
}
.lead {
  font-size: 22px;
  color: var(--muted);
  margin: 8px 0 18px;
}
.cta {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border: 0;
  color: white;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(120, 80, 200, 0.5);
  cursor: pointer;
}
.discord-card {
  background: rgb(255 173 198 / 35%);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 0 8px rgba(192, 160, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  backdrop-filter: blur(2px);
}
.discord-top {
  display: flex;
  gap: 16px;
  align-items: center;
}
.discord-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid transparent;
  box-sizing: border-box;
}
.discord-info {
  display: flex;
  flex-direction: column;
}
.discord-status {
  font-size: 14px;
  color: var(--muted);
}
.discord-status img {
  height: 1em;
  width: 1em;
  vertical-align: middle;
  margin-right: 4px;
}
.spotify-embed {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
} /* ✅ Social media icons */
.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}
.socials a {
  color: var(--ink);
  font-size: 22px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.socials a:hover {
  color: var(--accent-2);
  transform: scale(1.2);
}
.panels {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 80px 20px;
}
.panel {
  background: rgb(255 173 198 / 35%);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: 0 0 8px rgba(192, 160, 255, 0.6);
  max-width: 500px;
  flex: 1 1 400px;
  backdrop-filter: blur(2px);
}
.panel h2 {
  margin: 0 0 8px;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: white;
}
.panel p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}
.footer {
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
}
@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    height: auto;
    gap: 30px;
    text-align: center;
    padding-top: 100px;
    flex-direction: column;
  }
  .content .card,
  .content .discord-card {
    max-width: 100%;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    gap: 10px;
  }
  .nav div a {
    padding: 6px 8px;
    font-size: 14px;
  }
  .panels {
    flex-direction: column;
    gap: 20px;
    padding: 40px 10px;
  }
  .panel {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .socials {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .spotify-embed {
    height: 70px;
  }
}
@media (max-width: 500px) {
  .h1 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .lead {
    font-size: 18px;
  }
  .cta {
    padding: 10px 14px;
    font-size: 14px;
  }
  .discord-status {
    font-size: 12px;
  }
}
