/* CSS Variables - Estilo Barbie Pink */
:root {
    --pink-main: #FF1493; /* Deep Pink (Fucsia) */
    --pink-light: #FF69B4; /* Hot Pink */
    --pink-glow: rgba(255, 105, 180, 0.4);
    --pink-baby: #FFB6C1; /* Rosa pastel */
    --violet-accent: #C71585; /* Magenta vibrante */
    --bg-color: #FDF2F8; /* Fondo principal (Rosa muy claro) */
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 182, 193, 0.6);
    
    --text-main: #4A154B; /* Magenta oscuro para contraste */
    --text-sec: #8A3A69; /* Magenta medio */
    --text-tert: #B56596; /* Rosa viejo */
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    /* Patrón de puntos - Rosas */
    background-image: radial-gradient(rgba(255, 105, 180, 0.15) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0;
}

/* --- PRELOADER ANIMADO --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.heart-loader {
    position: relative;
    width: 50px;
    height: 50px;
    animation: heartbeat 1.2s infinite;
}
.heart-loader:before,
.heart-loader:after {
    content: "";
    position: absolute;
    top: 0;
    width: 25px;
    height: 40px;
    border-radius: 25px 25px 0 0;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-main));
    box-shadow: 0 0 20px var(--pink-glow);
}
.heart-loader:before {
    left: 25px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}
.heart-loader:after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Floating Background Elements (Reducidos y más movimiento) */
.orb {
    position: fixed;
    z-index: -1;
    opacity: 0.6;
    /* Asegurar que las formas no se corten */
    transform-origin: center center;
    overflow: visible;
}

