.promo-slide-enhanced {
  background: transparent;
  border-radius: var(--border-radius-large);
  position: relative;
  overflow: hidden;
}

.promo-slide-enhanced .showcase__title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  position: relative;
}

.promo-slide-enhanced .showcase__title span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.promo-slide-enhanced .showcase__text {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 20px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}




.promo-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0;
}

.promo-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: var(--transition-default);
  position: relative;
}

.promo-benefit:hover {
  transform: translateX(5px);
  background: rgba(95, 255, 152, 0.05);
}

.promo-benefit i {
  flex-shrink: 0;
  font-size: 16px;
  color: #5fff98;
  filter: drop-shadow(0 2px 4px rgba(95, 255, 152, 0.4));
  transition: var(--transition-default);
  animation: pulse-glow 3s ease-in-out infinite;
}

.promo-benefit:hover i {
  transform: scale(1.1);
  color: #4ae085;
  animation: pulse-glow 1s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 2px 4px rgba(95, 255, 152, 0.4));
  }
  50% {
    filter: drop-shadow(0 2px 8px rgba(95, 255, 152, 0.6));
  }
}

.promo-benefit span {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-primary-text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, 
    rgba(160, 101, 255, 0.12) 0%, 
    rgba(120, 161, 242, 0.08) 100%
  );
  border: 1px solid rgba(160, 101, 255, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(160, 101, 255, 0.15);
}

.promo-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(160, 101, 255, 0.03) 0%, 
    rgba(120, 161, 242, 0.02) 100%
  );
  border-radius: 20px;
  pointer-events: none;
}

.promo-timer {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(160, 101, 255, 0.15);
}

.timer-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--theme-primary-text);
}

.timer-hours,
.timer-minutes,
.timer-seconds {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 32px;
  text-align: center;
}

.timer-separator {
  color: var(--theme-primary-text);
  margin: 0 6px;
  opacity: 0.6;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 0.6; }
  51%, 100% { opacity: 0.3; }
}

.promo-code-block {
  text-align: center;
}

.promo-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-text-color);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-code-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, 
    rgba(160, 101, 255, 0.1) 0%, 
    rgba(120, 161, 242, 0.08) 100%
  );
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  position: relative;
}

.promo-code-container::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

.promo-code {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--theme-primary-text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.promo-copy-btn {
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  color: white;
  flex-shrink: 0;
}

.promo-copy-btn:hover {
  background: var(--color-hover-primary);
  transform: scale(1.05);
}

.promo-copy-btn:active {
  transform: scale(0.95);
}

@media screen and (max-width: 1240px) {
  .promo-widget {
    max-width: 280px;
    padding: 28px;
    gap: 20px;
  }
  
  .timer-display {
    font-size: 24px;
  }
  
  .promo-code {
    font-size: 20px;
  }
  
  .promo-code-container {
    padding: 14px 18px;
  }
}

@media screen and (max-width: 991px) {
  .promo-widget {
    max-width: 250px;
    padding: 24px;
    gap: 18px;
  }
  
  .timer-display {
    font-size: 22px;
  }
  
  .timer-label {
    font-size: 11px;
  }
  
  .promo-label {
    font-size: 13px;
  }
  
  .promo-code {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .promo-code-container {
    padding: 12px 16px;
  }
  
  .promo-copy-btn {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 1240px) {
  .promo-slide-enhanced .showcase__title {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .promo-slide-enhanced .showcase__text {
    font-size: 18px;
    margin-bottom: 18px;
  }
  
  .promo-benefits {
    margin: 16px 0;
    gap: 7px;
  }
  
  .promo-benefit span {
    font-size: 15px;
  }
  
  .promo-benefit i {
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .promo-slide-enhanced .showcase__title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .promo-slide-enhanced .showcase__text {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .promo-benefits {
    margin: 14px 0;
    gap: 6px;
  }
  
  .promo-benefit span {
    font-size: 14px;
  }
  
  .promo-benefit i {
    font-size: 14px;
  }
  
}

@media screen and (max-width: 767px) {
  .promo-slide-enhanced {
    border-radius: 12px;
  }
  
  .promo-slide-enhanced .showcase__title {
    font-size: 26px;
    margin-bottom: 10px;
  }
  
  .promo-slide-enhanced .showcase__text {
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .promo-widget {
    display: none;
  }
  
  .promo-benefits {
    margin: 12px 0;
    gap: 5px;
  }
  
  .promo-benefit span {
    font-size: 13px;
  }
  
  .promo-benefit i {
    font-size: 13px;
  }
  
}

.wrapper.active .promo-widget {
  background: linear-gradient(135deg, 
    rgba(120, 161, 242, 0.08) 0%, 
    rgba(160, 101, 255, 0.06) 100%
  );
  border-color: rgba(120, 161, 242, 0.2);
}

.wrapper.active .promo-widget::before {
  background: linear-gradient(135deg, 
    rgba(120, 161, 242, 0.03) 0%, 
    rgba(160, 101, 255, 0.02) 100%
  );
}

.wrapper.active .promo-timer {
  border-bottom-color: rgba(120, 161, 242, 0.15);
}

.wrapper.active .timer-label {
  color: var(--color-secondary);
}

.wrapper.active .timer-hours,
.wrapper.active .timer-minutes,
.wrapper.active .timer-seconds {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wrapper.active .promo-code-container {
  background: linear-gradient(135deg, 
    rgba(120, 161, 242, 0.1) 0%, 
    rgba(160, 101, 255, 0.08) 100%
  );
  border-color: var(--color-secondary);
}

.wrapper.active .promo-code-container::before {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.wrapper.active .promo-copy-btn {
  background: var(--color-secondary);
}

.wrapper.active .promo-copy-btn:hover {
  background: var(--color-hover-secondary);
}

.wrapper.active .promo-widget::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, 
    rgba(120, 161, 242, 0.2) 0%,
    rgba(160, 101, 255, 0.1) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.wrapper.active .promo-code {
  color: #1a1a1a;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8), 
               0 0 10px rgba(255, 255, 255, 0.5);
  font-weight: 900;
}

.wrapper.active .promo-slide-enhanced {
  background: transparent !important;
}

.wrapper.active .promo-widget {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.wrapper.active .promo-widget::before {
  background: transparent !important;
}

.wrapper.active .promo-widget::after {
  background: transparent !important;
}

.wrapper.active .promo-code-container {
  background: transparent !important;
  border-color: rgba(160, 101, 255, 0.2) !important;
}

.wrapper.active .promo-code-container::before {
  background: transparent !important;
}



