/* ============================================
   Support Styles
   ============================================ */

.support-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(46, 171, 209, 0.05) 100%);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.support-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 171, 209, 0.2);
}

.support-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(46, 171, 209, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.support-icon i {
    font-size: 3.5rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(46, 171, 209, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(46, 171, 209, 0.6);
    }
}

.support-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin: 0;
}

.support-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow) 100%);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: var(--radius-button);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.3);
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 216, 53, 0.5);
}

.support-btn i {
    font-size: 1.3rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .support-section {
        padding: 30px 20px;
    }
    
    .support-title {
        font-size: 1.5rem;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .support-icon i {
        font-size: 2.8rem;
    }
    
    .support-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