/* Shapes: Hearts and Stars (Tamaño reducido 50% aprox) */
.orb-1 {
    width: 180px; 
    height: 180px; 
    background: rgba(255, 20, 147, 0.2);
    top: 10%; 
    left: 5%; 
    animation: floatWide1 25s ease-in-out infinite alternate;
    /* Star Shape */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.orb-2 {
    width: 160px; 
    height: 160px; 
    background: rgba(255, 182, 193, 0.4);
    bottom: 15%; 
    right: 8%; 
    animation: floatWide2 28s ease-in-out infinite alternate;
    /* Heart Shape (Simple polygon approximation) */
    clip-path: path('M80,24 C96,4 128,4 144,24 C164,48 152,84 80,140 C8,84 -4,48 16,24 C32,4 64,4 80,24 z');
    /* Note: Coordinates adjusted for ~160px size */
}

.orb-3 {
    width: 140px; 
    height: 140px; 
    background: rgba(255, 105, 180, 0.25);
    top: 60%; 
    left: 15%; 
    animation: floatWide3 30s ease-in-out infinite alternate;
    /* Star Shape */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.orb-4 {
    width: 120px; 
    height: 120px; 
    background: rgba(199, 21, 133, 0.15);
    top: 20%; 
    right: 20%; 
    animation: floatWide4 32s ease-in-out infinite alternate;
    /* Heart Shape */
    clip-path: path('M60,18 C72,3 96,3 108,18 C123,36 114,63 60,105 C6,63 -3,36 12,18 C24,3 48,3 60,18 z');
}

.orb-5 {
    width: 100px; 
    height: 100px; 
    background: rgba(255, 182, 193, 0.3);
    bottom: 40%; 
    left: 40%; 
    animation: floatWide1 35s ease-in-out infinite alternate-reverse;
    /* Star Shape */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}


/* Layout Container */
.container {
    width: 100%;
    max-width: 480px; /* Base mobile width slightly increased */
    padding: 40px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.container.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Links Container */
.links-container {
    display: flex;
    width: 100%;
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
}
.mobile-links, .desktop-links {
    /* Clases obsoletas, aseguramos que no interfieran */
    display: flex;
    width: 100%;
}


/* Desktop Grid Layout */
@media (min-width: 1024px) {
    .container {
        max-width: 1000px; /* Ancho máximo controlado */
        flex-direction: row;
        align-items: flex-start; /* Alineación superior */
        justify-content: center;
        gap: 80px; /* Espacio entre columnas */
        padding-top: 80px;
    }

    /* Columna Izquierda: Perfil Fijo + Links */
    .profile-column {
        flex: 0 0 350px; /* Ancho fijo ligeramente mayor para los links */
        /* Perfil fijo al hacer scroll */
        position: sticky; 
        top: 60px; 
        align-self: flex-start; /* Importante para sticky dentro de flex */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-height: calc(100vh - 80px); /* Evitar que se corte si es muy alto */
        overflow-y: auto; /* Scroll interno si es necesario en pantallas bajitas */
        scrollbar-width: none; /* Ocultar scrollbar Firefox */
    }
    .profile-column::-webkit-scrollbar { 
        display: none; /* Ocultar scrollbar Chrome/Safari */
    }

    /* Columna Derecha: Contenido (Instagram, Coming Soon) */
    .content-column {
        flex: 1; /* Toma el resto del espacio */
        max-width: 480px; /* Ancho máximo para legibilidad */
        display: flex;
        flex-direction: column;
        gap: 24px;
        /* Asegurar que el footer se quede dentro */
        padding-bottom: 40px;
        padding-top: 20px; /* Alineación visual con el perfil */
    }
}

/* Animations Setup */
.animate-down { animation: fadeSlideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.animate-up { animation: fadeSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both; }

.delay-0 { animation-delay: 0.1s; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.6s; }
.delay-6 { animation-delay: 0.7s; }
.delay-7 { animation-delay: 0.8s; }
.delay-8 { animation-delay: 0.9s; }
.delay-9 { animation-delay: 1.0s; }
.delay-10 { animation-delay: 1.1s; }
.delay-11 { animation-delay: 1.2s; }

/* 1. Badge "En Construcción" */
.status-badge {
    background: linear-gradient(135deg, var(--pink-light), var(--pink-main));
    padding: 6px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    color: #fff;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.status-badge:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.5);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulseOp 1.5s infinite;
}

.status-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* 2. Avatar */
.avatar-container {
    position: relative;
    width: 150px; /* Ligeramente más grande */
    height: 150px;
    margin-top: 15px;
    display: block; 
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avatar-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-main), var(--pink-baby), var(--pink-light), var(--pink-main));
    background-size: 300% 300%;
    animation: rotateGradient 4s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.25);
    transition: all 0.4s ease;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    border: 4px solid var(--bg-color);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avatar-container:hover {
    transform: translateY(-5px);
}
.avatar-container:hover .avatar-ring {
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
    padding: 3px; /* Efecto de borde más fino al hover */
}
.avatar-container:hover .avatar-inner img {
    transform: scale(1.15) rotate(3deg);
}

.online-dot {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: #22C55E;
    border: 4px solid var(--bg-color);
    border-radius: 50%;
    animation: pulseSize 2s infinite;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 3. Nombre y Tagline */
.profile-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.profile-name {
    font-family: var(--font-display);
    font-size: 42px; /* Más grande e impactante */
    font-weight: 700;
    background: linear-gradient(135deg, var(--violet-accent), var(--pink-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 2px 4px 10px rgba(255, 105, 180, 0.15);
    letter-spacing: -0.5px;
}

.profile-tagline {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-sec);
    letter-spacing: 0.5px;
}

/* 4. Categorías */
.categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.cat-pill {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--pink-baby);
    color: var(--pink-main);
    border-radius: 100px;
    padding: 8px 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.1);
    backdrop-filter: blur(5px);
}

.cat-pill:hover { 
    background: linear-gradient(135deg, var(--pink-light), var(--pink-main)); 
    border-color: transparent; 
    color: #fff; 
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.35);
}

/* 5. Links Sociales - Animaciones Mejoradas */
.links-container {
    perspective: 1000px; /* Profundidad para hover 3D */
}

.link-card {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 16px 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 182, 193, 0.1);
    transform-style: preserve-3d;
}

/* Efecto de brillo al pasar el mouse */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: 0.5s;
    z-index: 1;
    pointer-events: none;
}

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

.link-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--pink-light);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.25), 0 5px 15px rgba(0,0,0,0.05);
}

