/* Buy Me a Coffee Section */
.support-creator-section {
    background: linear-gradient(135deg, rgba(255, 221, 85, 0.1), rgba(255, 129, 119, 0.1));
    border: 2px solid rgba(255, 221, 85, 0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.support-creator-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: steam 2s ease-in-out infinite;
}

@keyframes steam {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.support-creator-section h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-creator-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.buy-coffee-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFDD57, #FF8177);
    color: #1a1f26;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 221, 85, 0.4);
    border: none;
    cursor: pointer;
}

.buy-coffee-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 221, 85, 0.6);
    color: #1a1f26;
}

.buy-coffee-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.support-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .support-creator-section {
        padding: 2rem 1.5rem;
    }
    
    .support-icon {
        font-size: 3rem;
    }
    
    .support-creator-section h3 {
        font-size: 1.5rem;
    }
    
    .support-creator-section p {
        font-size: 1rem;
    }
    
    .buy-coffee-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .support-creator-section {
        padding: 1.5rem 1rem;
    }
    
    .support-icon {
        font-size: 2.5rem;
    }
    
    .support-creator-section h3 {
        font-size: 1.25rem;
    }
    
    .buy-coffee-btn {
        width: 100%;
        justify-content: center;
    }
}
