.ny-offer-banner * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ny-offer-banner {
  /* Background with gradient and festive image */
  background: linear-gradient(rgba(10, 25, 49, 0.85), rgba(26, 52, 104, 0.85)),
              url('https://images.unsplash.com/photo-1542367592-9d5b308e0c07?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  /* Layout */
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 25px;
  padding: 0 35px;
  
  /* Dimensions */
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  width: 100%;
  
  /* Typography */
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  
  /* Visual Effects */
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 20px rgba(10, 25, 49, 0.4);
  
  /* Animation */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

/* Background Overlay */
.ny-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    rgba(10, 25, 49, 0.8) 0%,
    rgba(26, 52, 104, 0.6) 50%,
    rgba(10, 25, 49, 0.8) 100%);
  z-index: 1;
}

/* ========== LEFT SECTION ========== */
.ny-banner-left {
  /* Empty section for layout balance */
  min-width: 0;
}

/* ========== CENTER SECTION ========== */
.ny-banner-center {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
  min-width: 0;
}

.ny-banner-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: nowrap;
}

.ny-sparkle {
  font-size: 16px;
  animation: ny-sparkle-anim 2s infinite alternate;
  flex-shrink: 0;
}

.ny-banner-heading b {
  font-size: 16px;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, #ffd700, #64c8ff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: ny-gradient-anim 4s ease infinite;
  white-space: nowrap;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.ny-banner-text {
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.2px;
}

.ny-offer {
  color: #4caf50;
  font-weight: 800;
  font-size: 15px;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
  animation: ny-pulse-anim 2s infinite alternate;
  margin: 0 2px;
}

/* ========== RIGHT SECTION ========== */
.ny-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  gap: 4px;
  height: 100%;
  justify-content: center;
  min-width: 190px;
  padding-right: 30px;
}

/* Call-to-Action Button */
.ny-banner-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4),
              0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  min-width: 170px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  height: 42px;
}

.ny-banner-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.7s;
}

.ny-banner-btn:hover::before {
  left: 100%;
}

.ny-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6),
              0 4px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
}

.ny-banner-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.ny-btn-text {
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.ny-btn-icon {
  font-size: 15px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.ny-banner-btn:hover .ny-btn-icon {
  transform: scale(1.15) rotate(8deg);
}

/* Close Button */
.ny-close-banner {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
  transition: all 0.2s ease;
  backdrop-filter: blur(2px);
  flex-shrink: 0;
}

.ny-close-banner:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-50%) scale(1.15);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Validity Text */
.ny-banner-time {
  display: block;
  font-size: 14px;
  color: #ffd700;
  font-weight: 600;
  letter-spacing: 0.4px;
  opacity: 0.9;
  margin-top: 3px;
  text-align: right;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ========== SNOWFLAKES ========== */
.ny-snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ny-snowflake {
  position: absolute;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  animation: ny-snowfall-anim linear infinite;
  opacity: 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Snowflake positions and timings */
.ny-snowflake:nth-child(1) {
  left: 10%;
  animation-duration: 9s;
  animation-delay: 0s;
}

.ny-snowflake:nth-child(2) {
  left: 25%;
  animation-duration: 11s;
  animation-delay: 2s;
  font-size: 12px;
}

.ny-snowflake:nth-child(3) {
  left: 40%;
  animation-duration: 8s;
  animation-delay: 1s;
  font-size: 16px;
}

.ny-snowflake:nth-child(4) {
  left: 55%;
  animation-duration: 10s;
  animation-delay: 3s;
  font-size: 13px;
}

.ny-snowflake:nth-child(5) {
  left: 70%;
  animation-duration: 12s;
  animation-delay: 0.5s;
  font-size: 11px;
}

.ny-snowflake:nth-child(6) {
  left: 85%;
  animation-duration: 9s;
  animation-delay: 2.5s;
  font-size: 15px;
}

.ny-snowflake:nth-child(7) {
  left: 15%;
  animation-duration: 7s;
  animation-delay: 1.5s;
  font-size: 12px;
}

.ny-snowflake:nth-child(8) {
  left: 90%;
  animation-duration: 10s;
  animation-delay: 0.8s;
  font-size: 14px;
}

/* ========== LIGHTS DECORATION ========== */
.ny-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  display: flex;
  justify-content: space-around;
  z-index: 1;
}

.ny-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  top: -3px;
  animation: ny-light-anim 1.5s infinite alternate;
  flex-shrink: 0;
}

.ny-gold {
  background: #ffd700;
  box-shadow: 0 0 8px #ffd700, 0 0 16px #ffd700;
}

.ny-silver {
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff;
}

.ny-blue {
  background: #64c8ff;
  box-shadow: 0 0 8px #64c8ff, 0 0 16px #64c8ff;
}

/* ========== ANIMATIONS ========== */
@keyframes ny-snowfall-anim {
  0% {
    transform: translateY(-20px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(100px) rotate(360deg) translateX(20px);
    opacity: 0;
  }
}

@keyframes ny-sparkle-anim {
  0% { 
    opacity: 0.6; 
    transform: scale(0.95); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1.05); 
  }
}

@keyframes ny-pulse-anim {
  0% { 
    transform: scale(1); 
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
  }
  100% { 
    transform: scale(1.05); 
    text-shadow: 0 0 12px rgba(76, 175, 80, 0.8);
  }
}

@keyframes ny-gradient-anim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes ny-light-anim {
  0% { 
    opacity: 0.7; 
    transform: scale(0.9); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1.1); 
  }
}

/* ========== RESPONSIVE DESIGN ========== */
/* Hide completely on mobile and tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .ny-offer-banner {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Desktop styles (≥ 1025px) */
@media (min-width: 1025px) {
  /* Standard Desktop (1025px - 1439px) */
  .ny-offer-banner {
    padding: 0 35px;
    gap: 25px;
  }
  
  .ny-banner-heading b {
    font-size: 16px;
  }
  
  .ny-banner-text {
    font-size: 14px;
  }
  
  .ny-banner-btn {
    min-width: 170px;
    padding: 10px 26px;
    font-size: 13px;
  }
  
  /* Large Desktop (≥ 1440px) */
  @media (min-width: 1440px) {
    .ny-offer-banner {
      padding: 0 45px;
      gap: 30px;
    }
    
    .ny-banner-heading b {
      font-size: 17px;
    }
    
    .ny-banner-text {
      font-size: 15px;
    }
    
    .ny-banner-btn {
      min-width: 180px;
      padding: 11px 28px;
      font-size: 14px;
    }
    
    .ny-btn-text {
      font-size: 14px;
    }
  }
  
  /* Extra Large Desktop (≥ 1920px) */
  @media (min-width: 1920px) {
    .ny-offer-banner {
      padding: 0 55px;
      gap: 35px;
    }
    
    .ny-banner-heading b {
      font-size: 18px;
    }
    
    .ny-banner-text {
      font-size: 16px;
    }
    
    .ny-banner-btn {
      min-width: 190px;
      padding: 12px 30px;
    }
  }
}

/* Print styles */
@media print {
  .ny-offer-banner {
    display: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .ny-offer-banner {
    border: 2px solid #ffd700;
  }
  
  .ny-banner-btn {
    border: 2px solid #ffffff;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .ny-offer-banner * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}