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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(-45deg, #ffffff, #f3f3f3, #ffffff, #ffffff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.profile-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.name {
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(135deg, #000000 0%, #171717 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.description {
    font-size: 16px;
    background: linear-gradient(135deg, #212121 0%, #575757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgb(251, 251, 251), rgba(174, 174, 174, 0.05));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 12px;
    text-decoration: none;
    color: #282828;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease backwards;
}

.social-link:nth-child(1) {
    animation-delay: 0.3s;
}

.social-link:nth-child(2) {
    animation-delay: 0.4s;
}

.social-link:nth-child(3) {
    animation-delay: 0.5s;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #292929 0%, #1f1f1f 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: white;
    transform: translateY(-4px) scale(1.02);
    border-color: transparent;
}

.social-link:active {
    transform: translateY(-2px) scale(0.98);
}

.icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover .icon {
    transform: rotate(360deg) scale(1.1);
}

@media (max-width: 600px) {
    .container {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .name {
        font-size: 26px;
    }

    .description {
        font-size: 14px;
    }

    .social-link {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
