/* ---------------------------------------------------------
   AVERY GAMES - BRAND IDENTITY FOR VUETIFY
   Cible directement les variables internes de Vuetify
   --------------------------------------------------------- */

:root {
  /* Injection globale pour le mode CLAIR */
  --v-theme-primary: 37, 99, 235 !important;    /* #2563eb en RGB */
  --v-theme-background: 248, 250, 252 !important; 
  --v-theme-surface: 255, 255, 255 !important;
  --v-theme-on-surface: 15, 23, 42 !important;
}

.v-theme--dark {
  /* Injection globale pour le mode SOMBRE */
  --v-theme-primary: 59, 130, 246 !important;   /* #3b82f6 en RGB */
  --v-theme-background: 11, 14, 20 !important;   /* #0b0e14 en RGB */
  --v-theme-surface: 22, 27, 34 !important;     /* #161b22 en RGB */
  --v-theme-on-surface: 248, 250, 252 !important;
}

/* On ajoute les finitions premium communes à tous les sites */
.v-application {
  font-family: 'Inter', sans-serif !important;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { 
  background: rgba(var(--v-theme-primary), 0.2); 
  border-radius: 10px; 
}
