/* ============================================
   DASHBOARD SIMPLE - REEMPLAZO DE WIDGETS
   ============================================ */

.dashboard-simple-container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   ESTADÍSTICAS (MÁS CHICAS)
   ============================================ */

.stats-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card-simple {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    min-height: 70px;
}

.stat-card-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.stat-icon-simple {
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.9;
}

.stat-content-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-value-simple {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 2px;
}

.stat-label-simple {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.stat-desc-simple {
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* ============================================
   CONTENIDO EN 2 COLUMNAS
   ============================================ */

.content-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.content-column-simple {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ============================================
   SECCIONES
   ============================================ */

.section-simple {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.section-simple:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.section-header-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.section-header-simple h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
    transition: color 0.3s;
}

.section-header-simple h3[style*="cursor: pointer"]:hover {
    color: var(--accent);
}

.section-count-simple {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   GRID DE USUARIOS
   ============================================ */

.users-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.user-card-simple {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.user-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.user-card-simple:not(.user-card-premium):not(.user-card-premium-verificado):not(.user-card-blocked):hover {
    border-color: var(--accent);
}

/* Borde dorado MUY BRILLANTE para usuarios premium */
.user-card-simple.user-card-premium,
.users-grid-simple .user-card-simple.user-card-premium,
.section-simple .users-grid-simple .user-card-simple.user-card-premium {
    border: 4px solid #f59e0b !important;
    border-radius: 12px !important;
    box-shadow:
        0 0 20px rgba(245, 158, 11, 0.8),
        0 0 40px rgba(245, 158, 11, 0.5),
        0 0 60px rgba(245, 158, 11, 0.3),
        inset 0 0 20px rgba(245, 158, 11, 0.1) !important;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.12) 100%) !important;
    animation: pulse-gold 2s ease-in-out infinite !important;
}

.user-card-simple.user-card-premium:hover,
.users-grid-simple .user-card-simple.user-card-premium:hover,
.section-simple .users-grid-simple .user-card-simple.user-card-premium:hover {
    border: 4px solid #f59e0b !important;
    box-shadow:
        0 6px 20px rgba(245, 158, 11, 0.7),
        0 0 50px rgba(245, 158, 11, 0.6),
        0 0 80px rgba(245, 158, 11, 0.4) !important;
    transform: translateY(-4px) !important;
}

.user-card-simple.user-card-premium-verificado,
.users-grid-simple .user-card-simple.user-card-premium-verificado,
.section-simple .users-grid-simple .user-card-simple.user-card-premium-verificado {
    border: 4px solid #fbbf24 !important;
    border-radius: 12px !important;
    box-shadow:
        0 0 25px rgba(251, 191, 36, 0.9),
        0 0 50px rgba(251, 191, 36, 0.6),
        0 0 75px rgba(251, 191, 36, 0.4),
        inset 0 0 25px rgba(251, 191, 36, 0.15) !important;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.15) 100%) !important;
    animation: pulse-gold-verified 2s ease-in-out infinite !important;
}

.user-card-simple.user-card-premium-verificado:hover,
.users-grid-simple .user-card-simple.user-card-premium-verificado:hover,
.section-simple .users-grid-simple .user-card-simple.user-card-premium-verificado:hover {
    border: 4px solid #fbbf24 !important;
    box-shadow:
        0 6px 24px rgba(251, 191, 36, 0.8),
        0 0 60px rgba(251, 191, 36, 0.7),
        0 0 100px rgba(251, 191, 36, 0.5) !important;
    transform: translateY(-4px) !important;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(245, 158, 11, 0.8),
            0 0 40px rgba(245, 158, 11, 0.5),
            0 0 60px rgba(245, 158, 11, 0.3),
            inset 0 0 20px rgba(245, 158, 11, 0.1);
    }

    50% {
        box-shadow:
            0 0 30px rgba(245, 158, 11, 0.9),
            0 0 60px rgba(245, 158, 11, 0.6),
            0 0 90px rgba(245, 158, 11, 0.4),
            inset 0 0 30px rgba(245, 158, 11, 0.15);
    }
}

@keyframes pulse-gold-verified {

    0%,
    100% {
        box-shadow:
            0 0 25px rgba(251, 191, 36, 0.9),
            0 0 50px rgba(251, 191, 36, 0.6),
            0 0 75px rgba(251, 191, 36, 0.4),
            inset 0 0 25px rgba(251, 191, 36, 0.15);
    }

    50% {
        box-shadow:
            0 0 35px rgba(251, 191, 36, 1),
            0 0 70px rgba(251, 191, 36, 0.7),
            0 0 105px rgba(251, 191, 36, 0.5),
            inset 0 0 35px rgba(251, 191, 36, 0.2);
    }
}

/* Tarjetas bloqueadas - Usuario Premium */
.user-card-blocked-premium {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
    cursor: pointer;
}

.user-card-blocked-premium:hover {
    box-shadow: 0 6px 24px rgba(251, 191, 36, 0.6) !important;
    transform: translateY(-4px);
}

