.tournament-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}

.tournament-link,
.back-to {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 0.75rem 0rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tournament-link {
    background-color: #0056b3;
}

.tournament-link:hover {
    background-color: #003d82;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.tournament-link:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-to {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #e0e0e0;
}

.back-to:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.back-to:active {
    opacity: 0.8;
    transform: translateY(1px);
}




.back-arrow {
    text-decoration: none;
    color: #ddd; /* Example link color */
    /* Add any other desired link styles */
}

.back-arrow::before {
    content: "← "; /* Leftwards arrow Unicode character + a space */
    font-weight: bold; /* Makes the character bolder */
    /* You might need to adjust font-weight or size if it looks odd */
    /* font-weight: bold; */
}

/* Optional: Hover effect */
.back-arrow:hover {
    color: #07d4f8;
    /*text-decoration: underline;*/
}




/* Responsive adjustments */
@media (max-width: 600px) {
    .tournament-links-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tournament-link,
    .back-to {
        width: 100%;
        max-width: none;
    }
}