/* style/jackpot-games.css */

/* Custom color variables - MUST be used */
:root {
  --b29club-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --b29club-card-bg: #11271B;
  --b29club-background: #08160F;
  --b29club-text-main: #F2FFF6;
  --b29club-text-secondary: #A7D9B8;
  --b29club-border: #2E7A4E;
  --b29club-glow: #57E38D;
  --b29club-gold: #F2C14E;
  --b29club-divider: #1E3A2A;
  --b29club-deep-green: #0A4B2C;
}

/* Base styles for the page content */
.page-jackpot-games {
  font-family: 'Arial', sans-serif;
  color: var(--b29club-text-main); /* Default text color for dark background */
  background-color: var(--b29club-background); /* Overall page background */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

/* Color contrast enforcement based on section background */
.page-jackpot-games__dark-bg {
  background-color: var(--b29club-background);
  color: var(--b29club-text-main);
}

.page-jackpot-games__light-bg {
  background-color: var(--b29club-text-main); /* Using main text color as light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-jackpot-games__medium-bg {
  background-color: var(--b29club-deep-green); /* Using deep green for medium contrast background */
  color: var(--b29club-text-main); /* Light text for medium dark background */
}

/* Section styling */
.page-jackpot-games__hero-section,
.page-jackpot-games__introduction-section,
.page-jackpot-games__games-showcase,
.page-jackpot-games__how-to-play-section,
.page-jackpot-games__strategy-section,
.page-jackpot-games__promotions-section,
.page-jackpot-games__faq-section,
.page-jackpot-games__why-choose-us,
.page-jackpot-games__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

.page-jackpot-games__hero-section {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-jackpot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-jackpot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-jackpot-games__hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  background: rgba(17, 40, 27, 0.9); /* Slightly darker background for text contrast */
  text-align: center;
}

.page-jackpot-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--b29club-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-jackpot-games__hero-description {
  font-size: 1.2rem;
  color: var(--b29club-text-main);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-jackpot-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: var(--b29club-deep-green); /* Dark text for light background */
}

.page-jackpot-games__section-title--light {
  color: var(--b29club-text-main); /* Light text for dark background */
}