/* style/slot-games-jackpot-strategy.css */
.page-slot-games-jackpot-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-slot-games-jackpot-strategy__link {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games-jackpot-strategy__link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

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

.page-slot-games-jackpot-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bb0 100%); /* Brand color gradient */
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-slot-games-jackpot-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.page-slot-games-jackpot-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(50%) brightness(0.7); No filter to alter image color */
}

.page-slot-games-jackpot-strategy__content-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Dark background for content sections */
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games-jackpot-strategy__heading {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-slot-games-jackpot-strategy__sub-heading {
  font-size: 2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-slot-games-jackpot-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}