:root {
    --primary-color: #2c4069;
    --primary-hover: #1f2d4a;
    --bg-color: #1c1828;
    --card-bg: rgba(34, 31, 46, 0.85);
    --text-color: #f1f5f9;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-radius: 22px;
    --link-border-radius: 14px;
    --link-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --glow: 0 0 25px rgba(154, 177, 198, 0.5);
    
    /* Colors for links */
    --website-color: #3b82f6;
    --whatsapp-color: #25d366;
    --instagram-color-1: #f09433;
    --instagram-color-5: #bc1888;
    --linkedin-color: #0077b5;
    --facebook-color: #1877f2;
    
    /* Aurora colors */
    --aurora1: rgba(32, 135, 252, 0.3);
    --aurora2: rgba(98, 0, 234, 0.25);
    --aurora3: rgba(236, 64, 122, 0.25);
    --aurora4: rgba(32, 189, 112, 0.25);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: linear-gradient(225deg, #17151e 0%, #2c2936 100%);
    position: relative;
    overflow: hidden;
}

/* Aurora Effect */
.animated-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.aurora {
    position: absolute;
    pointer-events: none;
    filter: blur(60px);
    border-radius: 70%;
    animation: floatAnimation 15s infinite ease-in-out alternate;
}

.aurora1 {
    background: var(--aurora1);
    height: 50vh;
    width: 90vw;
    left: -20vw;
    top: 20vh;
    opacity: 0.3;
    animation-duration: 15s;
    animation-name: aurora1Move;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes aurora1Move {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(10vw, -5vh) rotate(5deg) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translate(5vw, 10vh) rotate(-2deg) scale(1);
        opacity: 0.2;
    }
}

.aurora2 {
    background: var(--aurora2);
    height: 60vh;
    width: 100vw;
    right: -20vw;
    bottom: -20vh;
    opacity: 0.2;
    animation-duration: 18s;
    animation-name: aurora2Move;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: ease-in-out;
}

@keyframes aurora2Move {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-15vw, 5vh) rotate(-5deg) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-5vw, -10vh) rotate(3deg) scale(1);
        opacity: 0.15;
    }
}

.aurora3 {
    background: var(--aurora3);
    height: 70vh;
    width: 80vw;
    left: 30vw;
    top: -30vh;
    opacity: 0.2;
    animation-duration: 20s;
    animation-name: aurora3Move;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes aurora3Move {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    33% {
        transform: translate(-10vw, 8vh) rotate(3deg) scale(1.1);
        opacity: 0.35;
    }
    66% {
        transform: translate(5vw, 15vh) rotate(-2deg) scale(1.25);
        opacity: 0.4;
    }
    100% {
        transform: translate(-5vw, 5vh) rotate(2deg) scale(1);
        opacity: 0.15;
    }
}

.aurora4 {
    background: var(--aurora4);
    height: 50vh;
    width: 70vw;
    right: 10vw;
    top: 40vh;
    opacity: 0.25;
    animation-duration: 16s;
    animation-name: aurora4Move;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: ease-in-out;
}

@keyframes aurora4Move {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(15vw, -10vh) rotate(-3deg) scale(1.15);
        opacity: 0.35;
    }
    100% {
        transform: translate(5vw, 5vh) rotate(2deg) scale(1);
        opacity: 0.2;
    }
}

/* Floating clouds effect */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 100px;
    filter: blur(40px);
}

.cloud1 {
    width: 70vw;
    height: 25vh;
    top: 15vh;
    left: -30vw;
    animation: floatingCloud 65s linear infinite;
}

.cloud2 {
    width: 50vw;
    height: 20vh;
    bottom: 20vh;
    right: -20vw;
    animation: floatingCloud 45s linear infinite reverse;
}

@keyframes floatingCloud {
    0% {
        transform: translateX(-10vw);
    }
    100% {
        transform: translateX(110vw);
    }
}

/* Stardust effect */
.stardust-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.stardust {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.3);
    animation: stardust 5s ease-in-out infinite;
    pointer-events: none;
}

