:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login: #EA7C07;
  --background-white: #FFFFFF;
  --black: #000000;
}

.page-jackpot-slots {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-white); /* Explicitly set for clarity, though body is handled by shared */
}

.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__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-jackpot-slots__light-bg {
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-jackpot-slots__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: inherit; /* Inherit color from parent section */
}

.page-jackpot-slots__text-block {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
  color: inherit; /* Inherit color from parent section */
}

/* Hero Section */
.page-jackpot-slots__hero-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-jackpot-slots__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* Make video not clickable directly by default, JS will add handler */
}

.page-jackpot-slots__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-jackpot-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-jackpot-slots__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-jackpot-slots__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-jackpot-slots__btn-primary,
.page-jackpot-slots__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box; /* Crucial for mobile responsiveness */
}

.page-jackpot-slots__btn-primary {
  background-color: var(--button-login); /* Use specific login color for primary action */
  color: var(--text-light);
  border: 2px solid var(--button-login);
}

.page-jackpot-slots__btn-primary:hover {
  background-color: #c96706; /* Darken for hover */
  border-color: #c96706; /* Darken for hover */
}

.page-jackpot-slots__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}