/* FCUTS Raffle Styling */

/* Raffle Modal Customizations */
#raffle-modal .raffle-card-expanded {
  /* Site-specific border colors for expanded raffle cards */
}

#raffle-modal .raffle-card-collapsed {
  /* Site-specific border colors for collapsed raffle cards */
}

/* Daily Raffle Theme - Green */
.raffle-card[data-raffle-type="daily"],
.raffle-card-expanded[data-schedule-key*="daily"],
.raffle-card-collapsed[data-schedule-key*="daily"] {
  /* Daily raffle styling will be handled by raffle-ui.js with color: #10b981 */
}

/* Weekly Raffle Theme - Blue */
.raffle-card[data-raffle-type="weekly"],
.raffle-card-expanded[data-schedule-key*="weekly"],
.raffle-card-collapsed[data-schedule-key*="weekly"] {
  /* Weekly raffle styling will be handled by raffle-ui.js with color: #3b82f6 */
}

/* Monthly Raffle Theme - Gold */
.raffle-card[data-raffle-type="monthly"],
.raffle-card-expanded[data-schedule-key*="monthly"],
.raffle-card-collapsed[data-schedule-key*="monthly"] {
  /* Monthly raffle styling will be handled by raffle-ui.js with color: #f59e0b */
}

/* Raffle Buttons - Site Specific */
#raffle-modal .raffle-enter-btn {
  /* Customize enter button if needed */
}

#raffle-modal .raffle-view-btn {
  /* Customize view button if needed */
}

/* Ticket Balance Card - Site Specific */
#raffle-modal #raffle-content > .card:first-child {
  /* Customize the ticket balance gradient if needed */
  /* Default: linear-gradient(135deg, #667eea 0%, #764ba2 100%) */
}

/* Override variables for site-specific colors */
:root {
  --raffle-primary: #667eea;
  --raffle-secondary: #764ba2;
  --raffle-daily: #10b981;
  --raffle-weekly: #3b82f6;
  --raffle-monthly: #f59e0b;
}
