/* ...existing code... */

body {
  background: linear-gradient(135deg, #1db954 0%, #121212 100%);
  min-height: 100vh;
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

.landing-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.container.landing-card {
  max-width: 420px;
  margin: 7vh auto 0 auto;
  background: rgba(30,30,30,0.85);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 1.15rem;
  color: #b3b3b3;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}

.btn-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

a.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1db954 60%, #1ed760 100%);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(29,185,84,0.15);
  transition: background 0.3s, transform 0.2s;
}

a.btn:hover {
  background: linear-gradient(90deg, #1ed760 60%, #1db954 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(29,185,84,0.22);
}

/* ...existing code... */