/* style/resources-slot-jackpot-analysis.css */

/* Base styles for the page content area */
.page-resources-slot-jackpot-analysis {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Space above footer */
}

/* Container for consistent spacing */
.page-resources-slot-jackpot-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-slot-jackpot-analysis__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-resources-slot-jackpot-analysis__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-slot-jackpot-analysis__subtitle {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-slot-jackpot-analysis__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-slot-jackpot-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

.page-resources-slot-jackpot-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Video Section */
.page-resources-slot-jackpot-analysis__video-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Darker background */
  text-align: center;
  color: #ffffff;
}

.page-resources-slot-jackpot-analysis__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  box-sizing: border-box;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-slot-jackpot-analysis__video-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.page-resources-slot-jackpot-analysis__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-resources-slot-jackpot-analysis__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.page-resources-slot-jackpot-analysis__video-link:hover .page-resources-slot-jackpot-analysis__video-overlay {
  opacity: 1;
  pointer-events: auto;
}

.page-resources-slot-jackpot-analysis__video-play-icon {
  font-size: 4em;
  color: #ffffff;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.page-resources-slot-jackpot-analysis__video-link:hover .page-resources-slot-jackpot-analysis__video-play-icon {
  transform: scale(1.1);
}

.page-resources-slot-jackpot-analysis__video-cta {
  font-size: 1.2em;
  color: #FFFF00;
  font-weight: bold;
}


/* Content Area */
.page-resources-slot-jackpot-analysis__content-area {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

.page-resources-slot-jackpot-analysis__section-title {
  font-size: 2.5em;
  color: #017439;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-slot-jackpot-analysis__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #555555;
}

.page-resources-slot-jackpot-analysis__sub-section-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-slot-jackpot-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-resources-slot-jackpot-analysis__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}