:root {
  --primary-color: #DAA520; /* Gold */
  --secondary-color: #2F4F4F; /* Dark Green */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212; /* From body background info */
  --bg-light: #f5f5f5;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

/* Base styles for the page content - applies to .page-content .page-slot-games */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Ensure body background is respected */
  padding-bottom: 60px; /* Space before footer */
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fixed header padding */
.page-slot-games__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
}

.page-slot-games__section {
  padding: 60px 0;
}