/* === DOWNLOAD SECTION BUTTONS === */
.download-nav-buttons {
    display: flex;
    gap: 20px;
    margin-top: 100px;
    width: 80%;
}

.nav-button {
    background-color: rgba(5, 5, 5, 0.8);
    color: #888;
    padding: 10px 30px;
    /* Slightly larger padding to match download btn feel */
    border-radius: 6px;
    /* Match download btn border radius if possible */
    text-decoration: none;
    font-size: 0.95em;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 8px;
    font-family: 'Cascadia Code', monospace;
    font-weight: bold;
    width: 100%;
    /* Full width within flex item, let flex grow handle it */
    flex: 1;
    /* Make them grow equally */
    box-sizing: border-box;
}

.nav-button:hover {
    background-color: rgba(50, 50, 50, 0.8);
    color: #fff;
    border-color: #555;
    transform: translateY(-2px);
}

.discord-button {
    border-color: #5865F2;
    /* Discord Blurple */
    color: #5865F2;
}

.discord-button:hover {
    background-color: rgba(88, 101, 242, 0.1);
    color: #fff;
    border-color: #5865F2;
}