* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px;
  background-image: url('../img/desk.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.card {
  border-radius: 20px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  text-align: center;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
  padding: 25px;
  background: linear-gradient(45deg, #e900dd, #c04ff8);
}

.card-header svg {
  width: 110px;
  height: 110px;
}

.card-body {
  padding: 35px;
}

.card-body h1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.card-body h1 .highlight {
  color: #c04ff8;
}

.card-body p {
  font-size: 0.9rem;
  color: #dddddd;
  margin-bottom: 35px;
}

.cta-button {
  display: inline-block;
  color: #fff;
  padding: 14px 85px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(45deg, #e900dd, #c04ff8);
  box-shadow: 0 5px 20px rgba(233, 0, 116, 0.3);
}

.cta-button:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 0, 116, 0.5);
}


@media (max-width: 768px) {
  body {
    background-image: url('../img/mob.png');
    background-position: bottom left;
    background-size: cover;
  }

  .card-body h1 {
    font-size: 1.4rem;
  }
}