:root {
    --bg-color: #0d0d12;
    --card-bg: #161621;
    --primary: #be29ec; /* Violet */
    --secondary: #ffe400; /* Jaune */
    --text-main: #ffffff;
    --text-dim: #a0a0b0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.bio-container {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 10px rgba(190, 41, 236, 0.2);
    border: 1px solid rgba(190, 41, 236, 0.3);
}

/* Photo de profil */
.profile-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 0 15px var(--secondary);
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #333; /* Placeholder */
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.tagline {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 25px 0 15px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 228, 0, 0.2);
    padding-bottom: 5px;
    display: inline-block;
}

.bio-content p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.link-item {
    background: rgba(190, 41, 236, 0.1);
    color: var(--text-main);
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    transition: 0.3s;
}

.link-item:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.contact-button {
    display: block;
    margin-top: 15px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--secondary);
    padding: 10px;
    border-radius: 50px;
    transition: 0.3s;
}

.contact-button:hover {
    background: var(--secondary);
    color: var(--bg-color);
}

/* Adaptation Mobile */
@media (max-width: 480px) {
    .bio-container {
        padding: 30px 20px;
    }
    h1 { font-size: 1.5rem; }
}