.link-card:active {
    transform: scale(0.98);
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.link-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.link-title {
    color: var(--text-main);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.link-subtitle {
    color: var(--text-sec);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.8;
}

.link-arrow {
    color: var(--pink-baby);
    font-size: 24px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.link-card:hover .link-arrow {
    transform: translateX(6px);
    color: var(--pink-main);
}

/* Tarjetas Individuales (Colores y Hover) */
.card-tiktok .link-icon { background: rgba(0, 0, 0, 0.05); color: #000; }
.card-tiktok:hover .link-icon { background: #000; color: #fff; transform: rotate(-8deg) scale(1.1); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

.card-ig .link-icon { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.card-ig:hover .link-icon { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: #fff; transform: rotate(8deg) scale(1.1); box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3); }

.card-twitch .link-icon { background: rgba(145, 70, 255, 0.1); color: #9146FF; }
.card-twitch:hover .link-icon { background: #9146FF; color: #fff; transform: rotate(-8deg) scale(1.1); box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3); }

.card-email .link-icon { background: rgba(255, 20, 147, 0.1); color: var(--pink-main); }
.card-email:hover .link-icon { background: var(--pink-main); color: #fff; transform: scale(1.1); box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3); }

.link-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

/* 6. Embed de Instagram - UI Mejorada */
.embed-section {
    width: 100%;
    margin-top: 24px;
}

.embed-header-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.embed-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-sec);
    font-weight: 700;
}

.embed-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,105,180,0.4), transparent);
}

/* Mockup de Instagram Card */
.instagram-card-mockup {
    background: #fff;
    border-radius: 16px; 
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.instagram-card-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.15);
}

.ig-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #fafafa;
}

.ig-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    border: 1px solid #eee;
    padding: 2px; /* Ring effect */
}
.ig-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ig-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ig-username {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.ig-location {
    font-size: 11px;
    color: #8e8e8e;
}

.ig-more {
    font-size: 20px;
    color: #262626;
    cursor: pointer;
}

.embed-container {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 200px;
    background: #fafafa;
}

.ig-footer {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ig-actions {
    display: flex;
    gap: 16px;
}

.ig-icon {
    color: #262626;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ig-icon:hover {
    transform: scale(1.2);
    color: #ed4956; 
}


/* 7. Sección "Coming Soon" */
.coming-soon-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 192, 203, 0.4)),
                repeating-linear-gradient(45deg, rgba(255,105,180,0.03) 0, rgba(255,105,180,0.03) 10px, transparent 10px, transparent 20px);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 16px;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.15);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.coming-soon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.25);
}

.cs-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--violet-accent), var(--pink-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.cs-text {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.cs-progress-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cs-track {
    width: 100%;
    height: 10px; /* Thicker */
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 182, 193, 0.5);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

.cs-fill {
    height: 100%;
    width: 25%; 
    background: linear-gradient(90deg, var(--pink-light), var(--pink-main));
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 2s infinite;
}

.cs-percent {
    font-size: 12px;
    color: var(--text-sec);
    font-weight: 700;
    background: rgba(255,255,255,0.5);
    padding: 2px 8px;
    border-radius: 10px;
}

/* 8. Footer */
.footer {
    margin-top: 40px;
    font-size: 12px;
    color: var(--text-tert);
    text-align: center;
    font-weight: 500;
    width: 100%;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer:hover {
    opacity: 1;
}

.footer span {
    color: var(--pink-main);
    display: inline-block;
    animation: pulseOp 1.5s infinite alternate;
}

.footer a {
    color: var(--pink-main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--pink-main);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Keyframes */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseOp {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(0.9); }
}

@keyframes pulseSize {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes rotateGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Nuevas animaciones de fondo con más recorrido */
@keyframes floatWide1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(80px, 60px) rotate(15deg); }
}

@keyframes floatWide2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-60px, -80px) rotate(-10deg); }
}

@keyframes floatWide3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, -50px) rotate(10deg); }
}

@keyframes floatWide4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-70px, 40px) rotate(-5deg); }
}

@keyframes shimmer {
    100% { left: 200%; }
}

/* Responsive Tweaks */
@media (max-width: 480px) {
    .container {
        padding: 30px 16px 50px;
    }
    .profile-name {
        font-size: 32px;
    }
    .avatar-container {
        width: 130px;
        height: 130px;
    }
    .online-dot {
        width: 20px;
        height: 20px;
        bottom: 5px;
        right: 5px;
    }
    
    /* Ajustar orbs para móvil aún más pequeños */
    .orb-1 { width: 120px; height: 120px; }
    .orb-2 { width: 100px; height: 100px; }
    .orb-3 { width: 90px; height: 90px; }
    .orb-4 { width: 80px; height: 80px; }
    .orb-5 { width: 70px; height: 70px; }
}

/* Centrado explícito para móvil */
@media (max-width: 1023px) {
    .container {
        align-items: center !important;
        text-align: center !important;
    }
    
    .profile-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Asegurar que el badge esté centrado */
    .status-badge {
        margin: 0 auto;
    }
}
