/* style/casino.css */

/* Custom CSS Variables */
:root {
  --primary-color: #017439; /* Brand green */
  --secondary-color: #C30808; /* Register/Login red */
  --text-color-light: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-accent: #FFFF00; /* Register/Login font yellow */
  --bg-light: #FFFFFF;
  --bg-dark: #017439; /* Using primary color for dark sections */
  --border-color: #e0e0e0;
}

/* Base styles for the casino page content */
.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light backgrounds */
  background-color: var(--bg-light); /* Default body background is white */
}

/* Fixed Header Offset - desktop and mobile */
.page-casino__hero-section,
.page-casino__introduction-section { /* Apply to first visible section if hero is not full page */
  padding-top: var(--header-offset, 120px);
}