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

body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #150E2D;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.countdown-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); 
}

.countdown-circle {
  fill: none;
  stroke: url(#warm-gradient); 
  stroke-width: 10;
  stroke-dasharray: 282.743;
  stroke-dashoffset: 282.743;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}

.countdown-text {
  font-family: 'Orbitron', Helvetica, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: bold;
  color: #fff; 
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}