body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #191e2c 0%, #232946 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bg-blur {
  position: fixed;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  filter: blur(12px) brightness(0.5);
  z-index: 0;
}
.main-card {
  z-index: 1;
  position: relative;
  max-width: 390px;
  width: 95%;
  margin: 40px auto;
  background: rgba(34, 40, 62, 0.88);
  border-radius: 18px;
  box-shadow: 0 12px 44px #0005;
  padding: 40px 30px 32px 30px;
  text-align: center;
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.06);
}
.logo {
  width: 110px;
  margin-bottom: 20px;
}
h1 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -1px;
}
.desc {
  color: #e5e9f2;
  font-size: 1.08rem;
  margin-bottom: 28px;
  line-height: 1.6;
}
.cta-btn {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  margin-bottom: 25px;
  background: linear-gradient(90deg,#e63946,#ff7675);
  color: #fff;
  font-size: 1.09rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 18px #e6394633;
  letter-spacing: 0.5px;
  transition: background 0.15s, box-shadow 0.18s;
}
.cta-btn:hover {
  background: linear-gradient(90deg,#d7263d,#f6416c);
  box-shadow: 0 2px 24px #e6394655;
}
.features {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.features div {
  color: #e7eaf3;
  font-size: 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 7px 0 7px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
@media (max-width: 500px) {
  .main-card { padding: 25px 7vw 22px 7vw; }
  .logo { width: 80px; }
  h1 { font-size: 1.18rem; }
  .desc { font-size: 0.98rem; }
  .features div { font-size: 0.95rem; }
}
