body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: calc(10px + 5%);
    box-sizing: border-box;
    background-color: #9a9077;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ded0ad;
    color: #000;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 500px;
}

.profile-container {
    position: relative;
    width: 300px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#profile-image-new {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.social-links {
    margin-top: 20px;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
}

.social-links li {
    margin: 10px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.social-links a {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    justify-items: center;
    width: 250px;
    padding: 8px 12px;
    margin: 0 20px;
    color: #333;
    background-color: #c6b482;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.social-links a:hover {
    color: #007bff;
    background-color: #e0e0e0;
}

.icon-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.label-cell {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5px;
    text-align: left;
}

.social-links a img,
.social-links a div img {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    fill: currentColor;
}

#bluesky-link path {
    fill: #1DA1F2;
}

.title {
    margin-top: 0;
    font-size: 1.5em;
    font-weight: bold;
}

.subtitle {
    font-size: 0.9em;
    margin-top: 4px;
    color: #666;
}

.subtitle a {
    color: #333;
    font-weight: 600;
    padding: 2px 4px;
    position: relative;
    text-decoration: none;
    background-color: rgba(198, 180, 130, 0.1);
    transition: all 0.2s ease;
}

.subtitle a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c6b482;
    transform: scaleX(1);
    transition: transform 0.2s ease;
}

.subtitle a:hover {
    background-color: rgba(198, 180, 130, 0.2);
}

.subtitle a:hover::after {
    transform: scaleX(1.1);
}
