/* Quick Start Banner Styles for RFT */

.quickstart-banner {
    background: linear-gradient(135deg, #4169e1, #8a50c0);
    padding: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.quickstart-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.new-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

.banner-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.banner-cta {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: bold;
}

.banner-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
}