* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  height: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1580587771525-78b9dba3b914?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 60, 0.75);
}

.content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}



.brand-link {
  color: #ff4d5a;          /* same as accent color */
  text-decoration: none;
  font-weight: 500;
}

.brand-link:hover {
  text-decoration: underline;
}

.badge {
  display: inline-block;
  border: 2px solid #ff4d5a;
  padding: 6px 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 15px;
}

.sub {
  font-size: 14px;
  margin-bottom: 40px;
}

.sub span {
  color: #ff4d5a;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.time-box {
  background: rgba(255,255,255,0.1);
  padding: 18px 22px;
  min-width: 110px;
}

.time-box span {
  display: block;
  font-size: 36px;
  font-weight: 600;
}

.time-box small {
  font-size: 12px;
  letter-spacing: 1px;
  border-top: 2px solid #ff4d5a;
  display: inline-block;
  padding-top: 6px;
  margin-top: 6px;
}

.notify-text {
  margin-bottom: 15px;
}

.notify-box {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto 30px;
}

.notify-box input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
}

.notify-box button {
  background: #ff4d5a;
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
  font-weight: 500;
}

.social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #ff4d5a;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 6px;
  text-decoration: none;
}

@media(max-width:768px) {
  h1 {
    font-size: 32px;
  }

  .countdown {
    flex-wrap: wrap;
  }
}
