/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  color: #fff;
  min-height: 100vh;
  background: #000;
  overflow-y: auto;
}

/* Background image - sharp, no blur */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("images/background.jpg") no-repeat center/cover;
  background-size: cover;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* optional dark overlay */
  z-index: -1;
}

/* Wrapper (blur only behind content) */
.content-wrapper {
  width: 90%;
  max-width: 650px;
  margin: 20px auto;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);  /* blur only inside box */
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.logo { width: 180px; margin: 10px 0; }

/* Text */
h1 { font-size: 2.8rem; color: #ffd700; margin-bottom: 10px; }
.subtitle { font-size: 1.3rem; margin-bottom: 10px; color: #ddd; }
.why h2 { font-size: 1.6rem; color: #ffd700; margin-bottom: 10px; }
.why p { 
  font-size: 1rem; 
  line-height: 1.7; 
  color: #eee; 
  text-align: justify; 
}

/* Why Section */
.why {
  margin: 20px 0;
  padding: 15px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 10px;
}

/* Details Section */
.details {
  margin: 20px 0;
  padding: 15px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 10px;
  text-align: left;
}

.details h2 {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 10px;
  text-align: center;
}

.details p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 5px 0;
}

.details strong {
  color: #ffd700;
}

.save-date {
  margin-top: 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6b6b;
}

/* Expired message */
.expired {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff6b6b;
  text-align: center;
}

/* Countdown */
.countdown-wrapper {
  width: 100%;
  margin: 20px 0;
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 10px;
  display: flex;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  width: 100%;
}

.time-box {
  flex: 1;
  min-width: 60px;
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.time {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255,215,0,0.8);
  animation: pulse 1s infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes glow {
  from { text-shadow: 0 0 10px rgba(255,215,0,0.6); }
  to { text-shadow: 0 0 20px rgba(255,215,0,1); }
}

.label {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Button */
.btn {
  margin-top: 20px;
  font-size: 1.2rem;
  padding: 14px 35px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
  background: linear-gradient(45deg,#ff6b6b,#ffd700);
}

.btn:hover { 
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(249,77,106,0.8);
}

/* Video Section */
.video-section { width: 100%; margin-top: 20px; }
.video-section h2 { font-size: 1.6rem; color: #ffd700; margin-bottom: 15px; }
.videos { display: flex; flex-direction: column; gap: 15px; }
.videos iframe { width: 100%; height: 250px; border-radius: 12px; }

/* Desktop video layout */
@media (min-width: 768px) {
  .videos { flex-direction: row; }
  .videos iframe { flex: 1; height: 300px; }
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .subtitle { font-size: 1rem; }
  .why h2 { font-size: 1.2rem; }
  .why p { font-size: 0.9rem; }
  .details h2 { font-size: 1.2rem; }
  .details p { font-size: 0.9rem; }
  .time { font-size: 1.5rem; }
  .label { font-size: 0.8rem; }
  .time-box { min-width: 50px; padding: 10px 5px; }
  .btn { font-size: 1rem; padding: 10px 25px; }
  .videos iframe { height: 180px; }
  .video-section h2 { font-size: 1.2rem; }
}
