body {
    font-family: 'Space Mono', monospace;
    background: #B3A79E;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 580px;
    width: calc(100% - 40px);
    min-height: 85vh;
    text-align: center;
    background: #F5EBE0;
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 16px;
    object-fit: cover;
}

h1 {
    font-size: 25px;
    font-weight: 500;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 16px 0;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.links {
    margin-top: 24px;
    width: 100%;
    max-width: 540px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    padding: 18px 32px;
    margin: 16px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 32px;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.link-button svg {
    flex-shrink: 0;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}
