:root {
    --primary-color: #ff5e00; /* Naranja Kitsune */
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.main-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header & Avatar */
.profile {
    text-align: center;
    margin-bottom: 40px;
}



.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0f172a;
}

h1 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; }
.bio { color: var(--text-dim); font-size: 0.95rem; margin-top: 5px; }

/* Links */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center; /* Texto centrado */
    padding: 18px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    backdrop-filter: blur(10px); /* Efecto Glassmorphism */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.mini-thumb {
    position: absolute;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

/* Link Destacado */
.featured {
    background: white;
    color: #0f172a;
    border: none;
    animation: pulse 2s infinite;
}

.featured:hover {
    background: #f1f5f9;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 94, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 0, 0); }
}

.footer {
    margin-top: auto;
    padding-top: 50px;
    color: var(--text-dim);
    font-size: 0.8rem;
    background-color: var(--bg-gradient) ;
}