/* style/jackpots.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --button-text-color: #FFFF00;
  --body-bg-color: #121212; /* From shared.css */
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --card-bg-dark-theme: rgba(255, 255, 255, 0.1);
  --card-bg-light-theme: #ffffff;
  --section-padding-desktop: 80px 40px;
  --section-padding-mobile: 40px 15px;
}

.page-jackpots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-on-dark); /* Body background is dark */
  background-color: var(--body-bg-color);
}

/* Hero Section */
.page-jackpots__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-padding-desktop);
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); /* Overlay for text readability */
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.page-jackpots__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-jackpots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Dim the background image for contrast */
}

.page-jackpots__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-jackpots__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-on-dark);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-jackpots__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-on-dark);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-jackpots__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* General Section Styling */
.page-jackpots__section {
  padding: var(--section-padding-desktop);
}

.page-jackpots__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-jackpots__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-on-dark);
}

.page-jackpots__light-bg .page-jackpots__section-title {
  color: var(--text-on-light);
}

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

.page-jackpots__light-bg .page-jackpots__text-block {
  color: var(--text-on-light);
}

.page-jackpots__center-align {
  text-align: center;
}

/* Color themes for sections */
.page-jackpots__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.page-jackpots__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-on-light);
}