.page-jackpot-slots {
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-jackpot-slots__section {
  padding: 60px 0;
  text-align: center;
}

.page-jackpot-slots__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2F6BFF; /* Main Color */
}

.page-jackpot-slots__description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #1F2D3D;
}

/* Hero Section */
.page-jackpot-slots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset from body */
  overflow: hidden;
}

.page-jackpot-slots__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-jackpot-slots__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-jackpot-slots__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-jackpot-slots__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-jackpot-slots__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  font-weight: 700;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-jackpot-slots__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button Color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-jackpot-slots__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-jackpot-slots__cta-button--large {
  font-size: 22px;
  padding: 20px 50px;
}

/* Intro Section */
.page-jackpot-slots__intro-section p {
  max-width: 800px;
  margin: 0 auto 15px;
  font-size: 16px;
  color: #1F2D3D;
}

.page-jackpot-slots__intro-section p a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-jackpot-slots__intro-section p a:hover {
  text-decoration: underline;
}

/* Why Choose Us Section */
.page-jackpot-slots__why-choose-us-section {
  background-color: #FFFFFF; /* Card BG */
  padding: 80px 0;
}

.page-jackpot-slots__why-choose-us-section .page-jackpot-slots__section-title {
  color: #1F2D3D;
}

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

.page-jackpot-slots__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border Color */
}

.page-jackpot-slots__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-jackpot-slots__feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-jackpot-slots__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-jackpot-slots__feature-card p {
  font-size: 15px;
  color: #1F2D3D;
}

/* Game Types Section */
.page-jackpot-slots__game-types-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #1F2D3D;
}

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

.page-jackpot-slots__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-jackpot-slots__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-jackpot-slots__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-jackpot-slots__game-card .page-jackpot-slots__card-title {
  padding: 20px 20px 0;
  color: #2F6BFF;
}

.page-jackpot-slots__game-card p {
  padding: 0 20px 20px;
  font-size: 15px;
  color: #1F2D3D;
  margin: 0;
}

.page-jackpot-slots__cta-group {
  margin-top: 50px;
}

/* How to Play Section */
.page-jackpot-slots__how-to-play-section {
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
  padding: 80px 0;
}

.page-jackpot-slots__how-to-play-section .page-jackpot-slots__section-title {
  color: #ffffff;
}

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

.page-jackpot-slots__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-jackpot-slots__step-number {
  font-size: 48px;
  font-weight: bold;
  color: #A5C4FF; /* Glow Color */
  margin-bottom: 15px;
  line-height: 1;
}

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

.page-jackpot-slots__step-card p {
  font-size: 15px;
  color: #f0f0f0;
}

/* Promotions Section */
.page-jackpot-slots__promotions-section {
  background-color: #F4F7FB;
  padding: 80px 0;
}

.page-jackpot-slots__promotions-section .page-jackpot-slots__section-title {
  color: #1F2D3D;
}

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

.page-jackpot-slots__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-jackpot-slots__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-jackpot-slots__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-jackpot-slots__promo-card .page-jackpot-slots__card-title {
  padding: 20px 20px 0;
  color: #2F6BFF;
}

.page-jackpot-slots__promo-card p {
  padding: 0 20px 20px;
  font-size: 15px;
  color: #1F2D3D;
  margin: 0;
}

/* FAQ Section */
.page-jackpot-slots__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* Card BG */
}

.page-jackpot-slots__faq-section .page-jackpot-slots__section-title {
  color: #1F2D3D;
}

.page-jackpot-slots__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

details.page-jackpot-slots__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF; /* Border Color */
  overflow: hidden;
  background: #fff;
}

details.page-jackpot-slots__faq-item summary.page-jackpot-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-jackpot-slots__faq-item summary.page-jackpot-slots__faq-question::-webkit-details-marker {
  display: none;
}

details.page-jackpot-slots__faq-item summary.page-jackpot-slots__faq-question:hover {
  background: #f5f5f5;
}

.page-jackpot-slots__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}

.page-jackpot-slots__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF; /* Main Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-jackpot-slots__faq-item .page-jackpot-slots__faq-answer {
  padding: 0 20px 20px;
  background: #F4F7FB;
  border-radius: 0 0 5px 5px;
  color: #1F2D3D;
  font-size: 15px;
}

/* Blog/News Section */
.page-jackpot-slots__blog-news-section {
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
  padding: 80px 0;
}

.page-jackpot-slots__blog-news-section .page-jackpot-slots__section-title {
  color: #ffffff;
}

.page-jackpot-slots__blog-news-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

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

.page-jackpot-slots__blog-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-jackpot-slots__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-jackpot-slots__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-jackpot-slots__blog-card .page-jackpot-slots__card-title {
  padding: 20px 20px 0;
}

.page-jackpot-slots__blog-card .page-jackpot-slots__card-title a {
  color: #2F6BFF;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

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

.page-jackpot-slots__blog-card p {
  padding: 0 20px;
  font-size: 15px;
  color: #1F2D3D;
  margin: 0;
}

.page-jackpot-slots__blog-date {
  display: block;
  font-size: 13px;
  color: #6FA3FF; /* Accent Color */
  padding: 10px 20px 20px;
}

/* Final CTA Section */
.page-jackpot-slots__final-cta-section {
  background-color: #F4F7FB;
  padding: 80px 0;
}

.page-jackpot-slots__final-cta-section .page-jackpot-slots__section-title {
  color: #1F2D3D;
}

.page-jackpot-slots__final-cta-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #1F2D3D;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .page-jackpot-slots__section-title {
    font-size: 32px;
  }
  .page-jackpot-slots__hero-image img {
    border-radius: 6px;
  }
}

@media (max-width: 768px) {
  .page-jackpot-slots__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-jackpot-slots__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-jackpot-slots__description {
    font-size: 16px;
  }
  .page-jackpot-slots__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-jackpot-slots__cta-button--large {
    font-size: 18px;
    padding: 15px 40px;
  }
  .page-jackpot-slots__section {
    padding: 40px 0;
  }
  .page-jackpot-slots__section-title {
    font-size: 28px;
  }
  .page-jackpot-slots__intro-section p,
  .page-jackpot-slots__game-types-section p,
  .page-jackpot-slots__promotions-section p,
  .page-jackpot-slots__final-cta-section p,
  .page-jackpot-slots__blog-news-section p {
    font-size: 15px;
  }
  .page-jackpot-slots__feature-card,
  .page-jackpot-slots__game-card,
  .page-jackpot-slots__promo-card,
  .page-jackpot-slots__blog-card {
    padding: 20px;
  }
  .page-jackpot-slots__feature-card img,
  .page-jackpot-slots__game-card img,
  .page-jackpot-slots__promo-card img,
  .page-jackpot-slots__blog-card img {
    min-width: 200px !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .page-jackpot-slots__card-title {
    font-size: 18px;
  }
  .page-jackpot-slots__faq-list {
    margin-top: 30px;
  }
  details.page-jackpot-slots__faq-item summary.page-jackpot-slots__faq-question { padding: 15px; }
  .page-jackpot-slots__faq-qtext { font-size: 15px; }
  details.page-jackpot-slots__faq-item .page-jackpot-slots__faq-answer { padding: 0 15px 15px; }
  .page-jackpot-slots__blog-card .page-jackpot-slots__card-title a {
    font-size: 18px;
  }
  .page-jackpot-slots__cta-group {
    padding: 0 15px;
  }
  .page-jackpot-slots__cta-group .page-jackpot-slots__cta-button {
    margin-top: 20px;
    width: 100%;
  }
  .page-jackpot-slots__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-jackpot-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}