:root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --accent-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#canvas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.center-content {
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 400px;
    /* Limite la largeur pour que le cadre soit joli */
}

h1 {
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 3rem;
    color: var(--text-color);
}

.description {
    color: #a0a0a0;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* --- BOUTON CV (Plein) --- */
.btn-cv {
    display: block;
    width: 200px;
    margin: 0 auto 40px auto;
    /* Marge en bas pour séparer du cadre */
    text-decoration: none;
    color: var(--bg-color);
    background-color: var(--accent-color);
    padding: 15px 0;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-cv:hover {
    transform: scale(1.05);
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

/* --- NOUVEAU : LE CADRE DU PROJET --- */
.project-frame {
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Bordure blanche semi-transparente */
    border-radius: 20px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Fond très légèrement gris */
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    /* Effet de flou moderne */
}

.project-frame h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.project-frame p {
    color: #a0a0a0;
    margin: 0 0 20px 0;
    font-size: 0.9rem;
}

/* Bouton à l'intérieur du cadre (Contour seulement) */
.btn-project {
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-project:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    /* Le texte devient noir au survol */
}

/* Style pour le lien en bas à gauche */
.footer-legal {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 100;
}

.footer-legal a {
    color: rgba(160, 160, 160, 0.6);
    /* Gris discret */
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-color);
    /* Devient blanc au survol */
}