body {
  background: radial-gradient(circle at top, #1e1b29, #0c0b13);
  font-family: 'Inter', 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
}

.glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  padding: 30px 25px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  max-width: 340px;
  width: 90%;
}

.profile-pic {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FF69B4;
  box-shadow: 0 0 15px #ff8ac9;
  margin-bottom: 20px;
}

.aria-name {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.aria-handle {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.aria-intro {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 16px;
  font-family: 'Quicksand', sans-serif;
}

.aria-status {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 14px;
}

.status-dot {
  height: 10px;
  width: 10px;
  background-color: #00FF00;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.geo-location {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #FF69B4;
  color: white;
  padding: 12px 26px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
  box-shadow: 0 0 12px #ff9ecf;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.discount-line {
  color: #ff85c1;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.timer-display {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FF69B4;
}