:root {
  --accent: #f57e20;
  --bg: #1b60ae;
  --bg-sub: #8eeaff;
  --muted: #9ca3af;
  --white: #ffffff;
  --primary: #07263b;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

/* ===================== */
/* Body & Layout (FIXED) */
/* ===================== */
body {
  height: 100dvh;
  font-family: 'Montserrat', system-ui, sans-serif;
  background: radial-gradient(circle at 40% -100%, #8eeaff 0%, #1b60ae 100%);

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

/* ===================== */
/* Decorative Shapes     */
/* ===================== */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape.top-left {
  width: 880px;
  height: 560px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle at 30% 30%, var(--accent), #f57e20 60%);
  box-shadow: 0 0 60px rgba(37, 31, 27, 0.6);
  border-radius: 39%;
  transform: rotate(-45deg);
  filter: blur(1px);
}

.shape.bottom-right {
  width: 760px;
  height: 1050px;
  right: -280px;
  bottom: -280px;
  background: radial-gradient(circle at 30% 30%, var(--accent), #f57e20 60%);
  box-shadow: 0 0 80px rgba(37, 31, 27, 0.6);
  border-radius: 25%;
  transform: rotate(65deg);
}

/* ===================== */
/* Glass Card            */
/* ===================== */
.card {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  padding: 28px 20px;
  border-radius: 26px;
  text-align: center;
  background: linear-gradient(
    360deg,
    rgba(165, 164, 164, 0.65),
    rgba(110, 152, 216, 0.14)
  );
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
}

/* ===================== */
/* Content               */
/* ===================== */
.logo {
  width: 190px;
  height: 46px;
  margin: 0 auto 8px auto;
}
.logo img {
  max-width: 100%;
  max-height: 100%;
}

.status {
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  border-radius: 999px;
  border: 2px solid var(--white);
  display: inline-block;
}

h1 {
  margin-top: 16px;
  font-size: 30px;
  color: var(--white);
}

.subtitle {
  margin-top: 8px;
  color: var(--white);
}

.divider {
  width: 80px;
  height: 6px;
  margin: 16px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #f9b37a);
}

#now-time {
  margin-top: 10px;
  font-weight: 700;
  color: var(--white);
}

#now-time small {
  display: block;
  margin-top: 6px;
  color: var(--white);
}

.cta {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer {
  margin-top: 20px;
  font-size: 14px;
  color: var(--white);
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media (max-width: 820px) {
  .card {
    padding: 28px;
    border-radius: 20px;
  }
  h1 {
    font-size: 24px;
  }
  .logo {
    width: 220px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .card {
    padding: 20px;
    border-radius: 16px;
  }

  h1 {
    font-size: 20px;
  }

  .logo {
    width: 190px;
    height: 52px;
  }

  .shape.top-left {
    width: 320px;
    height: 220px;
    top: -100px;
    left: -100px;
    transform: rotate(-25deg);
  }

  .shape.bottom-right {
    width: 320px;
    height: 420px;
    right: -120px;
    bottom: -120px;
    transform: rotate(40deg);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .shape {
    animation: none;
  }
}
