/* style/jackpot-slots.css */
.page-jackpot-slots {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from body, but reinforce for context */
}

.page-jackpot-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-jackpot-slots__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(rgba(1, 116, 57, 0.8), rgba(1, 116, 57, 0.8)), url('[GALLERY:bg_hero:1920x1080:jackpot_slots,777_casino,abstract_pattern,green_gradient]') no-repeat center center/cover;
  color: #ffffff;
  text-align: center;
}

.page-jackpot-slots__hero-section .page-jackpot-slots__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-jackpot-slots__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-jackpot-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Specific for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jackpot-slots__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-jackpot-slots__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-jackpot-slots__btn-primary,
.page-jackpot-slots__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-jackpot-slots__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border-color: #C30808;
}

.page-jackpot-slots__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
  transform: translateY(-2px);
}

.page-jackpot-slots__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border-color: #017439;
}

.page-jackpot-slots__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #017439;
  transform: translateY(-2px);
}

.page-jackpot-slots__hero-image-wrapper {
  max-width: 800px;
  width: 100%;
  margin-top: 30px;
}

.page-jackpot-slots__hero-image {
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
}

/* General Section Styling */
.page-jackpot-slots__section {
  padding: 80px 0;
  text-align: center;
}

.page-jackpot-slots__intro-section {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-jackpot-slots__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-jackpot-slots__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-jackpot-slots__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: inherit; /* Inherit from section for contrast */
}

.page-jackpot-slots__text-block {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  line-height: 1.8;
  color: inherit;
}

/* Game Types Grid */
.page-jackpot-slots__game-types .page-jackpot-slots__section-title,
.page-jackpot-slots__game-types .page-jackpot-slots__text-block {
  color: #333333;
}

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

.page-jackpot-slots__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e0e0e0;
}

.page-jackpot-slots__card:hover {
  transform: translateY(-5px);
}

.page-jackpot-slots__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-jackpot-slots__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #017439;
}

.page-jackpot-slots__card-title a {
  color: #017439;
  text-decoration: none;
}

.page-jackpot-slots__card-title a:hover {
  text-decoration: underline;
}

.page-jackpot-slots__card-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

/* How to Play & Strategies Lists */
.page-jackpot-slots__ordered-list,
.page-jackpot-slots__unordered-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-jackpot-slots__ordered-list li,
.page-jackpot-slots__unordered-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #ffffff;
}

.page-jackpot-slots__light-bg .page-jackpot-slots__ordered-list li,
.page-jackpot-slots__light-bg .page-jackpot-slots__unordered-list li {
  background-color: #f9f9f9;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-jackpot-slots__list-item-title {
  font-size: 1.3em;
  color: #FFFF00;
  margin-bottom: 5px;
}

.page-jackpot-slots__light-bg .page-jackpot-slots__list-item-title {
  color: #017439;
}

.page-jackpot-slots__ordered-list li p,
.page-jackpot-slots__unordered-list li p {
  font-size: 1em;
  line-height: 1.7;
  color: inherit;
}

.page-jackpot-slots__ordered-list li a,
.page-jackpot-slots__unordered-list li a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-jackpot-slots__light-bg .page-jackpot-slots__ordered-list li a,
.page-jackpot-slots__light-bg .page-jackpot-slots__unordered-list li a {
  color: #017439;
}

/* Promotions Grid */
.page-jackpot-slots__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-jackpot-slots__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-jackpot-slots__promo-card:hover {
  transform: translateY(-5px);
}

.page-jackpot-slots__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-jackpot-slots__promo-card .page-jackpot-slots__card-title {
  color: #FFFF00;
  margin-bottom: 10px;
}

.page-jackpot-slots__promo-card .page-jackpot-slots__card-description {
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Why Choose Us Feature List */
.page-jackpot-slots__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}