/* style/jackpot-slots.css */

/* Base Styles */
.page-jackpot-slots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #FFFFFF); /* Inherit from shared or default to white */
}

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

.page-jackpot-slots__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-jackpot-slots__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 20px;
}

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

/* Color Contrast Specifics */
.page-jackpot-slots__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-jackpot-slots__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Buttons */
.page-jackpot-slots__btn-primary,
.page-jackpot-slots__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-jackpot-slots__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-jackpot-slots__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-jackpot-slots__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-jackpot-slots__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-jackpot-slots__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-jackpot-slots__btn-large {
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-jackpot-slots__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-jackpot-slots__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

/* Hero Section */
.page-jackpot-slots__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-jackpot-slots__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-jackpot-slots__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

.page-jackpot-slots__hero-content {
  color: #FFFFFF;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-jackpot-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-jackpot-slots__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

/* About Section */
.page-jackpot-slots__about-section {
  padding: 80px 0;
}

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

.page-jackpot-slots__content-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-jackpot-slots__content-text-block {
  flex: 1;
}

.page-jackpot-slots__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-jackpot-slots__feature-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-jackpot-slots__feature-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #26A9E0;
}

/* Games Showcase Section */
.page-jackpot-slots__games-showcase {
  padding: 80px 0;
  text-align: center;
}

.page-jackpot-slots__games-showcase .page-jackpot-slots__section-title,
.page-jackpot-slots__games-showcase .page-jackpot-slots__text-block {
  color: #FFFFFF;
}

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

.page-jackpot-slots__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  padding-bottom: 20px;
}

.page-jackpot-slots__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-jackpot-slots__game-card .page-jackpot-slots__card-title {
  font-size: 1.4em;
  margin: 15px 15px 10px 15px;
  color: #26A9E0;
}
.page-jackpot-slots__game-card .page-jackpot-slots__card-title a {
  color: #26A9E0;
  text-decoration: none;
}
.page-jackpot-slots__game-card .page-jackpot-slots__card-title a:hover {
  text-decoration: underline;
}

.page-jackpot-slots__game-card .page-jackpot-slots__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 15px;
}

.page-jackpot-slots__game-card .page-jackpot-slots__btn-secondary {
  margin-left: 15px;
}


/* Benefits Section */
.page-jackpot-slots__benefits-section {
  padding: 80px 0;
}

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

.page-jackpot-slots__benefit-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.page-jackpot-slots__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-jackpot-slots__benefit-card .page-jackpot-slots__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-jackpot-slots__benefit-card .page-jackpot-slots__card-description {
  color: #555555;
}

/* Download Guide Section */
.page-jackpot-slots__download-guide {
  padding: 80px 0;
  text-align: center;
}