/* style/slot-games.css */

/* Custom Properties based on Color Palette */
:root {
  --page-slot-games-primary-color: #11A84E;
  --page-slot-games-secondary-color: #22C768;
  --page-slot-games-bg-color: #08160F; /* Background */
  --page-slot-games-card-bg: #11271B; /* Card BG */
  --page-slot-games-text-main: #F2FFF6; /* Text Main */
  --page-slot-games-text-secondary: #A7D9B8; /* Text Secondary */
  --page-slot-games-border-color: #2E7A4E; /* Border */
  --page-slot-games-glow-color: #57E38D; /* Glow */
  --page-slot-games-gold-color: #F2C14E; /* Gold */
  --page-slot-games-divider-color: #1E3A2A; /* Divider */
  --page-slot-games-deep-green: #0A4B2C; /* Deep Green */
  --page-slot-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
}

/* Base styles for the page content, ensuring dark background and light text */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--page-slot-games-text-main); /* Default text color for the page */
  background-color: var(--page-slot-games-bg-color); /* Default background color for the page */
  line-height: 1.6;
}

/* Ensure all text elements inherit the correct color */
.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3,
.page-slot-games h4,
.page-slot-games h5,
.page-slot-games h6 {
  color: var(--page-slot-games-text-main);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games p,
.page-slot-games li {
  color: var(--page-slot-games-text-secondary); /* Using secondary text color for body copy */
  margin-bottom: 15px;
}

.page-slot-games a {
  color: var(--page-slot-games-gold-color); /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games a:hover {
  color: var(--page-slot-games-glow-color); /* Lighter green on hover */
  text-decoration: underline;
}

/* Section common styles */
.page-slot-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-slot-games__dark-bg {
  background-color: var(--page-slot-games-bg-color);
  color: var(--page-slot-games-text-main);
}