/* style/game-strategy-center-slot-jackpot-secrets.css */

/* Base Styles */
.page-game-strategy-center-slot-jackpot-secrets {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Default background */
}

.page-game-strategy-center-slot-jackpot-secrets__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-game-strategy-center-slot-jackpot-secrets__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-game-strategy-center-slot-jackpot-secrets__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-game-strategy-center-slot-jackpot-secrets__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-strategy-center-slot-jackpot-secrets__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  font-weight: bold;
  color: inherit;
}

.page-game-strategy-center-slot-jackpot-secrets__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  color: inherit;
}

.page-game-strategy-center-slot-jackpot-secrets p {
  margin-bottom: 1em;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategy-center-slot-jackpot-secrets__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-game-strategy-center-slot-jackpot-secrets__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-game-strategy-center-slot-jackpot-secrets__list-item strong {
  color: #EA7C07;
}

/* Buttons */
.page-game-strategy-center-slot-jackpot-secrets__btn-primary,
.page-game-strategy-center-slot-jackpot-secrets__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-center-slot-jackpot-secrets__btn-primary {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
  margin: 10px;
}

.page-game-strategy-center-slot-jackpot-secrets__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-game-strategy-center-slot-jackpot-secrets__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-game-strategy-center-slot-jackpot-secrets__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-game-strategy-center-slot-jackpot-secrets__btn-small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-game-strategy-center-slot-jackpot-secrets__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page-game-strategy-center-slot-jackpot-secrets__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-strategy-center-slot-jackpot-secrets__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-game-strategy-center-slot-jackpot-secrets__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-game-strategy-center-slot-jackpot-secrets__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-game-strategy-center-slot-jackpot-secrets__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.page-game-strategy-center-slot-jackpot-secrets__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-game-strategy-center-slot-jackpot-secrets__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

/* Feature Grid */
.page-game-strategy-center-slot-jackpot-secrets__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy-center-slot-jackpot-secrets__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.page-game-strategy-center-slot-jackpot-secrets__feature-card:hover {
  transform: translateY(-10px);
}

.page-game-strategy-center-slot-jackpot-secrets__feature-icon {
  width: 100%; /* Ensure image fills card width */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-game-strategy-center-slot-jackpot-secrets__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

/* Content Area */
.page-game-strategy-center-slot-jackpot-secrets__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
  color: #333333;
}

.page-game-strategy-center-slot-jackpot-secrets__content-area.page-game-strategy-center-slot-jackpot-secrets__dark-bg {
  color: #ffffff;
}

.page-game-strategy-center-slot-jackpot-secrets__content-area p {
  text-align: left;
}

.page-game-strategy-center-slot-jackpot-secrets__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Video Section */
.page-game-strategy-center-slot-jackpot-secrets__video-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-game-strategy-center-slot-jackpot-secrets__video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-strategy-center-slot-jackpot-secrets__video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-center-slot-jackpot-secrets__video-link-wrapper {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-game-strategy-center-slot-jackpot-secrets__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.page-game-strategy-center-slot-jackpot-secrets__play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4em;
  color: #ffffff;
  opacity: 0.8;
  pointer-events: none;
}

.page-game-strategy-center-slot-jackpot-secrets__steps {
  margin-top: 50px;
  text-align: left;
}

.page-game-strategy-center-slot-jackpot-secrets__steps h3 {
  color: #EA7C07;
}

/* FAQ Section */
.page-game-strategy-center-slot-jackpot-secrets__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-game-strategy-center-slot-jackpot-secrets__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-game-strategy-center-slot-jackpot-secrets__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-strategy-center-slot-jackpot-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  color: #333333;
  border-bottom: 1px solid #e0e0e0;
}

.page-game-strategy-center-slot-jackpot-secrets__faq-question:hover {
  background-color: #f0f0f0;
}

.page-game-strategy-center-slot-jackpot-secrets__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-game-strategy-center-slot-jackpot-secrets__faq-item.active .page-game-strategy-center-slot-jackpot-secrets__faq-toggle {
  transform: rotate(45deg);
}

.page-game-strategy-center-slot-jackpot-secrets__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-game-strategy-center-slot-jackpot-secrets__faq-item.active .page-game-strategy-center-slot-jackpot-secrets__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px;
}

.page-game-strategy-center-slot-jackpot-secrets__faq-answer p {
  margin: 0;
  text-align: left;
}

/* Conclusion Section */
.page-game-strategy-center-slot-jackpot-secrets__conclusion {
  padding: 50px 20px;
  max-width: 900px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategy-center-slot-jackpot-secrets__hero-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-center-slot-jackpot-secrets {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-strategy-center-slot-jackpot-secrets__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-game-strategy-center-slot-jackpot-secrets__hero-title {
    font-size: 2.5em;
  }

  .page-game-strategy-center-slot-jackpot-secrets__hero-description {
    font-size: 1.1em;
  }

  .page-game-strategy-center-slot-jackpot-secrets__section-title {
    font-size: 2em;
  }

  .page-game-strategy-center-slot-jackpot-secrets__subsection-title {
    font-size: 1.5em;
  }

  .page-game-strategy-center-slot-jackpot-secrets__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-game-strategy-center-slot-jackpot-secrets__feature-card {
    padding: 20px;
    min-width: unset;
  }

  .page-game-strategy-center-slot-jackpot-secrets__feature-icon {
    height: 150px;
    min-width: 200px;
    min-height: 150px;
  }

  .page-game-strategy-center-slot-jackpot-secrets__btn-primary,
  .page-game-strategy-center-slot-jackpot-secrets__btn-secondary,
  .page-game-strategy-center-slot-jackpot-secrets a[class*="button"],
  .page-game-strategy-center-slot-jackpot-secrets a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-strategy-center-slot-jackpot-secrets__cta-buttons,
  .page-game-strategy-center-slot-jackpot-secrets__button-group,
  .page-game-strategy-center-slot-jackpot-secrets__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

  .page-game-strategy-center-slot-jackpot-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset;
    min-height: unset;
  }

  .page-game-strategy-center-slot-jackpot-secrets__section,
  .page-game-strategy-center-slot-jackpot-secrets__card,
  .page-game-strategy-center-slot-jackpot-secrets__container,
  .page-game-strategy-center-slot-jackpot-secrets__video-section,
  .page-game-strategy-center-slot-jackpot-secrets__video-container,
  .page-game-strategy-center-slot-jackpot-secrets__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-game-strategy-center-slot-jackpot-secrets video,
  .page-game-strategy-center-slot-jackpot-secrets__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-strategy-center-slot-jackpot-secrets__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-game-strategy-center-slot-jackpot-secrets__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-game-strategy-center-slot-jackpot-secrets__faq-answer {
    padding: 0 15px;
  }

  .page-game-strategy-center-slot-jackpot-secrets__faq-item.active .page-game-strategy-center-slot-jackpot-secrets__faq-answer {
    padding: 15px;
  }
}