* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SLIDESHOW — full background */

/* Background Slideshow */
.slideshow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active { opacity: 1; }

/* Dim overlay so content stays readable */
.slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* BIO — centered overlay */
.bio-card {
    position: relative;
    z-index: 10;
    max-width: 580px;
    width: 90%;
    padding: 48px 40px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
}

.bio-card h2 {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 24px;
}

.bio-card p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.85);
}

/* back link */
.back {
    position: fixed;
    top: 20px;
    left: 24px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    z-index: 20;
    transition: color 0.3s;
}

.back:hover { color: #fff; }