/* style/slot-games.css */

/* Base styles for the page content */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* From body background info */
  line-height: 1.6;
}

/* Section styling */
.page-slot-games__section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-slot-games__dark-section {
  background-color: #1A2E47; /* Primary brand color */
  color: #ffffff;
}

.page-slot-games__light-bg {
  background-color: #f0f0f0; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

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

.page-slot-games__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for main titles */
  line-height: 1.2;
}

.page-slot-games__paragraph {
  font-size: 17px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.page-slot-games__paragraph.page-slot-games__text-contrast-fix {
  color: #333333; /* Specific for light background sections */
}

.page-slot-games__highlight-text {
  color: #FFD700; /* Gold highlight */
  font-weight: bold;
}

.page-slot-games__highlight-text-dark {
  color: #1A2E47; /* Dark blue highlight on light background */
  font-weight: bold;
}

.page-slot-games__link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-slot-games__link:hover {
  color: #ffd700; /* Slightly darker gold on hover */
}