/* ===== TEMA BASE ===== */
:root {
  /* Estas variables están duplicadas de base.css para compatibilidad */
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  /* Estados */
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --info-color: #3498db;

  /* Valores por defecto */
  --primary-color: #3498db;
  --secondary-color: #e74c3c;
  --gradient: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  --accent-color: #9b59b6;
}

/* ===== TEMA VOLEIBOL ===== */
.theme-voleibol {
  --primary-color: #3498db;
  --secondary-color: #e74c3c;
  --gradient: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  --accent-color: #9b59b6;
}

/* ===== TEMA MINIVOLEY ===== */
.theme-minivoley {
  --primary-color: #9b59b6;
  --secondary-color: #e74c3c;
  --gradient: linear-gradient(135deg, #6a11cb, #2575fc);
  --accent-color: #ffd700;
}

/* ===== TEMA DOMINÓ ===== */
.theme-domino {
  --primary-color: #2ecc71;
  --secondary-color: #e74c3c;
  --gradient: linear-gradient(135deg, #1a5276, #27ae60, #f39c12);
  --accent-color: #34495e;
}

/* ===== TEMA FÚTBOL SALA ===== */
.theme-futbol-sala {
  --primary-color: #2ecc71;
  --secondary-color: #e74c3c;
  --gradient: linear-gradient(135deg, #1a5276, #27ae60, #f39c12);
  --accent-color: #3498db;
}

/* ===== TEMA PRINCIPAL ===== */
.theme-main {
  --primary-color: #3498db;
  --secondary-color: #e74c3c;
  --gradient: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  --accent-color: #9b59b6;
}
/* ===== TEMA FÚTBOL 7 ===== */
.theme-futbol-siete {
  --primary-color: #1e8449;
  --secondary-color: #f39c12;
  --gradient: linear-gradient(135deg, #1e8449, #27ae60, #f39c12);
  --accent-color: #f39c12;
}
/* ===== TEMA IMPOSTOR ===== */
.theme-impostor {
  --primary-color: #9c27b0;
  --secondary-color: #673ab7;
  --accent-color: #ff4081;
  --gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

/* ===== TEMA DADOS ===== */
.theme-dados {
  --primary-color: #9b59b6;
  --secondary-color: #4ecdc4;
  --gradient: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  --accent-color: #ff6b35;
}

/* ===== TEMA PÁDEL ===== */
.theme-padel {
  --primary-color: #2c3e50;
  --secondary-color: #e74c3c;
  --gradient: linear-gradient(135deg, #2c3e50, #3498db, #e74c3c);
  --accent-color: #f39c12;
}

/* ===== TEMA MONEDA ===== */
.theme-moneda {
  --primary-color: #f39c12;
  --secondary-color: #bdc3c7;
  --gradient: linear-gradient(135deg, #2c3e50, #34495e, #7f8c8d);
  --accent-color: #f1c40f;
}
/* ===== TEMA TENIS POR PAREJAS ===== */
.theme-tenis-parejas {
  --primary-color: #9b59b6;
  --secondary-color: #2ecc71;
  --gradient: linear-gradient(135deg, #9b59b6, #3498db, #2ecc71);
  --accent-color: #ffd700;
}
/* ===== TEMA CUBILETE ===== */
.theme-cubilete {
  --primary-color: #8B4513;
  --secondary-color: #D2691E;
  --gradient: linear-gradient(135deg, #8B4513, #D2691E, #CD853F);
  --accent-color: #FFD700;
}


/* Aplicar el gradiente al body según el tema */
body.theme-voleibol {
  background: var(--gradient);
}
body.theme-minivoley {
  background: var(--gradient);
}
body.theme-domino {
  background: var(--gradient);
}
body.theme-futbol-sala {
  background: var(--gradient);
}
body.theme-main {
  background: var(--gradient);
}
body.theme-futbol-siete {
  background: var(--gradient);
}
body.theme-impostor {
  background: var(--gradient);
}
body.theme-dados {
  background: var(--gradient);
}
body.theme-padel {
  background: var(--gradient);
}
body.theme-moneda {
  background: var(--gradient);
}
body.theme-cubilete {
  background: var(--gradient);
}
body.theme-tenis-parejas {
  background: var(--gradient);
}

