/* Basic reset */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
  background: #0a57c6; /* fallback while image loads */
  color: #fff;
}

/* Full-bleed hero using your graphic */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("empowering\ experiences\ holding\ graphic.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Countdown pill */
.countdown {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* “Go now” link style */
.countdown .skip {
  color: #fff;
  text-decoration: underline;
}

/* No-JS fallback notice */
.noscript {
  position: fixed;
  inset: auto 0 0 0;
  padding: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
}
.noscript a {
  color: #fff;
  text-decoration: underline;
}
