.page-casino-games-jackpot-games {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #0d0d0d;
}

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

.page-casino-games-jackpot-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-casino-games-jackpot-games__section:nth-of-type(even) {
  background-color: #1a1a1a;
}

.page-casino-games-jackpot-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-casino-games-jackpot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000;
  border-radius: 2px;
}

.page-casino-games-jackpot-games__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-casino-games-jackpot-games__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #ccc;
}

/* Hero Section */
.page-casino-games-jackpot-games__hero {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #f0f0f0;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-casino-games-jackpot-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark,subtle]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-casino-games-jackpot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-casino-games-jackpot-games__hero-title {
  font-size: 4em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-casino-games-jackpot-games__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #e0e0e0;
}

.page-casino-games-jackpot-games__hero-image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
}

.page-casino-games-jackpot-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.page-casino-games-jackpot-games__hero-image:hover {
  transform: translateY(-5px);
}

/* CTA Button General */
.page-casino-games-jackpot-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-casino-games-jackpot-games__cta-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #FFD700;
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.6);
  transform: translateY(-3px);
}

.page-casino-games-jackpot-games__cta-button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.page-casino-games-jackpot-games__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-casino-games-jackpot-games__cta-button--large {
  padding: 20px 45px;
  font-size: 1.4em;
}

/* Content Wrapper with Image */
.page-casino-games-jackpot-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
  margin-top: 40px;
}

.page-casino-games-jackpot-games__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-casino-games-jackpot-games__text-content {
  flex: 1;
}

.page-casino-games-jackpot-games__text-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.1em;
  color: #ccc;
}

.page-casino-games-jackpot-games__image-content {
  flex: 1;
  min-width: 300px;
}

.page-casino-games-jackpot-games__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.page-casino-games-jackpot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
  text-align: center;
}

.page-casino-games-jackpot-games__feature-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-games-jackpot-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-casino-games-jackpot-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-casino-games-jackpot-games__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino-games-jackpot-games__feature-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
}

/* Games Grid */
.page-casino-games-jackpot-games__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.page-casino-games-jackpot-games__game-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2a2a2a;
}

.page-casino-games-jackpot-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-casino-games-jackpot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-casino-games-jackpot-games__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 15px 10px 15px;
}

.page-casino-games-jackpot-games__game-description {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
  padding: 0 20px 25px 20px;
}

.page-casino-games-jackpot-games__game-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  border: 2px solid #8B0000;
}

.page-casino-games-jackpot-games__game-button:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
  transform: translateY(-2px);
}

/* Strategy List */
.page-casino-games-jackpot-games__strategy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-casino-games-jackpot-games__strategy-list li {
  background-color: #1a1a1a;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: left;
}

.page-casino-games-jackpot-games__strategy-list li strong {
  color: #FFD700;
  font-size: 1.2em;
}

/* Promotions Grid */
.page-casino-games-jackpot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.page-casino-games-jackpot-games__promo-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s ease;
}

.page-casino-games-jackpot-games__promo-card:hover {
  transform: translateY(-10px);
}

.page-casino-games-jackpot-games__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino-games-jackpot-games__promo-description {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 25px;
}

.page-casino-games-jackpot-games__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
}

.page-casino-games-jackpot-games__promo-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}

/* Mobile App Section */
.page-casino-games-jackpot-games__app-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-casino-games-jackpot-games__app-benefits-list li {
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-casino-games-jackpot-games__app-benefits-list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* FAQ Section */
.page-casino-games-jackpot-games__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-casino-games-jackpot-games__faq-item {
  background-color: #1a1a1a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #8B0000;
}

.page-casino-games-jackpot-games__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-casino-games-jackpot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-casino-games-jackpot-games__faq-question.active::after {
  transform: rotate(45deg);
}

.page-casino-games-jackpot-games__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #ccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 10px;
}

.page-casino-games-jackpot-games__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 10px 0 10px;
}

/* CTA Banner */
.page-casino-games-jackpot-games__cta-banner {
  background: linear-gradient(90deg, #8B0000, #FFD700);
  padding: 80px 20px;
  color: #f0f0f0;
  text-align: center;
}

.page-casino-games-jackpot-games__cta-title {
  font-size: 3.5em;
  color: #f0f0f0;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-casino-games-jackpot-games__cta-description {
  font-size: 1.3em;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #eee;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino-games-jackpot-games__hero-title {
    font-size: 3em;
  }
  .page-casino-games-jackpot-games__hero-subtitle {
    font-size: 1.3em;
  }
  .page-casino-games-jackpot-games__section-title {
    font-size: 2.2em;
  }
  .page-casino-games-jackpot-games__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-casino-games-jackpot-games__content-wrapper--reversed {
    flex-direction: column;
  }
  .page-casino-games-jackpot-games__image-content {
    order: -1;
    margin-bottom: 30px;
  }
  .page-casino-games-jackpot-games__cta-title {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-casino-games-jackpot-games__hero {
    padding: 80px 15px;
  }
  .page-casino-games-jackpot-games__hero-title {
    font-size: 2.5em;
  }
  .page-casino-games-jackpot-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-casino-games-jackpot-games__section {
    padding: 60px 0;
  }
  .page-casino-games-jackpot-games__section-title {
    font-size: 2em;
  }
  .page-casino-games-jackpot-games__features-grid,
  .page-casino-games-jackpot-games__games-grid,
  .page-casino-games-jackpot-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-games-jackpot-games__cta-title {
    font-size: 2.2em;
  }
  .page-casino-games-jackpot-games__cta-description {
    font-size: 1.1em;
  }
  .page-casino-games-jackpot-games__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-casino-games-jackpot-games__image-content {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-casino-games-jackpot-games__hero-title {
    font-size: 2em;
  }
  .page-casino-games-jackpot-games__hero-subtitle {
    font-size: 1em;
  }
  .page-casino-games-jackpot-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-casino-games-jackpot-games__section-title {
    font-size: 1.8em;
  }
  .page-casino-games-jackpot-games__game-title {
    font-size: 1.5em;
  }
  .page-casino-games-jackpot-games__promo-title {
    font-size: 1.5em;
  }
  .page-casino-games-jackpot-games__faq-question {
    font-size: 1.2em;
  }
  .page-casino-games-jackpot-games__cta-title {
    font-size: 1.8em;
  }
  .page-casino-games-jackpot-games__text-content p,
  .page-casino-games-jackpot-games__section-description,
  .page-casino-games-jackpot-games__feature-item p,
  .page-casino-games-jackpot-games__game-description,
  .page-casino-games-jackpot-games__promo-description,
  .page-casino-games-jackpot-games__app-benefits-list li,
  .page-casino-games-jackpot-games__faq-answer,
  .page-casino-games-jackpot-games__cta-description {
    font-size: 0.95em;
  }
}