body {
  min-height: 100vh;
  min-width: 100vw;
  background: transparent;
  color: #000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.countdown-card {
  padding: 0.5em;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.countdown-title {
  margin: 0;
  padding: 0.5em;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  line-height: 1.1;
  color: inherit;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(255,255,255,0.9), 0 0 14px rgba(255,255,255,0.7);
}

.countdown-value {
  margin: 0;
  padding: 0.5em;
  font-size: clamp(1.7rem, 5.5vw, 3.4rem);
  line-height: 1.2;
  word-break: break-word;
  text-shadow: 0 0 6px rgba(255,255,255,0.9), 0 0 14px rgba(255,255,255,0.7);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: url('FlagDistress.webp') center center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
