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

body {
    font-family: 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0D1117;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #E6EDF3;
}

.container {
    width: 100%;
    max-width: 480px;
    background: #161B22;
    border-radius: 12px;
    padding: 48px 32px;
    border: 1px solid rgba(0, 191, 166, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 191, 166, 0.3);
    box-shadow: 0 0 20px rgba(0, 191, 166, 0.2);
    transition: all 0.3s ease;
}

.profile-image:hover {
    border-color: #00BFA6;
    box-shadow: 0 0 30px rgba(0, 191, 166, 0.4);
    transform: scale(1.02);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-family: 'IBM Plex Sans', 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 600;
    color: #E6EDF3;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bio {
    font-size: 16px;
    color: #8B949E;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.bio .highlight {
    color: #00BFA6;
    font-weight: 500;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 18px 24px;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(0, 191, 166, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #E6EDF3;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateX(4px);
    border-color: #00BFA6;
    background: rgba(0, 191, 166, 0.05);
    box-shadow: 0 0 20px rgba(0, 191, 166, 0.3), inset 0 0 20px rgba(0, 191, 166, 0.05);
}

.link-button:active {
    transform: translateX(2px);
}

.link-icon {
    font-size: 20px;
    line-height: 1;
    filter: drop-shadow(0 0 4px rgba(0, 191, 166, 0.5));
    transition: filter 0.3s ease;
}

.link-button:hover .link-icon {
    filter: drop-shadow(0 0 8px rgba(0, 191, 166, 0.8));
}

.link-text {
    flex: 1;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.link-button:hover .link-text {
    color: #00BFA6;
    text-shadow: 0 0 8px rgba(0, 191, 166, 0.5);
}

.footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 191, 166, 0.1);
    margin-top: 32px;
}

.footer p {
    font-size: 13px;
    color: #8B949E;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer p:hover {
    color: #00BFA6;
    transition: color 0.3s ease;
}

@media (max-width: 480px) {
    .container {
        padding: 36px 24px;
        border-radius: 10px;
    }

    .name {
        font-size: 28px;
    }

    .bio {
        font-size: 15px;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 15px;
    }
}