/* Tarjetas bloqueadas - Usuario Gratis */
.user-card-blocked-gratis {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.08) 0%, rgba(80, 80, 80, 0.08) 100%);
    border: 3px solid #888 !important;
    box-shadow: 0 0 16px rgba(100, 100, 100, 0.3) !important;
    cursor: pointer;
}

.user-card-blocked-gratis:hover {
    border-color: #999 !important;
    box-shadow: 0 6px 24px rgba(100, 100, 100, 0.4) !important;
    transform: translateY(-4px);
}

.blocked-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 4px;
}

.blocked-time {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
}

.user-avatar-wrapper-simple {
    position: relative;
    width: 80px;
    height: 80px;
}

.user-avatar-simple {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
}

.status-online-simple {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 3px solid var(--card-bg);
    border-radius: 50%;
}

.user-info-simple {
    flex: 1;
    width: 100%;
}

.user-name-simple {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.2;
}

.user-type-simple {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 4px;
    text-align: center;
}

.user-age-simple {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 4px;
    text-align: center;
}

.user-badge-simple {
    font-size: 0.9rem;
    line-height: 1;
}

.badge-verificado {
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
}

.badge-premium {
    filter: drop-shadow(0 0 4px rgba(236, 72, 153, 0.6));
}

.badge-siguiendo {
    font-size: 0.85rem;
}

.badge-escritor {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.6));
}

.badge-escritor:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8));
}

