@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d1117;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
    padding: 60px 20px;
}

.container {
    width: 100%;
    max-width: 580px;
    text-align: center;
}

/* Profil */
.profile {
    margin-bottom: 36px;
}

.profile-img-container {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: #21262d;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile h1 {
    font-size: 20px;
    font-weight: 700;
}

/* Liens / Boutons */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #21262d;
    color: #ffffff;
    text-decoration: none;
    min-height: 60px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Style de la miniature photo dans le bouton */
.btn-thumb {
    position: absolute;
    left: 8px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #30363d;
}

/* Ajustement du texte pour ne pas chevaucher l'image */
.link-btn span {
    padding: 0 40px;
    width: 100%;
    text-align: center;
}

.link-btn:hover {
    background-color: #30363d;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7; /* Pour un effet un peu plus discret */
}
