* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: url("background.jpg") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.container {
    display: flex;
    gap: 120px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Basis kaart */
.card {
    width: 240px;
    height: 260px;
    background: rgba(0, 0, 0, 0.88);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.card img {
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
}

.card span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Algemene hover animatie */
.card:hover {
    transform: translateY(-12px) scale(1.08);
}

/* 🟣 Paarse glow voor Bassieflix */
.card:first-child:hover {
    box-shadow:
        0 0 25px rgba(160, 80, 255, 0.6),
        0 0 50px rgba(110, 0, 255, 0.5),
        0 0 80px rgba(110, 0, 255, 0.3);
}

/* 🔵 Blauwe glow voor Nassie */
.card:last-child:hover {
    box-shadow:
        0 0 25px rgba(0, 140, 255, 0.6),
        0 0 50px rgba(0, 114, 198, 0.5),
        0 0 80px rgba(0, 114, 198, 0.3);
}

/* 📱 Smartphone weergave */
@media (max-width: 768px) {

    body {
        align-items: flex-start;
        padding-top: 80px;
    }

    .container {
        flex-direction: column;
        gap: 60px;
    }

    .card {
        width: 80%;
        max-width: 320px;
        height: 240px;
    }
}
