* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1e1f26, #2b2e4a);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.wrapper {
  padding: 24px;
  width: 100%;
}

.card {
  max-width: 520px;
  margin: auto;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 36px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.logo {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.intro {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 22px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.features div {
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px;
  font-size: 12px;
}

.how {
  text-align: left;
  margin-bottom: 22px;
}

.how h2 {
  font-size: 16px;
  margin-bottom: 10px;
}

.how ul {
  padding-left: 18px;
  margin: 0;
}

.how li {
  font-size: 13px;
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 12px;
  line-height: 1.5;
  background: rgba(0,0,0,0.35);
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: scale(1.05);
}

footer {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 22px;
}
.Terms{
    font-size: 11px;
    /*opacity: 0.9;*/
    margin-top: 22px;
    color:#fff;
}

/* Responsive */
@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
  }
}
