.page-casino-jackpots {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-casino-jackpots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-casino-jackpots__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-casino-jackpots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-casino-jackpots__hero-container {
  position: relative;
}

.page-casino-jackpots__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-casino-jackpots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-casino-jackpots__hero-button,
.page-casino-jackpots__primary-button {
  display: inline-block;
  background-color: #CC0000; /* Main brand red */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-casino-jackpots__hero-button:hover,
.page-casino-jackpots__primary-button:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #CC0000;
  transform: translateY(-3px);
}

.page-casino-jackpots__section-intro,
.page-casino-jackpots__section-why-aaajili,
.page-casino-jackpots__section-top-games,
.page-casino-jackpots__section-tips,
.page-casino-jackpots__section-winning,
.page-casino-jackpots__section-security {
  padding: 60px 0;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
}

.page-casino-jackpots__section-intro:nth-child(odd),
.page-casino-jackpots__section-top-games:nth-child(odd),
.page-casino-jackpots__section-winning:nth-child(odd) {
  background-color: #f4f4f4;
}

.page-casino-jackpots__section-title {
  font-size: 2.8em;
  color: #CC0000; /* Main brand red */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-casino-jackpots__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-casino-jackpots__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-casino-jackpots__section-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-casino-jackpots__why-list,
.page-casino-jackpots__tips-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-casino-jackpots__why-list-item,
.page-casino-jackpots__tips-list-item {
  background-color: #ffffff;
  border-left: 5px solid #CC0000; /* Main brand red accent */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  transition: transform 0.3s ease;
}

.page-casino-jackpots__why-list-item:hover,
.page-casino-jackpots__tips-list-item:hover {
  transform: translateY(-5px);
}

.page-casino-jackpots__why-list-item strong {
  color: #CC0000;
}

.page-casino-jackpots__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-jackpots__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-jackpots__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-casino-jackpots__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-casino-jackpots__game-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-casino-jackpots__game-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  padding: 0 20px;
  text-align: justify;
}

.page-casino-jackpots__game-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for game buttons */
  color: #CC0000; /* Red text on gold */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-casino-jackpots__game-button:hover {
  background-color: #CC0000; /* Red on hover */
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-jackpots__hero-title {
    font-size: 3em;
  }
  .page-casino-jackpots__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-casino-jackpots {
    padding-top: var(--header-offset, 120px);
  }
  .page-casino-jackpots__hero-title {
    font-size: 2.5em;
  }
  .page-casino-jackpots__hero-description {
    font-size: 1.1em;
  }
  .page-casino-jackpots__section-title {
    font-size: 1.8em;
  }
  .page-casino-jackpots__game-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content area image responsiveness */
  .page-casino-jackpots__container img, 
  .page-casino-jackpots__game-card img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-jackpots__game-image {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-casino-jackpots__hero-image {
    height: 400px; /* Adjust hero image height for mobile */
  }
}

@media (max-width: 480px) {
  .page-casino-jackpots__hero-title {
    font-size: 2em;
  }
  .page-casino-jackpots__hero-description {
    font-size: 1em;
  }
  .page-casino-jackpots__hero-button,
  .page-casino-jackpots__primary-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-casino-jackpots__section-title {
    font-size: 1.5em;
  }
  .page-casino-jackpots__why-list-item,
  .page-casino-jackpots__tips-list-item {
    padding: 15px;
    font-size: 0.95em;
  }
  .page-casino-jackpots__section-text {
    font-size: 0.95em;
  }
}