html {
    background: #000;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
    background: transparent;
    overflow-x: hidden;
}

/* Achtergrond */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('assets/your-background.jpg') center/cover no-repeat;
    filter: grayscale(100%);
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: url('assets/grid-overlay.svg') center/cover no-repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

/* Card */
.card {
    background: linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0)) rgba(0,0,0,0.4);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    color: #fff;
    position: relative;
    z-index: 1;
    max-width: 550px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
    border: 1px solid rgba(255,255,255,0.08);
}

.card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
}

h1 {
    font-size: 20px;
    margin: 10px 0;
}

.bio p {
    color: #ddd;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    max-width: 450px;
    margin: 0 auto 20px auto;
}
.bio strong {
    color: #fff;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.icons img {
    height: 25px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    filter: invert(1);
    animation: fadeInIcons 0.6s ease forwards;
    animation-delay: 1s;
    background: none;
    border: none;
    padding: 0;
}

.icons img:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

/* Animaties desktop */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInIcons {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile optimalisatie */
@media (max-width: 600px) {
    body {
        align-items: flex-start;
        padding-top: 40px;
    }

    .card {
        padding: 14px;
        max-width: 85%;
        border-radius: 6px;
        margin: 0 auto;
        animation: fadeDown 0.8s ease forwards;
        opacity: 0;
        transform: translateY(-20px);
    }

    .card img {
        width: 65px;
        height: 65px;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 17px;
        margin: 4px 0;
    }

    .bio p {
        font-size: 12px;
        max-width: 100%;
        line-height: 1.5;
    }

    .icons {
        gap: 5px;
        margin-top: 6px;
    }

    .icons img {
        height: 18px;
        margin: 0 3px;
    }

    .icons img.byte-logo {
        height: 16px;
        transform: scale(0.85);
    }
}

/* Animatie mobiel */
@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch fix */
@media (hover: none) {
    .icons img:hover {
        transform: none;
        box-shadow: none;
    }
}