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

/* Base Styles */
.page-slot-games-jackpot-slots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Inherited from shared.css body */
}

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

/* Sections */
.page-slot-games-jackpot-slots__section {
  padding: 60px 0;
  margin-bottom: 0;
  position: relative;
}

/* Fixed header spacing for the first content section */
.page-slot-games-jackpot-slots__hero-banner {
  padding-top: 70px; /* Adjust for fixed header height + some padding */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #ffffff;
  text-align: center;
}

.page-slot-games-jackpot-slots__hero-banner .page-slot-games-jackpot-slots__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-games-jackpot-slots__main-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-slots__subtitle {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-slot-games-jackpot-slots__subtitle a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games-jackpot-slots__subtitle a:hover {
  text-decoration: underline;
}

.page-slot-games-jackpot-slots__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-slot-games-jackpot-slots__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #000080;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slot-games-jackpot-slots__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
}

.page-slot-games-jackpot-slots__text-block a {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games-jackpot-slots__text-block a:hover {
  text-decoration: underline;
}

.page-slot-games-jackpot-slots__keyword {
  font-weight: bold;
  color: #000080;
}

/* Color Contrast Handling */
.page-slot-games-jackpot-slots__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark for sections */
  color: #ffffff;
}

.page-slot-games-jackpot-slots__light-bg {
  background-color: #f9f9f9;
  color: #333333;
}

.page-slot-games-jackpot-slots__dark-section {
  background-color: #000080;
  color: #ffffff;
}

.page-slot-games-jackpot-slots__content-area {
  background-color: #f9f9f9;
  color: #333333;
}

.page-slot-games-jackpot-slots__content-area .page-slot-games-jackpot-slots__section-title {
  color: #000080;
}

.page-slot-games-jackpot-slots__content-area .page-slot-games-jackpot-slots__section-title::after {
  background: #FFD700;
}

/* Buttons */
.page-slot-games-jackpot-slots__btn-primary,
.page-slot-games-jackpot-slots__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-slot-games-jackpot-slots__btn-primary {
  background: #FFD700;
  color: #000080;
  border-color: #FFD700;
}

.page-slot-games-jackpot-slots__btn-primary:hover {
  background: #e6c200;
  color: #000080;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-slots__btn-secondary {
  background: #000080;
  color: #FFD700;
  border-color: #FFD700;
}

.page-slot-games-jackpot-slots__btn-secondary:hover {
  background: #000066;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-slots__button-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Image Styles */
.page-slot-games-jackpot-slots__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-slots__image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Grid Layouts */
.page-slot-games-jackpot-slots__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpot-slots__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Cards */
.page-slot-games-jackpot-slots__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-slot-games-jackpot-slots__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpot-slots__card-title {
  font-size: 1.5em;
  color: #000080;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-slots__card p {
  font-size: 1em;
  line-height: 1.7;
}

.page-slot-games-jackpot-slots__card-image-wrapper {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-slots__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Lists */
.page-slot-games-jackpot-slots ol, .page-slot-games-jackpot-slots ul {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-slot-games-jackpot-slots ol li, .page-slot-games-jackpot-slots ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-slot-games-jackpot-slots ol li strong {
  color: #000080;
}

/* FAQ Section */
.page-slot-games-jackpot-slots__faq-section {
  background-color: #f0f0f0;
  color: #333333;
}

.page-slot-games-jackpot-slots__faq-list {
  margin-top: 40px;
}

.page-slot-games-jackpot-slots__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-games-jackpot-slots__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-slot-games-jackpot-slots__faq-item.active .page-slot-games-jackpot-slots__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-slot-games-jackpot-slots__faq-answer p {
  color: #333333;
  margin: 0;
}

.page-slot-games-jackpot-slots__faq-answer a {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games-jackpot-slots__faq-answer a:hover {
  text-decoration: underline;
}

.page-slot-games-jackpot-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-slot-games-jackpot-slots__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-slot-games-jackpot-slots__faq-question:active {
  background: #eeeeee;
}

.page-slot-games-jackpot-slots__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-slot-games-jackpot-slots__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-slot-games-jackpot-slots__faq-item.active .page-slot-games-jackpot-slots__faq-toggle {
  color: #333;
  transform: rotate(45deg);
}

/* Call to Action Section */
.page-slot-games-jackpot-slots__call-to-action {
  background-color: #000080;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-slot-games-jackpot-slots__call-to-action .page-slot-games-jackpot-slots__section-title {
  color: #FFD700;
}

.page-slot-games-jackpot-slots__call-to-action .page-slot-games-jackpot-slots__section-title::after {
  background: #ffffff;
}

.page-slot-games-jackpot-slots__call-to-action p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-slot-games-jackpot-slots__call-to-action p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games-jackpot-slots__call-to-action p a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-slots__main-title {
    font-size: 2.8em;
  }
  .page-slot-games-jackpot-slots__section-title {
    font-size: 2em;
  }
  .page-slot-games-jackpot-slots__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-slot-games-jackpot-slots__image-wrapper {
    margin-top: 20px;
  }
  .page-slot-games-jackpot-slots__card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-slots__hero-banner {
    padding-top: 60px; /* Adjust for mobile fixed header */
    padding-bottom: 40px;
  }
  .page-slot-games-jackpot-slots__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-slot-games-jackpot-slots__subtitle {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-slot-games-jackpot-slots__section {
    padding: 40px 0;
  }
  .page-slot-games-jackpot-slots__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games-jackpot-slots__text-block, 
  .page-slot-games-jackpot-slots ol li, 
  .page-slot-games-jackpot-slots ul li,
  .page-slot-games-jackpot-slots__card p {
    font-size: 0.95em;
  }
  .page-slot-games-jackpot-slots__btn-primary,
  .page-slot-games-jackpot-slots__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slot-games-jackpot-slots__grid-3-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games-jackpot-slots__card-image {
    height: 200px;
  }
  .page-slot-games-jackpot-slots__faq-question {
    padding: 15px;
  }
  .page-slot-games-jackpot-slots__faq-question h3 {
    font-size: 1em;
  }
  .page-slot-games-jackpot-slots__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-slot-games-jackpot-slots__faq-answer {
    padding: 0 15px;
  }
  .page-slot-games-jackpot-slots__faq-item.active .page-slot-games-jackpot-slots__faq-answer {
    padding: 15px !important;
  }
  
  /* Mobile image adaptation */
  .page-slot-games-jackpot-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games-jackpot-slots__section,
  .page-slot-games-jackpot-slots__container,
  .page-slot-games-jackpot-slots__image-wrapper,
  .page-slot-games-jackpot-slots__card,
  .page-slot-games-jackpot-slots__card-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games-jackpot-slots__hero-banner .page-slot-games-jackpot-slots__container,
  .page-slot-games-jackpot-slots__call-to-action .page-slot-games-jackpot-slots__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}