@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Parisienne&display=swap');

:root {
    --bg-violet: #8A2BE2;
    --bg-rose: #FF1493;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --text-color: #fafafa;
    --hover-scale: 1.05;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background: linear-gradient(-45deg, #8A2BE2, #FF1493, #8B008B, #C71585);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

.profile {
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: rotate(5deg) scale(1.05);
}

h1 {
    font-family: 'Parisienne', cursive;
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.tagline {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
    max-width: 320px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.5);
}

.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.2rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.link-card i {
    font-size: 1.6rem;
    width: 30px;
    text-align: center;
}

.link-card:hover {
    transform: translateY(-5px) scale(var(--hover-scale));
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation */
.link-card:nth-child(1) {
    animation-delay: 0.2s;
}

.link-card:nth-child(2) {
    animation-delay: 0.3s;
}

.link-card:nth-child(3) {
    animation-delay: 0.4s;
}

.link-card:nth-child(4) {
    animation-delay: 0.5s;
}

.link-card:nth-child(5) {
    animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 1.2rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .link-card {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}