body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: url('bg.jpg') no-repeat right center fixed;
	background-size: cover;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 600px) {
	body {
		background-position: center center;
	}
}

.countdown-container {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 32px;
  padding: 48px 64px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  gap: 32px;
}

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

.countdown-number {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 24px #000a, 0 1px 0 #fff2;
  margin-bottom: 8px;
  transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55), color 0.3s;
  will-change: transform, color;
  animation: pop 0.6s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes pop {
  0% { transform: scale(1); color: #fff; }
  30% { transform: scale(1.25); color: #ffecb3; }
  60% { transform: scale(0.95); color: #fffde4; }
  100% { transform: scale(1); color: #fff; }
}

.countdown-label {
  font-size: 1.1rem;
  color: #ffe082;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 600px) {
  .countdown-container {
    flex-direction: column;
    gap: 16px;
    padding: 24px 12px;
  }
  .countdown-number {
    font-size: 2.5rem;
  }
}
