.page-jackpot-slots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff;
}

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

.page-jackpot-slots__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-jackpot-slots__text-block {
  font-size: 17px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.page-jackpot-slots__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* 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, header offset handled by body */
  background-color: #f0f8ff;
}

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

.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;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-jackpot-slots__main-title {
  font-size: clamp(32px, 5vw, 48px);
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-jackpot-slots__hero-description {
  font-size: 19px;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.page-jackpot-slots__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(90deg, #26A9E0 0%, #1A7BB5 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.4);
  border: none;
  cursor: pointer;
}

.page-jackpot-slots__cta-button:hover {
  background: linear-gradient(90deg, #1A7BB5 0%, #26A9E0 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(38, 169, 224, 0.6);
}

/* Introduction Section */
.page-jackpot-slots__introduction-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-jackpot-slots__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-jackpot-slots__feature-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-jackpot-slots__feature-item p {
  font-size: 16px;
  color: #666666;
}

/* Quick Access Section */
.page-jackpot-slots__quick-access-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-jackpot-slots__quick-access-section .page-jackpot-slots__section-title,
.page-jackpot-slots__quick-access-section .page-jackpot-slots__text-block {
  color: #ffffff;
}

.page-jackpot-slots__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

.page-jackpot-slots__btn-primary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-jackpot-slots__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
  transform: translateY(-2px);
}

.page-jackpot-slots__btn-large {
  padding: 18px 40px;
  font-size: 20px;
  margin-top: 40px;
}

/* Core Games Section */
.page-jackpot-slots__core-games-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

.page-jackpot-slots__game-showcase {
  margin: 40px auto;
  text-align: center;
  max-width: 1000px;
}

.page-jackpot-slots__game-showcase img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-jackpot-slots__game-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-jackpot-slots__game-list li {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #444444;
}

.page-jackpot-slots__icon {
  font-size: 20px;
  color: #26A9E0;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-jackpot-slots__icon--star::before {
  content: '⭐'; /* Example for a star icon */
}

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

.page-jackpot-slots__promotions-section .page-jackpot-slots__section-title,
.page-jackpot-slots__promotions-section .page-jackpot-slots__text-block {
  color: #ffffff;
}

.page-jackpot-slots__promo-banner {
  margin: 40px auto;
  text-align: center;
  max-width: 1000px;
}

.page-jackpot-slots__promo-banner img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

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

.page-jackpot-slots__promo-card {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-jackpot-slots__promo-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.25);
}

.page-jackpot-slots__promo-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-jackpot-slots__promo-card p {
  font-size: 16px;
  color: #e0e0e0;
}

/* Security & Support Section */
.page-jackpot-slots__security-support-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-jackpot-slots__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-jackpot-slots__security-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-jackpot-slots__security-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-jackpot-slots__security-details {
  flex: 2;
  min-width: 300px;
}

.page-jackpot-slots__security-subtitle {
  font-size: 24px;
  color: #26A9E0;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-jackpot-slots__security-details p {
  font-size: 17px;
  color: #555555;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-jackpot-slots__faq-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-jackpot-slots__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

details.page-jackpot-slots__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

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;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

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: rgba(255, 255, 255, 0.2);
}

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

.page-jackpot-slots__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  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: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
  font-size: 16px;
}

/* Blog Section */
.page-jackpot-slots__blog-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

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

.page-jackpot-slots__blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-jackpot-slots__blog-card h3 {
  font-size: 20px;
  margin: 20px 20px 10px;
  line-height: 1.4;
}

.page-jackpot-slots__blog-card h3 a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

.page-jackpot-slots__blog-meta {
  font-size: 14px;
  color: #999999;
  margin: 0 20px 15px;
}

.page-jackpot-slots__blog-excerpt {
  font-size: 16px;
  color: #666666;
  margin: 0 20px 20px;
}

.page-jackpot-slots__read-more {
  display: inline-block;
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  padding-bottom: 2px;
  border-bottom: 2px solid #26A9E0;
  transition: border-color 0.3s ease;
}

.page-jackpot-slots__read-more:hover {
  border-color: #1A7BB5;
  color: #1A7BB5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-jackpot-slots__hero-image img,
  .page-jackpot-slots__game-showcase img,
  .page-jackpot-slots__promo-banner img,
  .page-jackpot-slots__security-image img,
  .page-jackpot-slots__blog-card 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(28px, 8vw, 36px);
  }

  .page-jackpot-slots__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-jackpot-slots__cta-button {
    padding: 15px 30px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0;
    margin-right: 0;
  }

  .page-jackpot-slots__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 30px;
  }

  .page-jackpot-slots__text-block {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-jackpot-slots__introduction-section,
  .page-jackpot-slots__quick-access-section,
  .page-jackpot-slots__core-games-section,
  .page-jackpot-slots__promotions-section,
  .page-jackpot-slots__security-support-section,
  .page-jackpot-slots__faq-section,
  .page-jackpot-slots__blog-section {
    padding: 50px 0;
  }

  .page-jackpot-slots__feature-item,
  .page-jackpot-slots__promo-card {
    padding: 20px;
  }

  .page-jackpot-slots__feature-title,
  .page-jackpot-slots__promo-title {
    font-size: 20px;
  }

  .page-jackpot-slots__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-jackpot-slots__btn-primary,
  .page-jackpot-slots__btn-secondary,
  .page-jackpot-slots__btn-large {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-jackpot-slots__security-content {
    flex-direction: column;
  }

  .page-jackpot-slots__security-details {
    text-align: center;
  }

  .page-jackpot-slots__security-subtitle {
    font-size: 20px;
  }

  details.page-jackpot-slots__faq-item summary.page-jackpot-slots__faq-question {
    padding: 15px;
    font-size: 16px;
  }

  .page-jackpot-slots__faq-qtext {
    font-size: 16px;
  }

  .page-jackpot-slots__faq-toggle {
    font-size: 20px;
  }

  details.page-jackpot-slots__faq-item .page-jackpot-slots__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }

  .page-jackpot-slots__blog-card h3 {
    font-size: 18px;
  }

  .page-jackpot-slots__blog-excerpt {
    font-size: 15px;
  }

  .page-jackpot-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-jackpot-slots__section,
  .page-jackpot-slots__card,
  .page-jackpot-slots__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-jackpot-slots__hero-image img,
  .page-jackpot-slots__game-showcase img,
  .page-jackpot-slots__promo-banner img,
  .page-jackpot-slots__security-image img,
  .page-jackpot-slots__blog-card img {
    border-radius: 4px;
  }

  .page-jackpot-slots__blog-card img {
    
  }
}