:root {
  --primary-color: #1A202C; /* Dark charcoal/black */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212; /* Body background from shared.css */
  --card-bg-dark: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark bg */
  --border-color-dark: rgba(255, 255, 255, 0.2);
}

.page-jackpot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Should match body background */
}

/* Fixed Header Padding */
.page-jackpot-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust based on fixed header height */
  box-sizing: border-box;
}

.page-jackpot-games__hero-section,
.page-jackpot-games__content-area,
.page-jackpot-games__faq-section,
.page-jackpot-games__brand-section,
.page-jackpot-games__blog-section {
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Ensure the very first content section also has top padding if no video */
.page-jackpot-games__hero-section {
  padding-top: 20px; /* Small padding after video, if video is above */
}

.page-jackpot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Typography */
.page-jackpot-games__main-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary-color); /* Gold for main title */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-jackpot-games__description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-jackpot-games__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-jackpot-games__sub-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-jackpot-games__text-block {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: justify;
}

.page-jackpot-games__list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-jackpot-games__list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-jackpot-games__list li strong {
  color: var(--secondary-color);
}

/* CTA Buttons */
.page-jackpot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-jackpot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Include padding/border in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-jackpot-games__btn-primary {
  background: var(--secondary-color); /* Gold background */
  color: var(--primary-color); /* Dark text for contrast */
}