body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: #fff;
}

a.back {
    margin-bottom: 60px;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.link-card {
    background: #c28298d0;
    border-radius: 20px;
    padding: 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.link-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.link-card h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

a.back,
.link-card a.btn {
    display: inline-block;
    background: #111827;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 500;
    transition: background 0.3s;
}

a.back:hover,
.link-card a.btn:hover {
    background: #222f4d;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 600px) {
    a.back {
        margin-bottom: 40px;
    }

    .links-container {
        flex-direction: column;
        align-items: center;
    }
}