/* style/promotions.css */
/* 
  Body background color is var(--site-bg) from shared.css.
  Assuming --site-bg is dark based on custom color #08160F,
  so text colors will be light (#F2FFF6, #A7D9B8).
*/

:root {
  --promotions-bg-dark: #08160F;
  --promotions-card-bg: #11271B;
  --promotions-text-main: #F2FFF6;
  --promotions-text-secondary: #A7D9B8;
  --promotions-border: #2E7A4E;
  --promotions-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --promotions-glow: #57E38D;
  --promotions-gold: #F2C14E;
  --promotions-divider: #1E3A2A;
  --promotions-deep-green: #0A4B2C;
}