* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1459865264687-595d652de67e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80")
    center/cover no-repeat;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.card {
  position: relative;
  background: rgba(0, 0, 0, 0.55); /* black glass */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6),
    inset 0 0 25px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.profile-image {
  border-radius: 4px;
  border-color: #ff9d00;
}

.profile-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #ff9d00;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
  object-fit: cover;
}

.name {
  color: #ff9d00;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.countdown {
  margin-bottom: 30px;
}

.timer {
  font-size: 48px;
  font-weight: 700;
  color: #00c897;
  margin-bottom: 5px;
}

.timer-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.cta-button {
  display: inline-block;
  background: #0088cc;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  border: 2px solid #ff9d00;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.cta-button:hover {
  background: #006ba3;
  transform: translateY(-2px);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .card {
    padding: 30px 20px;
    margin: 10px;
  }

  .name {
    font-size: 24px;
  }

  .timer {
    font-size: 40px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 14px;
  }
}
