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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #2a51bd 0%, #3110aa 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.profile-section {
    margin-bottom: 30px;
    animation: slideIn 1s ease-out 0.2s both;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-name {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

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

.link-item {
    display: block;
    padding: 16px 24px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.6s ease-out both;
    backdrop-filter: blur(10px);
}

.link-item:nth-child(1) {
    background: linear-gradient(135deg, #1f2937, #374151);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.4);
    animation-delay: 0.3s;
}

.link-item:nth-child(2) {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
    animation-delay: 0.4s;
}

.link-item:nth-child(3) {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.4);
    animation-delay: 0.5s;
}

.link-item:nth-child(4) {
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    animation-delay: 0.6s;
}

.link-item:nth-child(5) {
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
    box-shadow: 0 8px 20px rgba(12, 74, 110, 0.4);
    animation-delay: 0.7s;
}

.link-item:nth-child(6) {
    background: linear-gradient(135deg, #1f2937, #4b5563);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.4);
    animation-delay: 0.8s;
}

.link-item:nth-child(7) {
    background: linear-gradient(135deg, #312e81, #4338ca);
    box-shadow: 0 8px 20px rgba(49, 46, 129, 0.4);
    animation-delay: 0.9s;
}

.link-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

.link-item i {
    margin-right: 12px;
    font-size: 18px;
}

.footer {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    animation: fadeIn 1.2s ease-out 1s both;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-bio {
        font-size: 14px;
    }
    
    .link-item {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Efeito de partículas de fundo */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}