.page-resources-what-is-slot-jackpot {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default for dark body background */
  background-color: #000000; /* Body background from shared.css */
}

.page-resources-what-is-slot-jackpot__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-what-is-slot-jackpot__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  text-align: center;
  overflow: hidden;
}

.page-resources-what-is-slot-jackpot__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-resources-what-is-slot-jackpot__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-what-is-slot-jackpot__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #ffffff;
}

.page-resources-what-is-slot-jackpot__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-what-is-slot-jackpot__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-what-is-slot-jackpot__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-resources-what-is-slot-jackpot__btn-primary,
.page-resources-what-is-slot-jackpot__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-what-is-slot-jackpot__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-resources-what-is-slot-jackpot__btn-primary:hover {
  background-color: #e02f2f;
  border-color: #e02f2f;
}

.page-resources-what-is-slot-jackpot__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-what-is-slot-jackpot__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

/* Content Sections */
.page-resources-what-is-slot-jackpot__content-section {
  padding: 60px 0;
}

.page-resources-what-is-slot-jackpot__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-what-is-slot-jackpot__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-what-is-slot-jackpot__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-what-is-slot-jackpot__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-what-is-slot-jackpot__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Image and Text Layout */
.page-resources-what-is-slot-jackpot__image-text-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-resources-what-is-slot-jackpot__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-resources-what-is-slot-jackpot__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.page-resources-what-is-slot-jackpot__text-content {
  flex: 2;
}

/* Card Grid */
.page-resources-what-is-slot-jackpot__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-what-is-slot-jackpot__card {
  background: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-what-is-slot-jackpot__card:hover {
  transform: translateY(-5px);
}

.page-resources-what-is-slot-jackpot__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-resources-what-is-slot-jackpot__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017439;
}

.page-resources-what-is-slot-jackpot__card-description {
  font-size: 1em;
  color: #555555;
}

/* Game List */
.page-resources-what-is-slot-jackpot__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-what-is-slot-jackpot__game-item {
  background: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.page-resources-what-is-slot-jackpot__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-resources-what-is-slot-jackpot__game-name {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017439;
}

.page-resources-what-is-slot-jackpot__game-description {
  font-size: 0.95em;
  color: #555555;
}

/* CTA Sections */
.page-resources-what-is-slot-jackpot__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: rgba(1, 116, 57, 0.1); /* Light green tint */
  border-radius: 10px;
}

.page-resources-what-is-slot-jackpot__cta-text {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-resources-what-is-slot-jackpot__cta-final {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Video Section */
.page-resources-what-is-slot-jackpot__image-video-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-resources-what-is-slot-jackpot__video-wrapper {
  flex: 1;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
  min-width: 300px;
}