:root {
  /* Couleur principale : Rouge Élégant */
  --primary-color: #ee5127;
  --primary-color-rgb: 238, 81, 39;

  /* Couleur secondaire : Rouge plus clair pour complémenter */
  --secondary-color: #c64e2d;
  --secondary-color-rgb: 198, 78, 45;

  /* Couleur d’accent : Or pour une touche premium */
  --accent-color: #FFC107;
  --accent-color-rgb: 255, 193, 7;

  /* Couleur de fond : Gris anthracite pour l’élégance */
  --background-color: #2C2C2C;
  --background-color-rgb: 44, 44, 44;

  /* Texte principal : Blanc cassé pour un bon contraste */
  --text-color: #F8F9FA;
  --text-color-rgb: 248, 249, 250;

  /* Texte secondaire : Gris clair pour les sous-titres et détails */
  --text-secondary-color: #B0B0B0;
  --text-secondary-color-rgb: 176, 176, 176;

  /* Bordures et séparateurs : Gris foncé */
  --border-color: #444;
  --border-color-rgb: 68, 68, 68;

  /* Ombres : Noir léger pour un effet subtil */
  --shadow-color: rgba(0, 0, 0, 0.2);
}