.promo-banner {
    background: linear-gradient(135deg, #b14fa2 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.promo-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.promo-icon {
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.promo-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.promo-discount {
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 28px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
	color: white;

}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 90px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 600;
}

.promo-info {
    font-size: 16px;
    margin-bottom: 15px;
	color: white;

}

.promo-cta {
    background: white;
    color: #667eea;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.promo-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    color: #667eea;
}


.promo-banner.hidden {
    display: none;
}

@media (max-width: 768px) {
    .promo-title { font-size: 18px; }
    .promo-discount { font-size: 22px; padding: 6px 15px; }
    .countdown-item { min-width: 70px; padding: 10px 15px; }
    .countdown-value { font-size: 28px; }
    .countdown-label { font-size: 10px; }
}