/* style/game-strategies-slot-secrets.css */
.page-game-strategies-slot-secrets {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #ffffff); /* Inherit from shared or default to white */
}

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

.page-game-strategies-slot-secrets__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  background-color: #26A9E0; /* Brand primary color for dark background */
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
}

.page-game-strategies-slot-secrets__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-game-strategies-slot-secrets__hero-section .page-game-strategies-slot-secrets__container {
  position: relative;
  z-index: 1;
}

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

.page-game-strategies-slot-secrets__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategies-slot-secrets__btn-primary {
  display: inline-block;
  background: #EA7C07; /* Login/Promotional button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-game-strategies-slot-secrets__btn-primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

.page-game-strategies-slot-secrets__btn-primary--center {
    display: block;
    margin: 30px auto 0 auto;
    width: fit-content;
}

.page-game-strategies-slot-secrets__btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #26A9E0;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #26A9E0;
    cursor: pointer;
    font-size: 1.1em;
    margin-left: 15px;
}

.page-game-strategies-slot-secrets__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-game-strategies-slot-secrets__content-area {
  padding: 60px 0;
}

.page-game-strategies-slot-secrets__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-game-strategies-slot-secrets__section-title--white {
  color: #ffffff;
}

.page-game-strategies-slot-secrets__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-game-strategies-slot-secrets__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-strategies-slot-secrets__text-block--white {
  color: #ffffff;
}

.page-game-strategies-slot-secrets__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-game-strategies-slot-secrets__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-game-strategies-slot-secrets__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-strategies-slot-secrets__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
}

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

.page-game-strategies-slot-secrets__video-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-game-strategies-slot-secrets__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.page-game-strategies-slot-secrets__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.page-game-strategies-slot-secrets__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}

.page-game-strategies-slot-secrets__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-game-strategies-slot-secrets__feature-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-strategies-slot-secrets__feature-card:hover {
  transform: translateY(-5px);
}

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

.page-game-strategies-slot-secrets__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-game-strategies-slot-secrets__cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
    flex-wrap: wrap;
}

.page-game-strategies-slot-secrets__faq-list {
  margin-top: 40px;
}

.page-game-strategies-slot-secrets__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-strategies-slot-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #f5f5f5;
  color: #333333;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-game-strategies-slot-secrets__faq-question:hover {
  background-color: #e9e9e9;
}

.page-game-strategies-slot-secrets__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-game-strategies-slot-secrets__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
}

.page-game-strategies-slot-secrets__faq-item.active .page-game-strategies-slot-secrets__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-game-strategies-slot-secrets__faq-answer p {
  margin: 0;
  font-size: 1.05em;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-strategies-slot-secrets__hero-title {
    font-size: 2.8em;
  }

  .page-game-strategies-slot-secrets__section-title {
    font-size: 2em;
  }
}

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

  .page-game-strategies-slot-secrets__hero-section {
    min-height: 400px;
    padding: 60px 0;
  }

  .page-game-strategies-slot-secrets__hero-title {
    font-size: 2.2em;
  }

  .page-game-strategies-slot-secrets__hero-description {
    font-size: 1em;
  }

  .page-game-strategies-slot-secrets__btn-primary,
  .page-game-strategies-slot-secrets__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-game-strategies-slot-secrets__btn-secondary {
      margin-left: 0;
      margin-top: 15px;
  }

  .page-game-strategies-slot-secrets__cta-buttons {
      flex-direction: column;
      gap: 15px;
      padding-left: 15px;
      padding-right: 15px;
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
  }

  .page-game-strategies-slot-secrets__content-area,
  .page-game-strategies-slot-secrets__video-section {
    padding: 40px 0;
  }

  .page-game-strategies-slot-secrets__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-game-strategies-slot-secrets__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-game-strategies-slot-secrets__sub-title {
    font-size: 1.5em;
  }

  .page-game-strategies-slot-secrets__text-block {
    font-size: 1em;
  }

  .page-game-strategies-slot-secrets__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-game-strategies-slot-secrets__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    padding-bottom: 56.25% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

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

  .page-game-strategies-slot-secrets__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-strategies-slot-secrets__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-game-strategies-slot-secrets__faq-answer {
    padding: 0 20px;
  }

  .page-game-strategies-slot-secrets__faq-item.active .page-game-strategies-slot-secrets__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-game-strategies-slot-secrets__hero-title {
    font-size: 1.8em;
  }

  .page-game-strategies-slot-secrets__section-title {
    font-size: 1.5em;
  }

  .page-game-strategies-slot-secrets__sub-title {
    font-size: 1.3em;
  }
}