/* style/blog-sz777-game-strategy.css */
.page-blog-sz777-game-strategy {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-blog-sz777-game-strategy__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-blog-sz777-game-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-blog-sz777-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-sz777-game-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 20px;
  padding: 0 20px;
}

.page-blog-sz777-game-strategy__hero-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Using clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFF6D6;
  letter-spacing: 0.5px;
}

.page-blog-sz777-game-strategy__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 246, 214, 0.9);
}

.page-blog-sz777-game-strategy__section {
  padding: 60px 0;
}

.page-blog-sz777-game-strategy__introduction-section,
.page-blog-sz777-game-strategy__slots-section,
.page-blog-sz777-game-strategy__live-casino-section,
.page-blog-sz777-game-strategy__sports-betting-section,
.page-blog-sz777-game-strategy__responsible-gaming-section,
.page-blog-sz777-game-strategy__faq-section,
.page-blog-sz777-game-strategy__cta-final-section {
  background-color: #0A0A0A; /* Background */
}

.page-blog-sz777-game-strategy__dark-section {
  background-color: #111111; /* Card BG */
}

.page-blog-sz777-game-strategy__dark-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

.page-blog-sz777-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-sz777-game-strategy__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-sz777-game-strategy__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-sz777-game-strategy__text-block strong {
  color: #FFD36B;
}

.page-blog-sz777-game-strategy__image-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-blog-sz777-game-strategy__image-content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-blog-sz777-game-strategy__image-left,
.page-blog-sz777-game-strategy__image-right {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  max-width: 100%;
  height: auto;
}

.page-blog-sz777-game-strategy__text-content {
  flex: 1.5;
}

.page-blog-sz777-game-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-blog-sz777-game-strategy__btn-primary,
.page-blog-sz777-game-strategy__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-sz777-game-strategy__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111;
  border: 2px solid transparent;
}

.page-blog-sz777-game-strategy__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-blog-sz777-game-strategy__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-blog-sz777-game-strategy__btn-secondary:hover {
  background: #F2C14E; /* Main Color */
  color: #111111;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

/* FAQ Section */
.page-blog-sz777-game-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-sz777-game-strategy__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-sz777-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFF6D6;
  transition: background-color 0.3s ease;
}

.page-blog-sz777-game-strategy__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-blog-sz777-game-strategy__faq-title {
  margin: 0;
  color: #FFF6D6;
}

.page-blog-sz777-game-strategy__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  color: #F2C14E;
  transition: transform 0.3s ease;
}

.page-blog-sz777-game-strategy__faq-item.active .page-blog-sz777-game-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-sz777-game-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgba(255, 246, 214, 0.8);
}

.page-blog-sz777-game-strategy__faq-item.active .page-blog-sz777-game-strategy__faq-answer {
  max-height: 1000px !important; /* Important for override, large enough for content */
  padding: 15px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-sz777-game-strategy__section-title {
    font-size: 2em;
  }
  .page-blog-sz777-game-strategy__hero-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-blog-sz777-game-strategy__image-content-wrapper {
    flex-direction: column;
  }
  .page-blog-sz777-game-strategy__image-content-wrapper--reversed {
    flex-direction: column;
  }
  .page-blog-sz777-game-strategy__text-content {
    order: 1;
  }
  .page-blog-sz777-game-strategy__image-left,
  .page-blog-sz777-game-strategy__image-right {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-blog-sz777-game-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-sz777-game-strategy__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile fixed header spacing */
    padding-bottom: 30px;
  }
  .page-blog-sz777-game-strategy__hero-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 10px;
  }
  .page-blog-sz777-game-strategy__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-blog-sz777-game-strategy__section {
    padding: 40px 0;
  }
  .page-blog-sz777-game-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-sz777-game-strategy__text-block {
    font-size: 0.95em;
  }
  .page-blog-sz777-game-strategy__image-content-wrapper {
    gap: 20px;
  }
  .page-blog-sz777-game-strategy__image-left,
  .page-blog-sz777-game-strategy__image-right {
    min-width: unset;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-blog-sz777-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog-sz777-game-strategy__btn-primary,
  .page-blog-sz777-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-sz777-game-strategy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-sz777-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-sz777-game-strategy__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-blog-sz777-game-strategy__faq-answer {
    padding: 10px 15px;
  }
}