/* style/slot-games-jackpot-reveal.css */

:root {
  --pbv88-primary-color: #26A9E0;
  --pbv88-secondary-color: #FFFFFF;
  --pbv88-login-color: #EA7C07;
  --pbv88-black-color: #000000;
  --pbv88-text-dark: #333333;
  --pbv88-text-light: #FFFFFF;
  --pbv88-bg-light: #F5F5F5;
}

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

/* Hero Section */
.page-slot-games-jackpot-reveal__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: var(--pbv88-primary-color);
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-slot-games-jackpot-reveal__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-reveal__hero-content {
  max-width: 900px;
  z-index: 1;
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-slot-games-jackpot-reveal__btn-primary,
.page-slot-games-jackpot-reveal__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-reveal__btn-primary {
  background-color: var(--pbv88-login-color); /* Login color for primary action */
  color: var(--pbv88-text-light);
  border: 2px solid var(--pbv88-login-color);
}

.page-slot-games-jackpot-reveal__btn-primary:hover {
  background-color: darken(var(--pbv88-login-color), 10%);
  border-color: darken(var(--pbv88-login-color), 10%);
  transform: translateY(-2px);
}

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

.page-slot-games-jackpot-reveal__btn-secondary:hover {
  background-color: var(--pbv88-text-light);
  color: var(--pbv88-primary-color);
  transform: translateY(-2px);
}

/* General Section Styling */
.page-slot-games-jackpot-reveal__section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games-jackpot-reveal__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games-jackpot-reveal__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--pbv88-primary-color);
}

.page-slot-games-jackpot-reveal__dark-section .page-slot-games-jackpot-reveal__section-title,
.page-slot-games-jackpot-reveal__dark-section .page-slot-games-jackpot-reveal__text-block,
.page-slot-games-jackpot-reveal__dark-section .page-slot-games-jackpot-reveal__list-item,
.page-slot-games-jackpot-reveal__dark-section .page-slot-games-jackpot-reveal__link-text {
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-slot-games-jackpot-reveal__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

/* Step-by-step Guide */
.page-slot-games-jackpot-reveal__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpot-reveal__step-item {
  background-color: var(--pbv88-secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-slot-games-jackpot-reveal__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pbv88-primary-color);
  margin-bottom: 15px;
}

/* Game Types */
.page-slot-games-jackpot-reveal__game-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpot-reveal__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  color: var(--pbv88-text-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-slot-games-jackpot-reveal__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pbv88-text-light);
  margin-bottom: 15px;
}

/* Lists */
.page-slot-games-jackpot-reveal__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-slot-games-jackpot-reveal__list-item {
  font-size: 1.05rem;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--pbv88-text-dark);
}

.page-slot-games-jackpot-reveal__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

/* Link Text */
.page-slot-games-jackpot-reveal__link-text {
  color: var(--pbv88-primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-slot-games-jackpot-reveal__link-text:hover {
  color: darken(var(--pbv88-primary-color), 10%);
  text-decoration: underline;
}

/* FAQ Section */
.page-slot-games-jackpot-reveal__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-reveal__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--pbv88-primary-color);
  color: var(--pbv88-text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-slot-games-jackpot-reveal__faq-item[open] .page-slot-games-jackpot-reveal__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.page-slot-games-jackpot-reveal__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-jackpot-reveal__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-reveal__faq-item[open] .page-slot-games-jackpot-reveal__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-jackpot-reveal__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__faq-item details > summary {
  list-style: none;
}
.page-slot-games-jackpot-reveal__faq-item details > summary::-webkit-details-marker {
  display: none;
}

/* Final CTA Section */
.page-slot-games-jackpot-reveal__final-cta {
  background-color: var(--pbv88-bg-light);
  padding-bottom: 80px;
}

/* Color Contrast Fixes (if needed) */
.page-slot-games-jackpot-reveal__dark-bg {
  background-color: var(--pbv88-primary-color);
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__light-bg {
  background-color: var(--pbv88-secondary-color);
  color: var(--pbv88-text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-slot-games-jackpot-reveal {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-jackpot-reveal__hero-section {
    padding: 10px 15px 40px;
  }

  .page-slot-games-jackpot-reveal__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-slot-games-jackpot-reveal__description {
    font-size: 1rem;
  }

  .page-slot-games-jackpot-reveal__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-slot-games-jackpot-reveal__btn-primary,
  .page-slot-games-jackpot-reveal__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-jackpot-reveal__section {
    padding: 40px 15px;
  }

  .page-slot-games-jackpot-reveal__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 25px;
  }

  .page-slot-games-jackpot-reveal__text-block {
    font-size: 0.95rem;
  }

  .page-slot-games-jackpot-reveal__step-item {
    padding: 20px;
  }

  .page-slot-games-jackpot-reveal__step-title {
    font-size: 1.3rem;
  }

  .page-slot-games-jackpot-reveal__game-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-jackpot-reveal__game-card {
    padding: 20px;
  }

  .page-slot-games-jackpot-reveal__game-title {
    font-size: 1.2rem;
  }

  .page-slot-games-jackpot-reveal__list-item {
    font-size: 0.95rem;
    padding-left: 20px;
  }

  .page-slot-games-jackpot-reveal__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-slot-games-jackpot-reveal__faq-toggle {
    font-size: 1.5rem;
  }

  .page-slot-games-jackpot-reveal__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* Mobile specific image and container rules */
  .page-slot-games-jackpot-reveal img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-jackpot-reveal__hero-image-wrapper,
  .page-slot-games-jackpot-reveal__content-area,
  .page-slot-games-jackpot-reveal__game-types,
  .page-slot-games-jackpot-reveal__faq-list,
  .page-slot-games-jackpot-reveal__cta-buttons,
  .page-slot-games-jackpot-reveal__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-slot-games-jackpot-reveal__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Ensure no horizontal scroll for elements within main content */
  .page-slot-games-jackpot-reveal > section {
    overflow-x: hidden;
  }
}

/* Darken function for hover effects (Sass-like, assuming pre-processor or simple JS for dynamic styling if needed) */
/* For pure CSS, one would use fixed colors or CSS variables with calculated hues */
/* For this example, I'll keep the darken as a comment to indicate intent, and use a slightly darker hex if it were pure CSS */
/* darken(#EA7C07, 10%) could be #DA6D00 */
/* darken(var(--pbv88-primary-color), 10%) could be #2297CC */

/* Specific contrast rules */
.page-slot-games-jackpot-reveal__dark-section {
  background-color: var(--pbv88-primary-color); /* Brand color as background */
  color: var(--pbv88-text-light); /* White text */
}

.page-slot-games-jackpot-reveal__light-bg {
  background-color: var(--pbv88-secondary-color); /* White background */
  color: var(--pbv88-text-dark); /* Dark text */
}

.page-slot-games-jackpot-reveal__btn-primary {
  background-color: var(--pbv88-login-color);
  color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__btn-secondary {
  background-color: transparent;
  color: var(--pbv88-text-light);
  border-color: var(--pbv88-text-light);
}

.page-slot-games-jackpot-reveal__btn-secondary:hover {
  background-color: var(--pbv88-text-light);
  color: var(--pbv88-primary-color);
}

/* Ensure no CSS filter changes image colors */
.page-slot-games-jackpot-reveal img {
  filter: none; /* Explicitly ensure no filters are applied */
}