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

/* Base Styles & Typography */
.page-slot-games-popular-slots {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is #111 from shared.css */
}

.page-slot-games-popular-slots__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-slot-games-popular-slots__sub-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slot-games-popular-slots__paragraph,
.page-slot-games-popular-slots__list-item,
.page-slot-games-popular-slots__card-description,
.page-slot-games-popular-slots__feature-description,
.page-slot-games-popular-slots__promo-description,
.page-slot-games-popular-slots__provider-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-slot-games-popular-slots__paragraph a,
.page-slot-games-popular-slots__list-item a,
.page-slot-games-popular-slots__card-description a,
.page-slot-games-popular-slots__feature-description a,
.page-slot-games-popular-slots__promo-description a {
  color: #FFFF00; /* Yellow for links */
  text-decoration: underline;
}

.page-slot-games-popular-slots__paragraph a:hover,
.page-slot-games-popular-slots__list-item a:hover,
.page-slot-games-popular-slots__card-description a:hover,
.page-slot-games-popular-slots__feature-description a:hover,
.page-slot-games-popular-slots__promo-description a:hover {
  color: #fff;
}

/* Section Styling */
.page-slot-games-popular-slots__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-slot-games-popular-slots__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body for contrast, but still dark */
  color: #ffffff;
}

.page-slot-games-popular-slots__light-bg {
  background-color: #2a2a2a; /* Another dark background for alternating sections */
  color: #ffffff;
}

/* Hero Section */
.page-slot-games-popular-slots__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjusted for better responsiveness */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #017439; /* Fallback */
}

.page-slot-games-popular-slots__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-slot-games-popular-slots__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-slot-games-popular-slots__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-slot-games-popular-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-slot-games-popular-slots__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
}