/* Creator Support Section */
.support-section {
    margin: 25px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-align: center;
}

.support-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.patreon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff424d 0%, #ff5e69 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 66, 77, 0.3);
}

.patreon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 66, 77, 0.5);
    background: linear-gradient(135deg, #ff5e69 0%, #ff424d 100%);
}

.patreon-icon, .patreon-heart {
    font-size: 20px;
    animation: pulse 2s infinite;
}

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