/* Modern Promo Section Styles */
.modern-promo-section {
    margin: 20px 15px;
}

.modern-promo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(248, 44, 35, 0.3);
}

.modern-promo-header i {
    font-size: 18px;
    animation: pulse-promo 2s infinite;
}

@keyframes pulse-promo {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.modern-promo-container {
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-promo-card {
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modern-promo-card:last-child {
    margin-bottom: 0;
}

.modern-promo-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(248, 44, 35, 0.15);
}

.modern-promo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s ease;
}

.modern-promo-link:hover {
    text-decoration: none;
    color: #2d3748;
}

.modern-promo-link-disabled {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: #6c757d;
    cursor: default;
}

.modern-promo-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.modern-promo-content {
    flex: 1;
}

.modern-promo-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #2d3748;
}

.modern-promo-arrow {
    flex-shrink: 0;
    color: #f82c23;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modern-promo-link:hover .modern-promo-arrow {
    transform: translateX(5px);
}

.modern-promo-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.modern-promo-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #cbd5e0;
}

.modern-promo-empty p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-promo-card {
    animation: fadeInUp 0.5s ease;
}
