/* ═══════════════════════════════════════════════════════════════════
   TEMA DORADO Y NEGRO - CLIENTE
   ═══════════════════════════════════════════════════════════════════ */

/* Variables de Color */
:root {
    --gold-primary: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dark: #f59e0b;
    --amber: #f59e0b;
    --black-bg: rgba(0, 0, 0, 0.4);
    --black-hover: rgba(0, 0, 0, 0.6);
}

/* Tarjetas Base - Clickeables */
.gold-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gold-card:hover {
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
    transform: translateY(-4px);
}

.gold-card:active {
    transform: translateY(-2px);
}

/* Tarjetas Clickeables con Ícono */
.clickable-card {
    position: relative;
    overflow: hidden;
}

.clickable-card::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.clickable-card:hover::after {
    color: rgba(251, 191, 36, 0.8);
    right: 15px;
}

/* Botones Dorados */
.gold-btn {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: rgb(251, 191, 36);
    transition: all 0.2s ease;
}

.gold-btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

/* Botones Primarios Sólidos */
.gold-btn-solid {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: black;
    font-weight: 800;
    border: none;
    transition: all 0.3s ease;
}

.gold-btn-solid:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    transform: scale(1.05);
}

/* Cajas de Detalles */
.gold-detail-box {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.2s ease;
}

.gold-detail-box:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

/* Avatar/Foto con Anillo Dorado */
.gold-ring {
    ring-width: 2px;
    ring-color: rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.gold-ring:hover {
    ring-color: rgba(251, 191, 36, 0.6);
    ring-width: 3px;
}

/* Headers con Gradiente */
.gold-header {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* Texto con Gradiente Dorado */
.gold-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badges Dorados */
.gold-badge {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: rgb(251, 191, 36);
}

/* Inputs Dorados */
.gold-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: white;
    transition: all 0.2s ease;
}

.gold-input:focus {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    outline: none;
}

.gold-input::placeholder {
    color: rgba(251, 191, 36, 0.3);
}

/* Estados Vacíos */
.empty-state {
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(251, 191, 36, 0.3);
}

/* Patrón de Fondo Dorado */
.gold-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, #fbbf24 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Animaciones */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.gold-shimmer {
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.4) 0%,
        rgba(251, 191, 36, 0.1) 50%,
        rgba(0,0,0,0.4) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Eliminar colores neón */
.no-neon {
    box-shadow: none !important;
}

.no-neon:hover {
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2) !important;
}

/* Scrollbar dorado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .gold-card {
        padding: 1rem;
    }
    
    .clickable-card::after {
        font-size: 20px;
        right: 15px;
    }
}
