body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #0a0f1c, #000);
  color: white;
  overflow-x: hidden; /* 🔥 fix */
}

/* Background Glow */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0, 150, 255, 0.2);
  filter: blur(150px);
  top: -100px;
  left: -100px;
}

/* Container */
.container {
  min-height: 100vh; /* 🔥 fix */
  display: flex;
  padding: 40px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Heading */
h1 {
  font-size: clamp(40px, 10vw, 120px); /* 🔥 responsive */
  margin: 0;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtext */
p {
  margin-top: 10px;
  font-size: clamp(14px, 3.5vw, 25px); /* 🔥 responsive */
  color: #aaa;
}

/* Buttons */
.buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap; /* 🔥 important */
  justify-content: center;
}

button {
  padding: 12px 25px;
  margin: 10px;
  border: none;
  border-radius: 30px;
  font-size: clamp(14px, 3vw, 22px);
  cursor: pointer;
  transition: 0.3s;
}

/* Apply */
.apply-btn {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0,150,255,0.5);
}

/* Login */
.login-btn {
  font-weight: 700;
  background: transparent;
  border: 1px solid #00c6ff;
  color: white;
}

/* Website text */
.mainwebsite p {
  margin-top: 20px;
  font-size: clamp(14px, 3vw, 26px);
  font-weight: 500;
}

.mainwebsite a {
  color: #00c6ff;
  text-decoration: none;
  font-weight: 700;
}

.mainwebsite a:hover {
  text-decoration: underline;
}

/* Hover */
button:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Timer */
#timer {
  display: flex;
  flex-wrap: wrap; /* 🔥 important */
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

/* Time Box */
.time-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,200,255,0.3);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  min-width: 70px;
  box-shadow: 0 0 15px rgba(0,150,255,0.2);
  transition: 0.3s;
}

.time-box:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Timer text */
.time-box span {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: bold;
  color: #00c6ff;
}

.time-box p {
  margin: 5px 0 0;
  font-size: clamp(12px, 3vw, 20px);
}

/* Animation */
.fade {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}