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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.background-gradient {
    position: fixed;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255, 100, 150, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 40% 90%, rgba(100, 200, 255, 0.4) 0%, transparent 40%);
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5%, 5%) rotate(120deg);
    }
    66% {
        transform: translate(-5%, 5%) rotate(240deg);
    }
}

.container {
    max-width: 680px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease;
}

.profile-image {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: #ffffff;
}

.bio {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    line-height: 1.5;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.link-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.link-button span {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.link-button small {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

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

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

.link-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(120, 119, 198, 0.2);
}

.link-button:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

footer {
    text-align: center;
    animation: fadeIn 0.6s ease 0.3s both;
}

footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.links .link-button:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s both; }
.links .link-button:nth-child(2) { animation: fadeInUp 0.6s ease 0.15s both; }
.links .link-button:nth-child(3) { animation: fadeInUp 0.6s ease 0.2s both; }
.links .link-button:nth-child(4) { animation: fadeInUp 0.6s ease 0.25s both; }
.links .link-button:nth-child(5) { animation: fadeInUp 0.6s ease 0.3s both; }
.links .link-button:nth-child(6) { animation: fadeInUp 0.6s ease 0.35s both; }
.links .link-button:nth-child(7) { animation: fadeInUp 0.6s ease 0.4s both; }

@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .bio {
        font-size: 0.9375rem;
    }

    .link-button {
        font-size: 0.8125rem;
    }
}

::selection {
    background: rgba(120, 119, 198, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(120, 119, 198, 0.3);
    color: #ffffff;
}

html {
    scroll-behavior: smooth;
}
