body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: white;
  text-align: center;
}

.container {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.logo {
  width: 80px;
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  background-color: #1db954;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.8rem;
  margin: 10px 0;
}

.subtext {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.apply-btn {
  background-color: #1db954;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.apply-btn:hover {
  transform: scale(1.05);
}

.section-title {
  margin-top: 60px;
  font-size: 1.8rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #2e2e2e;
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1db954;
}

.card h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.card p {
  color: #ccc;
  font-size: 0.95rem;
}
.apply-steps {
  margin-top: 60px;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.step-card {
  background-color: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
}

.step-icon {
  font-size: 2rem;
  color: #1db954;
  margin-bottom: 10px;
}

.cta {
  background: linear-gradient(135deg, #1db95410, #1db95420);
  margin-top: 60px;
  padding: 40px 20px;
  border-radius: 16px;
}

.cta .important {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #ccc;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #1e1e1e;
  color: white;
  border: 1px solid #333;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 300px;
  box-shadow: 0 0 10px #000;
  animation: slideUp 0.5s ease;
  z-index: 100;
}

.toast img {
  width: 40px;
  height: 40px;
}

.toast-text {
  flex-grow: 1;
  font-size: 0.9rem;
}

.toast-text .time {
  color: #888;
  font-size: 0.75rem;
}

.toast .verified {
  display: block;
  font-size: 0.75rem;
  color: #1db954;
  margin-top: 5px;
}

.close-toast {
  background: none;
  border: none;
  color: #999;
  font-size: 1rem;
  cursor: pointer;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  } to {
    transform: translateY(0);
    opacity: 1;
  }
}