.user-location-simple {
    font-size: 0.8rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-visit-time {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 2px;
}

.btn-follow-simple {
    width: 100%;
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-follow-simple:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

/* ============================================
   ESTADO VACÍO
   ============================================ */

.empty-state-simple {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.empty-state-simple p {
    margin: 0;
    font-size: 1rem;
}



/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .content-grid-simple {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-grid-simple {
        grid-template-columns: 1fr;
    }
}

/* MÓVIL: Menos de 480px */
@media (max-width: 480px) {
    .dashboard-simple-container * {
        box-sizing: border-box !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .dashboard-simple-container {
        padding: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Estadísticas: 2 por fila, compactas horizontales */
    .dashboard-simple-container .stats-grid-simple {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
    }

    .dashboard-simple-container .stat-card-simple {
        display: flex !important;
        padding: 8px 4px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 4px !important;
        min-height: 70px !important;
        /* Altura fija pequeña para evitar estiramiento */
        height: 70px !important;
        justify-content: center !important;
        border-radius: 10px !important;
        background: var(--card-bg) !important;
        border: 1px solid var(--border) !important;
    }

    .dashboard-simple-container .stat-icon-simple {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
        display: block !important;
    }

    .dashboard-simple-container .stat-content-simple {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .dashboard-simple-container .stat-value-simple {
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        margin: 2px 0 !important;
    }

    .dashboard-simple-container .stat-label-simple {
        font-size: 0.55rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        opacity: 0.8 !important;
    }

    .dashboard-simple-container .stat-desc-simple {
        display: none !important;
    }

    .content-grid-simple {
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .content-column-simple {
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-simple {
        padding: 10px !important;
        border-radius: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .section-header-simple {
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        margin-bottom: 10px !important;
        padding-bottom: 8px !important;
    }

    .section-header-simple h3 {
        font-size: 0.95rem !important;
        flex: 1 !important;
    }

    .section-count-simple {
        font-size: 0.75rem !important;
        padding: 2px 8px !important;
        flex-shrink: 0 !important;
    }

    /* Perfiles: 3 por fila en móvil */
    .users-grid-simple {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .user-card-simple {
        padding: 6px !important;
        gap: 4px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .user-avatar-wrapper-simple,
    .user-avatar-simple {
        width: 55px !important;
        height: 55px !important;
    }

    .status-online-simple {
        width: 10px !important;
        height: 10px !important;
        border-width: 2px !important;
    }

    .user-name-simple {
        font-size: 0.7rem !important;
        margin-bottom: 2px !important;
        word-break: break-word !important;
    }

    .user-badge-simple {
        font-size: 0.75rem !important;
    }

    .user-type-simple,
    .user-age-simple {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }

    .dashboard-simple-container .user-location-simple {
        font-size: 0.6rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        max-width: 80px !important;
        display: block !important;
    }

    .user-visit-time {
        font-size: 0.6rem !important;
    }

    .btn-follow-simple {
        padding: 4px 6px !important;
        font-size: 0.65rem !important;
    }

    .blocked-badge {
        padding: 3px 5px !important;
        font-size: 0.55rem !important;
    }

    .blocked-time {
        font-size: 0.6rem !important;
    }

    .empty-state-simple {
        padding: 20px 10px !important;
    }

    .empty-state-simple p {
        font-size: 0.8rem !important;
    }
}


/* ============================================
   HERO SLIDER NETFLIX STYLE (FIXED & IMPROVED)
   ============================================ */
.dashboard-hero-slider {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slider-container {
    height: 380px;
    /* Altura ideal desktop */
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .slider-container {
        height: 240px;
    }
}

/* RESET Y FORZADO DE LAYOUT */
.slider-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    height: 100% !important;
    width: 100% !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slide-item {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: block !important;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
    opacity: 0.9;
    transition: transform 1.5s ease;
}

.slide-item:hover .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(10, 10, 15, 1) 0%,
            rgba(10, 10, 15, 0.6) 40%,
            transparent 80%);
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.slide-type {
    display: inline-block;
    background: var(--accent);
    color: white !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: white !important;
    margin: 0 0 12px 0;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    max-width: 80%;
}

.slide-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 650px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

.slide-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    right: 30px;
    display: flex;
    align-items: center;
    /* CRÍTICO: Evita estiramiento vertical */
    justify-content: center;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
    /* Mejoramos UX: clic pasa a dots */
}

.slider-dots .dot {
    pointer-events: auto;
    /* Reactivar clic en dots */
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.dot.active {
    width: 30px;
    background: var(--accent);
    border-radius: 4px;
    opacity: 1;
}

.slider-nav {
    display: none !important;
}

@media (max-width: 768px) {
    .slider-container {
        height: 250px !important;
        overflow: hidden !important;
        position: relative !important;
        display: block !important;
    }

    .dashboard-hero-slider {
        margin-bottom: 20px !important;
    }

    .slider-container::-webkit-scrollbar {
        display: none;
    }

    .slide-title {
        font-size: 1.5rem;
        max-width: 100%;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .slide-description {
        display: none !important;
    }

    .slide-overlay {
        padding: 15px;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                transparent 100%) !important;
        justify-content: flex-end;
    }

    .slide-meta {
        font-size: 0.75rem;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 35px;
        /* Más espacio para los dots */
        opacity: 0.9;
    }

    .slide-meta span {
        background: rgba(0, 0, 0, 0.3);
        padding: 2px 8px;
        border-radius: 6px;
        backdrop-filter: blur(4px);
    }

    .slider-dots {
        bottom: 12px;
        right: 50%;
        transform: translateX(50%);
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    /* Puntos más grandes en móvil */
    .dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.4);
        border: 1px solid rgba(0, 0, 0, 0.3);
    }

    .dot.active {
        background: var(--accent);
        width: 14px;
        height: 14px;
        box-shadow: 0 0 10px var(--accent);
    }

    .slider-nav {
        display: none;
    }
}

/* ============================================
   ESTILOS DE TARJETAS UNIFICADAS Y GRIDS
   ============================================ */
.users-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .users-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Sección a lo ancho para sugerencias */
.full-width-section-simple {
    width: 100%;
    margin-bottom: 30px;
}

.full-width-section-simple .users-grid-simple {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1200px) {
    .full-width-section-simple .users-grid-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .full-width-section-simple .users-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

.profile-card-unified {
    background: var(--card-bg, #1e1e2e);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.profile-card-unified:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Cuadrado */
    overflow: hidden;
    background: #111;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
}

.card-badge-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.card-badge {
    position: absolute;
    pointer-events: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    font-size: 1.2rem;
    cursor: help;
}

.badge-tl {
    top: 8px;
    left: 8px;
}

.badge-tr {
    top: 8px;
    right: 8px;
}

.status-badge-img {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #10b981;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(2px);
    z-index: 3;
}

.card-footer {
    padding: 10px 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.card-footer.premium-footer {
    background: #fcd34d !important;
    color: #000 !important;
    border-top: none !important;
}

.card-footer.premium-footer .card-username,
.card-footer.premium-footer .card-meta,
.card-footer.premium-footer .card-location {
    color: #000 !important;
}

.card-footer.standard-footer {
    background: #2d2d3a !important;
    /* Gris oscuro base */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff !important;
}

/* Fix para modo claro (soportando ambas clases comunes) */
[data-theme="light"] .card-footer.standard-footer,
.light-theme .card-footer.standard-footer {
    background: #e5e7eb !important;
    /* Gris claro */
    color: #1f2937 !important;
    /* Texto oscuro */
}

[data-theme="light"] .card-footer.standard-footer .card-username,
.light-theme .card-footer.standard-footer .card-username,
[data-theme="light"] .card-footer.standard-footer .card-meta,
.light-theme .card-footer.standard-footer .card-meta {
    color: #1f2937 !important;
}

.locked-card-label {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}

.card-username {
    font-weight: 800;
    font-size: 0.9rem;
    color: inherit;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.card-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: inherit;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.card-location {
    font-size: 0.7rem;
    color: inherit;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.8;
}

.border-premium {
    border: 2px solid #ffd700 !important;
}

.border-verified {
    border: 2px solid #8b5cf6 !important;
}

.border-standard {
    border: 2px solid #4b5563 !important;
    /* Gris plateado oscuro */
}

[data-theme="light"] .border-standard {
    border: 2px solid #d1d5db !important;
    /* Gris plateado claro */
}