/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ================= BACKGROUND VIDEO ================= */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* ================= OVERLAY ================= */
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(40, 0, 10, 0.65),
    rgba(10, 0, 0, 0.75)
  );
  z-index: -1;
}

/* ================= CONTENT ================= */
.content {
  position: relative;
  z-index: 1;
}

/* ================= HERO ================= */
.hero {
  padding: 100px 20px 60px;
  text-align: center;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* ================= NOTICE ================= */
.notice {
  margin: 25px auto 0;
  max-width: 600px;
  padding: 14px;
  background: rgba(255,255,255,0.9);
  color: #111;
  border-left: 5px solid #ff4d6d;
  border-radius: 8px;
}

/* ================= BUTTONS ================= */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.main-btn {
  padding: 14px 32px;
  background: #ff4d6d;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 18px;
  transition: 0.3s;
}

.main-btn:hover {
  background: #ff2f55;
  transform: scale(1.05);
}

/* ================= TIMER SECTION ================= */
.timer-section {
  text-align: center;
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 900px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
}

.heading {
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

#countdown div {
  background: rgba(0,0,0,0.7);
  padding: 16px 20px;
  border-radius: 14px;
  min-width: 80px;
}

#countdown span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

#countdown small {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ================= TIME NOTE ================= */
.time-note {
  margin-top: 20px;
  color: #ddd;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .hero {
    padding: 80px 16px 40px;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .heading {
    font-size: 24px;
  }

  .main-btn {
    font-size: 16px;
    padding: 12px 26px;
  }
}

@media (max-width: 480px) {

  .hero p {
    font-size: 0.95rem;
  }

  #countdown div {
    min-width: 70px;
    padding: 14px;
  }
}
