:root {
    --bg-color: #f4f4f5;
    --text-color: #18181b;
    --card-bg: #ffffff;
    --hover-bg: #e4e4e7;
    --accent-color: #27272a;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Language Toggle */
.lang-toggle {
    align-self: flex-end;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
    line-height: 1;
}

.lang-toggle:hover {
    background-color: transparent;
    transform: scale(1.2);
}

.lang-toggle img {
    width: 30px;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Profile Section */
.profile {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.profile-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ddd; /* Placeholder color */
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.profile-bio {
    color: #52525b;
    max-width: 400px;
}

/* Links Section */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-color: #d4d4d8;
}

/* Footer */
.footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #71717a;
}
