/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f5f5; /* bg-neutral-100 fallback */
}

/* Main Container */
.profile-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem; /* gap-1 */
    padding: 1.25rem; /* p-5 */
    height: 100vh;
    height: 100dvh; /* h-dvh */
    height: 100svh; /* h-svh */
    text-align: center;
}

/* Avatar Image */
.avatar {
    width: 200px; /* w-50 (50 * 4px) */
    height: 200px; /* h-50 */
    border-radius: 9999px; /* rounded-full */
    border: 1px solid #a3a3a3; /* border-1 border-neutral-400 */
    object-fit: cover;
}

/* Typography */
.name {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700; /* font-bold */
    margin-top: 0.5rem;
}

.title {
    color: #525252; /* text-neutral-600 */
}

/* Links Layout */
.links-container {
    display: flex;
    gap: 1rem; /* gap-4 */
    margin-top: 1rem; /* mt-4 */
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* gap-1 */
    color: #0284c7; /* text-sky-600 */
    text-decoration: none;
}

.social-link:hover {
    text-decoration: underline;
}

/* Icon Sizing */
.social-link svg {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
}
