.guide-banner-slim {
    display: inline-block;
    width: 100%;
    max-width: 800px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
}

.guide-banner-slim:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.4);
    color: #fff;
    filter: brightness(1.1);
}

.guide-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.guide-banner-slim i {
    font-size: 1.1rem;
}

@media (max-width: 576px) {
    .guide-banner-slim {
        font-size: 0.75rem;
        padding: 10px 15px;
    }
}
