.update-notes-btn {
    background: linear-gradient(45deg, #cccccc, #898989);
    display: flex;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgb(0, 0, 0);
}

.update-notes {
    display: flex;
}

.update-notes-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #b1b1b1, #4f4f4f);
    text-decoration: none;
}

.vcredist-btn {
    display: inline-block;
    background: linear-gradient(45deg, #920000, #ff0000);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
} /* vcredist indirme butonu */


.vcredist-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #810000, #460000);
    text-decoration: none;
}

.vcredist-download {
    margin-top: 15px;
    text-align: center;
} /* vcredist indirme bölümü */

.download-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
} /* indirme butonları */

.download-btn {
    display: inline-block;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
} /* indirme butonları */

.download-btn.primary {
    background: linear-gradient(135deg, #ffffff, #7a7a7a);
    text-decoration: none;
    color: #000000;
}

.download-btn.primary:hover {
    background: linear-gradient(-135deg, #b6b6b6, #646464);
    transform: translateY(-2px);
    text-decoration: none;
}


.download-btn.secondary {
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff0000, #000000);
    color: #ffffff;
    text-decoration: none;
}

.download-btn.secondary:hover {
    background: linear-gradient(-135deg, #ff0000, #3f0000);
    transform: translateY(-2px);
    text-decoration: none;
}

.download-btn.third {
    background: linear-gradient(135deg, #ffd700, #ff9800);
    color: #222;
}

.download-btn.third:hover {
    background: linear-gradient(135deg, #ff9800, #ffd700);
    color: #111;
    transform: translateY(-2px);
}