/* public/css/dashboard.css */
/* ============================================
   ESTILOS ESPECÍFICOS DE LOS PANELES
   ============================================ */

.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--text-muted);
}

/* Estadísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-primary);
}

.stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Acciones */
.dashboard-actions {
    margin-bottom: 2rem;
}

/* Secciones */
.dashboard-section {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.dashboard-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--gold-primary);
    padding-left: 0.8rem;
}

/* Lista de torneos */
.torneos-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.torneo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.torneo-item:hover {
    background: rgba(255,215,0,0.05);
}

.torneo-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.torneo-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.torneo-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.tab {
    background: none;
    border: none;
    padding: 0.5rem 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    color: var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
}

.tab:hover {
    color: var(--gold-primary);
}

/* Reseñas */
.resenas-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resena-item {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.resena-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.resena-header strong {
    color: var(--gold-primary);
}

/* Barra de progreso */
.barra-progreso {
    background: var(--bg-secondary);
    border-radius: 10px;
    height: 8px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progreso {
    background: var(--gradient-gold);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .torneo-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}