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

body {
  font-family: "Inter", sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
  position: relative;
  background: #000;
  padding-top: 70px;
}

/* Background image */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("../images/background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-position: center 60%;

  /* Change opacity here */
  opacity: 0.35;
  filter: blur(2px);

  z-index: -2;
}

/* Optional dark overlay for readability */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.container {
  position: relative;
  text-align: center;
  z-index: 1;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.subtitle {
  color: #94a3b8;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.countdown {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.time-box {
  width: 140px;
  padding: 25px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  transition: 0.3s;
}

.time-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.number {
  font-size: 3.2rem;
  font-weight: 700;
}

.label {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.finished {
  font-size: 4rem;
  font-weight: 700;
}

.timeline {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  opacity: 0;
}

/* ---------- NAVBAR ---------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: 70px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 40px;

  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  z-index: 999;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s;
}

.navbar a:hover {
  color: #ff9cbc;
}

.special-link {
  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: 0.3s;
}

.special-link:hover {
  background: #ff6f91;
  color: white;
}

body {
  padding-top: 70px;
}