/* Specific stardust particles */
.stardust:nth-child(1) { top: 15vh; left: 25vw; animation-delay: 0.2s; animation-duration: 4.5s; }
.stardust:nth-child(2) { top: 75vh; left: 85vw; animation-delay: 1.5s; animation-duration: 3.7s; }
.stardust:nth-child(3) { top: 35vh; left: 15vw; animation-delay: 0.8s; animation-duration: 5.2s; }
.stardust:nth-child(4) { top: 90vh; left: 35vw; animation-delay: 0.3s; animation-duration: 4.1s; }
.stardust:nth-child(5) { top: 10vh; left: 65vw; animation-delay: 1.7s; animation-duration: 6.3s; }
.stardust:nth-child(6) { top: 45vh; left: 75vw; animation-delay: 0.9s; animation-duration: 3.8s; }
.stardust:nth-child(7) { top: 68vh; left: 12vw; animation-delay: 2.1s; animation-duration: 5.7s; }
.stardust:nth-child(8) { top: 22vh; left: 45vw; animation-delay: 1.2s; animation-duration: 4.4s; }
.stardust:nth-child(9) { top: 81vh; left: 55vw; animation-delay: 0.6s; animation-duration: 5.9s; }
.stardust:nth-child(10) { top: 50vh; left: 90vw; animation-delay: 1.8s; animation-duration: 4.2s; }
.stardust:nth-child(11) { top: 5vh; left: 40vw; animation-delay: 2.4s; animation-duration: 3.5s; }
.stardust:nth-child(12) { top: 65vh; left: 30vw; animation-delay: 0.5s; animation-duration: 6.1s; }
.stardust:nth-child(13) { top: 38vh; left: 60vw; animation-delay: 1.1s; animation-duration: 5.3s; }
.stardust:nth-child(14) { top: 85vh; left: 20vw; animation-delay: 2.2s; animation-duration: 4.7s; }
.stardust:nth-child(15) { top: 18vh; left: 80vw; animation-delay: 0.7s; animation-duration: 3.9s; }

@keyframes stardust {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.container {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.glass-card {
    width: 94%;
    max-width: 520px;
    background-color: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    animation: fadeIn 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
}

.glass-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%
    );
}

/* Light effect on card corners */
.corner {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    filter: blur(4px);
    border-radius: 50%;
    pointer-events: none;
}

.corner-top-left {
    top: 6px;
    left: 6px;
}

.corner-top-right {
    top: 6px;
    right: 6px;
}

.corner-bottom-left {
    bottom: 6px;
    left: 6px;
}

.corner-bottom-right {
    bottom: 6px;
    right: 6px;
}

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

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.logo-container {
    width: 130px;
    height: 130px;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* animation: logoGlow 4s ease-in-out infinite alternate; */
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.5s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

.bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 90%;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.link {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.2rem;
    background-color: rgba(20, 20, 30, 0.6);
    border-radius: var(--link-border-radius);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--link-shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideInFromRight 0.5s ease-out backwards;
}

.link:nth-child(1) { animation-delay: 0.1s; }
.link:nth-child(2) { animation-delay: 0.2s; }
.link:nth-child(3) { animation-delay: 0.3s; }
.link:nth-child(4) { animation-delay: 0.4s; }
.link:nth-child(5) { animation-delay: 0.5s; }

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

.link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

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

.link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.link span {
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Remove link-hover-effect */
.link-hover-effect {
    display: none; /* Hide the element */
}

/* Specific colors for each link */
.website {
    border-left: 4px solid var(--website-color);
}
.website:hover {
    background-color: rgba(59, 130, 246, 0.15);
}
.website i {
    color: var(--website-color);
}

.whatsapp {
    border-left: 4px solid var(--whatsapp-color);
}
.whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.15);
}
.whatsapp i {
    color: var(--whatsapp-color);
}

.instagram {
    border-left: 4px solid #e1306c;
}
.instagram:hover {
    background-color: rgba(225, 48, 108, 0.15);
}
.instagram i {
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.linkedin {
    border-left: 4px solid var(--linkedin-color);
}
.linkedin:hover {
    background-color: rgba(0, 119, 181, 0.15);
}
.linkedin i {
    color: var(--linkedin-color);
}

.facebook {
    border-left: 4px solid var(--facebook-color);
}
.facebook:hover {
    background-color: rgba(24, 119, 242, 0.15);
}
.facebook i {
    color: var(--facebook-color);
}

footer {
    margin-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .glass-card {
        padding: 2rem;
        width: 92%;
    }
    
    .logo-container {
        width: 110px;
        height: 110px;
    }
    
    .bio {
        font-size: 0.95rem;
    }

    .aurora {
        opacity: 0.25;
        filter: blur(80px);
    }

    .profile h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 1.5rem;
        border-radius: 18px;
        width: 90%;
    }
    
    .links {
        gap: 0.7rem;
    }
    
    .link {
        padding: 0.85rem 1.1rem;
    }
    
    .icon-container {
        width: 32px;
        height: 32px;
        margin-right: 0.8rem;
    }
    
    .link i {
        font-size: 1rem;
    }
    
    .link span {
        font-size: 0.9rem;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
        margin-bottom: 0.8rem;
    }
    
    .aurora {
        filter: blur(100px);
    }
    
    .stardust {
        opacity: 0.5;
    }
    
    footer {
        font-size: 0.75rem;
        padding-bottom: 1rem;
    }

    .profile h1 {
        font-size: 1.4rem;
    }
} 

.profile h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
} 