/* Design tokens & skin-neutral variables */
:root {
  /* Core theme colors */
  --felt-green: #0a5f20;
  --gold: #d4af37;
  --red: #c13131;
  --black: #222;

  /* Outcomes */
  --win: #4CAF50;
  --blackjack: #FFD700;
  --push: #2196F3;
  --lose: #f44336;

  /* Card (default “classic”) */
  --card-bg: #fff;
  --card-index: #222;
  --card-index-red: #c13131;
  --card-border: #e5e5e5;
  --card-shadow: 2px 2px 5px rgba(0,0,0,0.3);

  --card-back-bg: linear-gradient(135deg, #1a5e1a, #0d3b0d);
  --card-back-border: 2px solid gold;
  --card-back-pattern-a: rgba(255,255,255,0.2);
  --card-back-pattern-b: rgba(255,255,255,0.1);

  /* Rarity pills */
  --rarity-common: #9e9e9e;
  --rarity-uncommon: #4caf50;
  --rarity-rare: #2196f3;
  --rarity-epic: #9c27b0;
  --rarity-legendary: #f44336; /* Changed from orange to red */
  --rarity-special: #ffd700; /* Gold color for Special rarity (same as jackpot) */
  --rarity-mega-jackpot: #ffd700; /* New gold color for Mega Jackpot */
}
