/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container principal */
.container {
    max-width: 680px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
}

/* Foto de perfil */
.profile-image {
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

/* Nombre y bio */
.profile-name {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    animation: fadeInDown 0.6s ease-out 0.1s both;
}

.profile-bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

/* Enlaces */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-button {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out backwards;
}

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

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

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

.link-button:nth-child(4) {
    animation-delay: 0.6s;
}

.link-button:nth-child(5) {
    animation-delay: 0.7s;
}

.link-button:nth-child(6) {
    animation-delay: 0.8s;
}

.link-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.link-button:active {
    transform: translateY(-2px);
}

.link-icon {
    font-size: 24px;
}

.link-text {
    flex: 1;
}

/* Footer */
.footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    animation: fadeIn 0.6s ease-out 0.9s both;
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .profile-name {
        font-size: 26px;
    }

    .profile-bio {
        font-size: 14px;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 15px;
    }

    .link-icon {
        font-size: 20px;
    }
}