.newyear-box {
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  border-bottom: 4px solid #ffd700;
  animation: fadeSlide 1.5s ease-out;
  font-family: "Plus Jakarta Sans";
  position: relative; 
}

.newyear-box h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-family: "Plus Jakarta Sans";
}

.newyear-box p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
  color: #2c2c2c;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #2c2c2c;
}

/* Smooth entrance animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .newyear-box h1 {
    font-size: 1.8rem;
  }
  .newyear-box p {
    font-size: 1rem;
  }
}
