/* Download mod buttons styling */
.download-mod-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.download-mod-button {
    display: inline-block;
    padding: 12px 24px;
    background: #cf2e2e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #cf2e2e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.download-mod-button:hover {
    background: #cf2e2e;
    border-color: #cf2e2e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.download-mod-button:visited {
    color: #fff;
}

.download-mod-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

