.page-game-strategy {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetic */
  box-sizing: border-box;
  overflow: hidden;
}

.page-game-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

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

.page-game-strategy__hero-content {
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-game-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-game-strategy__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-game-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-game-strategy__cta-buttons--center {
  margin-top: 30px;
}

.page-game-strategy__btn {
  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;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-game-strategy__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border: none;
}

.page-game-strategy__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-game-strategy__btn--secondary {
  background-color: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E; /* Border color */
}

.page-game-strategy__btn--secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(46, 122, 78, 0.2);
}

.page-game-strategy__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-game-strategy__introduction-section,
.page-game-strategy__casino-strategy-section,
.page-game-strategy__general-tips-section,
.page-game-strategy__call-to-action {
  background-color: #08160F; /* Background */
  padding: 60px 20px;
  color: #F2FFF6;
}

.page-game-strategy__strategies-section,
.page-game-strategy__fishing-slot-strategy-section,
.page-game-strategy__faq-section {
  background-color: #11271B; /* Card B G */
  padding: 60px 20px;
  color: #F2FFF6;
}

.page-game-strategy__text-block {
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.8;
  font-size: 1.05em;
  color: #A7D9B8;
}

.page-game-strategy__strategy-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-strategy__card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
  min-height: 200px; /* Ensure card content area is not too small */
}

.page-game-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-game-strategy__card-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
}

.page-game-strategy__card-title {
  font-size: 1.4em;
  font-weight: bold;
  padding: 20px 25px 10px 25px;
  color: #F2C14E; /* Gold */
}

.page-game-strategy__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-game-strategy__card-title a:hover {
  text-decoration: underline;
}

.page-game-strategy__card-text {
  font-size: 0.95em;
  line-height: 1.7;
  padding: 0 25px 25px 25px;
  color: #A7D9B8;
  flex-grow: 1;
}

.page-game-strategy__strategy-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

.page-game-strategy__strategy-item--reverse {
  flex-direction: row-reverse;
}

.page-game-strategy__strategy-image {
  flex: 1 1 500px;
  min-width: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  width: 600px; /* Base width */
  height: 338px; /* Base height for 16:9 aspect ratio */
}

.page-game-strategy__strategy-image--left {
  margin-right: auto;
}

.page-game-strategy__strategy-image--right {
  margin-left: auto;
}

.page-game-strategy__strategy-content {
  flex: 1 1 500px;
  min-width: 300px;
}

.page-game-strategy__strategy-subtitle {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-strategy__strategy-content .page-game-strategy__text-block {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  color: #A7D9B8;
}

.page-game-strategy__tips-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.page-game-strategy__tip-item {
  background-color: #11271B; /* Card B G */
  border-left: 5px solid #2AD16F;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-strategy__tip-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-game-strategy__tip-item .page-game-strategy__text-block {
  font-size: 1em;
  margin-bottom: 0;
  max-width: none;
  color: #A7D9B8;
}

.page-game-strategy__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-strategy__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
}

.page-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B; /* Card B G */
  border-bottom: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
}

.page-game-strategy__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-game-strategy__faq-item[open] .page-game-strategy__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

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

.page-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-game-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: #A7D9B8;
}

.page-game-strategy__faq-answer p {
  margin-bottom: 0;
}

/* Details element native styling reset */
.page-game-strategy__faq-item summary {
  list-style: none;
}

.page-game-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-strategy__strategy-item {
    flex-direction: column;
    align-items: center;
  }
  .page-game-strategy__strategy-item--reverse {
    flex-direction: column;
  }
  .page-game-strategy__strategy-image--left,
  .page-game-strategy__strategy-image--right {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-game-strategy__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-game-strategy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-game-strategy__description {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-game-strategy__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }
  .page-game-strategy__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-game-strategy__introduction-section,
  .page-game-strategy__strategies-section,
  .page-game-strategy__casino-strategy-section,
  .page-game-strategy__fishing-slot-strategy-section,
  .page-game-strategy__general-tips-section,
  .page-game-strategy__faq-section,
  .page-game-strategy__call-to-action {
    padding: 40px 15px;
  }
  .page-game-strategy__text-block {
    font-size: 0.95em;
  }
  .page-game-strategy__strategy-card-grid {
    gap: 20px;
  }
  .page-game-strategy__card-title {
    font-size: 1.2em;
    padding: 15px 20px 8px 20px;
  }
  .page-game-strategy__card-text {
    font-size: 0.9em;
    padding: 0 20px 20px 20px;
  }
  .page-game-strategy__strategy-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-game-strategy__strategy-subtitle {
    font-size: 1.3em;
    margin-top: 20px;
  }
  .page-game-strategy__tip-item {
    padding: 20px;
  }
  .page-game-strategy__tip-title {
    font-size: 1.15em;
  }
  .page-game-strategy__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-game-strategy__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* Ensure all images are responsive */
  .page-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images */
  .page-game-strategy__hero-image-wrapper,
  .page-game-strategy__strategy-item,
  .page-game-strategy__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Content sections padding for mobile */
  .page-game-strategy__introduction-section,
  .page-game-strategy__strategies-section,
  .page-game-strategy__casino-strategy-section,
  .page-game-strategy__fishing-slot-strategy-section,
  .page-game-strategy__general-tips-section,
  .page-game-strategy__faq-section,
  .page-game-strategy__call-to-action {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}