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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #F7F7F8;
    background-image:
        linear-gradient(#F4F4F5 1px, transparent 1px),
        linear-gradient(90deg, #F4F4F5 1px, transparent 1px);
    background-size: 10px 10px;
    min-height: 100vh;
    padding: 96px 16px 150px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.profile {
    text-align: center;
    margin-bottom: 64px;
}

.name {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #000000;
    letter-spacing: -0.8px;
    line-height: 140%;
}

.subtitle {
    font-size: 16px;
    color: #000000;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 140%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aeaeb2;
    text-decoration: none;
    transition: all 0.15s ease;
    font-size: 17px;
}

.social-icon:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.link-card:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.link-card:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.link-card::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: #F2F2F2;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    opacity: 0;
    transition: all 0.2s;
    z-index: 1;
}

.link-card:hover::before {
    inset: 0;
    opacity: 1;
}

.link-content {
    flex: 1;
    text-align: left;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.link-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
    line-height: 130%;
}

.link-description {
    font-size: 16px;
    color: #8e8e93;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.2px;
}

.link-arrow {
    width: 18px;
    height: 18px;
    color: #8e8e93;
    flex-shrink: 0;
    margin-left: 16px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 809px) {
    body {
        padding: 84px 16px 150px;
    }

    .container {
        max-width: 100%;
    }

    .profile {
        margin-bottom: 48px;
    }

    .name {
        font-size: 28px;
        letter-spacing: -0.6px;
    }

    .subtitle {
        font-size: 16px;
    }

    .link-card {
        padding: 16px;
    }
}
