body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: url('background.jpg') center/cover no-repeat;
  background-attachment: fixed;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
.glass {
  width: 95%;
  max-width: 1000px;
  margin: auto;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
}
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  margin: 10px auto 10px;
}
h1 {
  font-size: 28px;
  margin: 10px 0 5px;
}
.location {
  font-size: 16px;
  margin-bottom: 20px;
}
.timer-box {
  position: relative;
  background: url('timer.jpg') center/cover no-repeat;
  width: 100%;
  height: 180px;
  border-radius: 12px;
  margin: 20px auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
}
.discount {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 8px;
  color: #00aff0;
  text-align: center;
}
.timer-text {
  font-size: 32px;
  font-weight: bold;
  text-shadow: 1px 1px 3px #000;
  margin-bottom: 20px;
}
.labels {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-top: 5px;
  color: #ddd;
}
.off-sale {
  color: #00aff0;
}
.timer-box.pulse {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}
.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-icons a {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 10px;
  border-radius: 12px;
  transition: transform 0.2s ease;
}
.social-icons a:hover {
  transform: scale(1.1);
}
.social-icons img {
  width: 30px;
  height: 30px;
}

.timer-text { animation: none !important; }
