/* Style aligné sur octoboost.io / unit.link (profile template) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 20px;
    text-transform: uppercase;
}

.container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.section {
    width: 100%;
    margin-bottom: 40px;
}

.section-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #333333;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #c401cb;
    letter-spacing: 0.3px;
    font-family: 'Roboto', sans-serif;
}

.button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 12px;
    background-color: transparent;
    border: 2px solid #0056b3;
    border-radius: 500px;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.2s linear, box-shadow 0.2s linear;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transform: scale(1);
}

.button:hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transform: scale(1.02);
}

.button:active {
    transform: scale(0.99);
}

.button .link-icon,
.button i {
    font-size: 20px;
    margin-right: 12px;
    color: #c401cb;
    flex-shrink: 0;
}

.button .link-icon--img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 12px;
}

.button-text {
    flex: 1;
    text-align: left;
    text-transform: uppercase;
}
