/* style/slot-games-popular-recommendations.css */

/* Base styles for the page content */
.page-slot-games-popular-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color, #333333); /* Default text color, ensuring contrast */
  background-color: var(--background-color, #ffffff); /* Default background color */
}

.page-slot-games-popular-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-slot-games-popular-recommendations__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games-popular-recommendations__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-color, #333333);
}

.page-slot-games-popular-recommendations__paragraph--centered {
  text-align: center;
}

.page-slot-games-popular-recommendations__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Color contrast enforcement */
.page-slot-games-popular-recommendations__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-slot-games-popular-recommendations__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-slot-games-popular-recommendations__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}