/* Home page stylesheet moved from EJS */
:root {
  --black-0: #0b0b10;
  --black-1: #0f0f14;
  --black-2: #12121a;
  --purple-0: #3b0a57;
  --purple-1: #5b1996;
  --purple-2: #7c3aed;
  --text: #e6e6e9;
  --muted: #a0a0a8;
  --accent: #9d4edd;
}

html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacOSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--black-2);
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 980px;
  width: 100%;
}

h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #00e5ff, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p.subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem auto 0 auto;
}

.card {
  background: rgba(18, 18, 26, 0.75);
  border: 1px solid rgba(100, 100, 140, 0.25);
  border-radius: 16px;
  padding: 1.3rem;
  text-align: left;
  backdrop-filter: blur(6px);
}

.card .row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.icon { width: clamp(24px, 3.3vw, 28px); height: clamp(24px, 3.3vw, 28px); }
.card h3 { margin: 0; font-size: 1.1rem; }
.card p { margin: 0 0 0.85rem 0; color: var(--muted); font-size: 0.95rem; }

.btn {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.btn:hover { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }

.btn.tiktok { background: #0e0e12; border: 1px solid #2a2a35; }
.btn.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.btn.discord { background: #5865F2; }