.feature-card { 
    transition: transform 0.3s ease; 
}

.feature-card:hover { 
    transform: translateY(-5px); 
}

.support-btn {
    display: inline-flex;
    align-items: center;
    background-color: #72a4f2;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    margin: 8px auto;
}

.support-btn:hover {
    background-color: #5c8edb;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

.support-btn:active {
    transform: translateY(0);
}

.github-btn {
    background-color: #24292e;
}

.github-btn:hover {
    background-color: #444d56;
}

.support-btn svg {
    margin-right: 10px;
    height: 24px;
    width: auto;
}
