@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');

body {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0f1e 50%, #1f1216 100%);
    font-family: 'Syncopate', sans-serif;
    overflow: hidden;
}

.profile-image {
    max-width: 80%;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    z-index: 2;
}

h1 {
    font-size: 8vw !important;
    letter-spacing: 0.5em;
    margin-left: 0.5em;
    position: relative;
    animation: fallDown 2s ease-in forwards, pulse 2s ease-in-out infinite 2s;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.lead {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    opacity: 0.8;
}

@keyframes fallDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
        transform: translateY(0) scale(1);
    }
    50% {
        text-shadow: 0 0 40px rgba(78, 205, 196, 0.8),
                     0 0 60px rgba(255, 107, 107, 0.4);
        transform: translateY(0) scale(1.02);
    }
    100% {
        text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .profile-image {
        max-width: 60%;
        margin-bottom: 2rem;
    }
    h1 {
        font-size: 12vw !important;
        letter-spacing: 0.3em;
        margin-left: 0.3em;
    }
} 