/* style/game-guides-slot-strategy.css */
/* body đã padding-top: var(--header-offset) từ shared.css, không lặp lại ở đây */

.page-game-guides-slot-strategy {
  color: #ffffff; /* Body background #121212 (dark), so use light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Ensure main container has the body background color */
}

.page-game-guides-slot-strategy__hero-section {
  display: flex;
  flex-direction: column; /* Default: image then content (top to bottom) */
  align-items: center;
  padding: 10px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-slot-strategy__hero-image-wrapper {
  margin-bottom: 30px; /* Space between image and content */
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.page-game-guides-slot-strategy__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides-slot-strategy__hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.page-game-guides-slot-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-game-guides-slot-strategy__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-game-guides-slot-strategy__cta-buttons {
  display: flex;
  flex-direction: column; /* Default for mobile */
  gap: 15px;
  width: 100%;
  max-width: 400px; /* Limit button group width */
  margin: 0 auto;
}

.page-game-guides-slot-strategy__btn-primary,
.page-game-guides-slot-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  text-align: center;
}

.page-game-guides-slot-strategy__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-game-guides-slot-strategy__btn-primary:hover {
  background-color: #1a7fb3;
  transform: translateY(-2px);
}

.page-game-guides-slot-strategy__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-game-guides-slot-strategy__btn-secondary:hover {
  background-color: rgba(38, 169, 224, 0.1);
  transform: translateY(-2px);
}

.page-game-guides-slot-strategy__text-link {
  color: #26A9E0; /* Brand color for internal text links */
  text-decoration: none;
}

.page-game-guides-slot-strategy__text-link:hover {
  text-decoration: underline;
}

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

.page-game-guides-slot-strategy__content-area {
  background-color: #1e1e1e; /* Slightly lighter dark background for content */
  color: #ffffff;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
}

.page-game-guides-slot-strategy__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-game-guides-slot-strategy__text-block {
  padding: 20px 0;
}

.page-game-guides-slot-strategy__sub-title {
  font-size: 1.6em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-guides-slot-strategy p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-game-guides-slot-strategy ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-game-guides-slot-strategy ul li {
  margin-bottom: 8px;
}

.page-game-guides-slot-strategy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides-slot-strategy__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #26A9E0; /* Brand color background */
  color: #FFFFFF;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-game-guides-slot-strategy__cta-section .page-game-guides-slot-strategy__section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-game-guides-slot-strategy__cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-slot-strategy__cta-section .page-game-guides-slot-strategy__cta-buttons {
  max-width: 500px;
}

.page-game-guides-slot-strategy__faq-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-game-guides-slot-strategy__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-game-guides-slot-strategy__faq-item {
  background-color: #1e1e1e; /* Dark background for FAQ items */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-guides-slot-strategy__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFFFFF;
  background-color: #2a2a2a; /* Slightly darker for summary */
}

.page-game-guides-slot-strategy__faq-item summary::-webkit-details-marker {
  display: none; /* Hide Chrome's default marker */
}

.page-game-guides-slot-strategy__faq-qtext {
  flex-grow: 1;
}

.page-game-guides-slot-strategy__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #26A9E0; /* Brand color for toggle */
}

.page-game-guides-slot-strategy__faq-item[open] .page-game-guides-slot-strategy__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to cross */
}

.page-game-guides-slot-strategy__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: #f0f0f0;
}

/* Responsive design */
@media (min-width: 769px) {
  .page-game-guides-slot-strategy__hero-section {
    flex-direction: row; /* Desktop: image left, content right */
    justify-content: space-between;
    text-align: left;
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .page-game-guides-slot-strategy__hero-image-wrapper {
    flex: 1;
    margin-bottom: 0;
    padding-right: 40px;
  }

  .page-game-guides-slot-strategy__hero-content {
    flex: 1;
    padding-left: 40px;
    text-align: left;
  }
  
  .page-game-guides-slot-strategy__main-title {
    text-align: left;
  }

  .page-game-guides-slot-strategy__hero-description {
    text-align: left;
  }

  .page-game-guides-slot-strategy__cta-buttons {
    flex-direction: row;
    max-width: none;
    margin: 0;
  }
}

/* Mobile specific overrides */
@media (max-width: 768px) {
  .page-game-guides-slot-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-guides-slot-strategy__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides-slot-strategy__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
    text-align: center;
  }

  .page-game-guides-slot-strategy__hero-description {
    text-align: center;
  }

  .page-game-guides-slot-strategy__cta-buttons {
    flex-direction: column !important; /* Force vertical stacking for buttons */
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px; /* Add padding to button group */
  }

  .page-game-guides-slot-strategy__btn-primary,
  .page-game-guides-slot-strategy__btn-secondary,
  .page-game-guides-slot-strategy a[class*="button"],
  .page-game-guides-slot-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px; /* Ensure padding within button */
  }

  .page-game-guides-slot-strategy__section,
  .page-game-guides-slot-strategy__content-area,
  .page-game-guides-slot-strategy__cta-section,
  .page-game-guides-slot-strategy__faq-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-game-guides-slot-strategy__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-slot-strategy__sub-title {
    font-size: 1.3em;
  }

  .page-game-guides-slot-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Video responsiveness (even if no video on this page, include for completeness as per instructions) */
  .page-game-guides-slot-strategy video,
  .page-game-guides-slot-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-guides-slot-strategy__video-section,
  .page-game-guides-slot-strategy__video-container,
  .page-game-guides-slot-strategy__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-guides-slot-strategy__video-section {
    padding-top: 10px !important;
  }
}