/* style/slot-games-progressive-jackpots.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #DC143C;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #222222;
  --border-color: #e0e0e0;
}

.page-slot-games-progressive-jackpots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-slot-games-progressive-jackpots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-progressive-jackpots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
  overflow: hidden;
}

.page-slot-games-progressive-jackpots__hero-section .page-slot-games-progressive-jackpots__container {
  position: relative;
  z-index: 2;
  color: var(--text-dark);
}

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

.page-slot-games-progressive-jackpots__main-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-slot-games-progressive-jackpots__hero-description {
  font-size: 1.25em;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-slot-games-progressive-jackpots__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-progressive-jackpots__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-progressive-jackpots__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-slot-games-progressive-jackpots__cta-button--primary:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games-progressive-jackpots__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-slot-games-progressive-jackpots__cta-button--secondary:hover {
  background: #a81030;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games-progressive-jackpots__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-slot-games-progressive-jackpots__about-section,
.page-slot-games-progressive-jackpots__types-section,
.page-slot-games-progressive-jackpots__why-choose-us-section {
  padding: 80px 0;
}

.page-slot-games-progressive-jackpots__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-slot-games-progressive-jackpots__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-slot-games-progressive-jackpots__dark-bg .page-slot-games-progressive-jackpots__section-title {
  color: var(--primary-color);
}

.page-slot-games-progressive-jackpots__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-slot-games-progressive-jackpots__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-slot-games-progressive-jackpots__text-block strong {
  color: var(--secondary-color);
}

.page-slot-games-progressive-jackpots__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-slot-games-progressive-jackpots__image-block--full-width {
  margin-top: 50px;
  text-align: center;
}

.page-slot-games-progressive-jackpots__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-slot-games-progressive-jackpots__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-slot-games-progressive-jackpots__step-item:hover {
  transform: translateY(-5px);
}

.page-slot-games-progressive-jackpots__step-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games-progressive-jackpots__step-item p {
  font-size: 1em;
  color: var(--text-light);
}

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

.page-slot-games-progressive-jackpots__card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.page-slot-games-progressive-jackpots__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games-progressive-jackpots__card-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-slot-games-progressive-jackpots__card-description {
  font-size: 1em;
  color: var(--text-dark);
}

.page-slot-games-progressive-jackpots__strategy-section {
  padding: 80px 0;
}

.page-slot-games-progressive-jackpots__strategy-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games-progressive-jackpots__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-slot-games-progressive-jackpots__strategy-item h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games-progressive-jackpots__strategy-item p {
  font-size: 1em;
}

.page-slot-games-progressive-jackpots__why-choose-us-section {
  padding: 80px 0;
}

.page-slot-games-progressive-jackpots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games-progressive-jackpots__feature-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.page-slot-games-progressive-jackpots__feature-card:hover {
  transform: translateY(-5px);
}

.page-slot-games-progressive-jackpots__feature-card img {
  max-width: 100%;
  height: auto;
  width: 200px; /* Example fixed width, will be overridden by max-width: 100% on mobile */
   /* Example fixed height, will be overridden by height: auto on mobile */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 4px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-progressive-jackpots__feature-title {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-slot-games-progressive-jackpots__feature-card p {
  font-size: 0.95em;
}

.page-slot-games-progressive-jackpots__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--text-light);
}

.page-slot-games-progressive-jackpots__cta-section .page-slot-games-progressive-jackpots__section-title {
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games-progressive-jackpots__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-games-progressive-jackpots__main-title {
    font-size: 3em;
  }
  .page-slot-games-progressive-jackpots__section-title {
    font-size: 2em;
  }
  .page-slot-games-progressive-jackpots__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games-progressive-jackpots__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-progressive-jackpots {
    padding-top: var(--header-offset, 120px) !important;
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games-progressive-jackpots__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-slot-games-progressive-jackpots__hero-section {
    padding: 60px 0;
  }
  .page-slot-games-progressive-jackpots__main-title {
    font-size: 2.2em;
  }
  .page-slot-games-progressive-jackpots__hero-description {
    font-size: 1em;
  }
  .page-slot-games-progressive-jackpots__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-progressive-jackpots__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games-progressive-jackpots__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games-progressive-jackpots__about-section,
  .page-slot-games-progressive-jackpots__how-it-works-section,
  .page-slot-games-progressive-jackpots__types-section,
  .page-slot-games-progressive-jackpots__strategy-section,
  .page-slot-games-progressive-jackpots__why-choose-us-section,
  .page-slot-games-progressive-jackpots__cta-section {
    padding: 40px 0;
  }
  .page-slot-games-progressive-jackpots__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-slot-games-progressive-jackpots__image-block img,
  .page-slot-games-progressive-jackpots__hero-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-slot-games-progressive-jackpots__features-grid,
  .page-slot-games-progressive-jackpots__card-grid,
  .page-slot-games-progressive-jackpots__steps-grid,
  .page-slot-games-progressive-jackpots__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games-progressive-jackpots__feature-card img {
    
    height: auto !important;
  }
}

/* Ensure all images are responsive and do not cause overflow */
.page-slot-games-progressive-jackpots img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-slot-games-progressive-jackpots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games-progressive-jackpots__section,
  .page-slot-games-progressive-jackpots__card,
  .page-slot-games-progressive-jackpots__container,
  .page-slot-games-progressive-jackpots__hero-section,
  .page-slot-games-progressive-jackpots__about-section,
  .page-slot-games-progressive-jackpots__how-it-works-section,
  .page-slot-games-progressive-jackpots__types-section,
  .page-slot-games-progressive-jackpots__strategy-section,
  .page-slot-games-progressive-jackpots__why-choose-us-section,
  .page-slot-games-progressive-jackpots__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}