.page-game-strategy {
  font-family: 'Arial', sans-serif;
  background-color: var(--body-bg, #0A0A0A); /* Default to #0A0A0A if --body-bg not set */
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

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

/* Hero Section */
.page-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, rgba(242, 193, 78, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-bottom: 1px solid var(--border-color, #3A2A12);
}

.page-game-strategy__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure width is 100% for flex item */
}

.page-game-strategy__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-game-strategy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color, #3A2A12);
}

.page-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-game-strategy__hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.page-game-strategy__hero-content p {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-game-strategy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-game-strategy__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-game-strategy__section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color, #3A2A12);
}

.page-game-strategy__section:last-of-type {
  border-bottom: none;
}

.page-game-strategy__title {
  font-size: 2.5rem;
  color: #FFD36B; /* Auxiliary color */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-game-strategy__subtitle {
  font-size: 2rem;
  color: #F2C14E; /* Primary color */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.page-game-strategy p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-game-strategy ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-game-strategy ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-game-strategy__introduction img,
.page-game-strategy__game-analysis img,
.page-game-strategy__golden-rules img {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color, #3A2A12);
}

/* Strategy Types Grid */
.page-game-strategy__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy__card {
  background-color: var(--card-bg, #111111); /* Card B G */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #3A2A12);
  color: #FFF6D6; /* Text Main */
}

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

.page-game-strategy__card-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-strategy__card p {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

.page-game-strategy__button-link {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-game-strategy__button-link:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

/* Benefits List */
.page-game-strategy__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-game-strategy__benefits-list li {
  background-color: var(--card-bg, #111111); /* Card B G */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  position: relative;
  padding-left: 45px;
  text-align: left;
  border: 1px solid var(--border-color, #3A2A12);
}

.page-game-strategy__benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFD36B; /* Auxiliary color */
  font-size: 1.5rem;
  font-weight: bold;
}

/* CTA Buttons Group */
.page-game-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-game-strategy__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for button */
}

.page-game-strategy__btn-secondary {
  background: transparent;
  border: 2px solid #F2C14E; /* Primary color for border */
  color: #F2C14E; /* Primary color for text */
}

.page-game-strategy__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
details.page-game-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color, #3A2A12);
  overflow: hidden;
  background: var(--card-bg, #111111); /* Card B G */
}
details.page-game-strategy__faq-item summary.page-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B; /* Auxiliary color */
}
details.page-game-strategy__faq-item summary.page-game-strategy__faq-question::-webkit-details-marker {
  display: none;
}
details.page-game-strategy__faq-item summary.page-game-strategy__faq-question:hover {
  background: rgba(255, 211, 107, 0.1); /* Light hover effect */
}
.page-game-strategy__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-game-strategy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-game-strategy__faq-item .page-game-strategy__faq-answer {
  padding: 0 25px 25px;
  background: rgba(17, 17, 17, 0.8); /* Slightly darker card bg for answer */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6; /* Text Main */
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .page-game-strategy__title {
    font-size: 2.2rem;
  }
  .page-game-strategy__subtitle {
    font-size: 1.8rem;
  }
  .page-game-strategy__section {
    padding: 60px 0;
  }
  .page-game-strategy__hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-game-strategy__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-strategy__hero-image img {
    border-radius: 4px;
  }
  .page-game-strategy__hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem); /* Adjust H1 for smaller screens */
    margin-bottom: 15px;
  }
  .page-game-strategy__hero-content p {
    font-size: 1rem;
  }
  .page-game-strategy__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-game-strategy__title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .page-game-strategy__subtitle {
    font-size: 1.6rem;
  }
  .page-game-strategy p,
  .page-game-strategy ul li,
  .page-game-strategy__card p {
    font-size: 0.95rem;
  }
  .page-game-strategy__section {
    padding: 40px 0;
  }
  .page-game-strategy__container {
    padding: 0 15px;
  }
  .page-game-strategy__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-strategy__card {
    padding: 20px;
  }
  .page-game-strategy__card-title {
    font-size: 1.3rem;
  }
  .page-game-strategy__button-link {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  .page-game-strategy__benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-game-strategy__benefits-list li {
    padding: 20px 20px 20px 40px;
    font-size: 1rem;
  }
  .page-game-strategy__benefits-list li::before {
    left: 10px;
    font-size: 1.3rem;
  }
  .page-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-game-strategy__cta-buttons .page-game-strategy__cta-button {
    width: 100%;
    max-width: 100%;
  }

  /* Responsive images */
  .page-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-game-strategy__section,
  .page-game-strategy__card,
  .page-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ */
  details.page-game-strategy__faq-item summary.page-game-strategy__faq-question {
    padding: 15px;
  }
  .page-game-strategy__faq-qtext {
    font-size: 1rem;
  }
  .page-game-strategy__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-game-strategy__faq-item .page-game-strategy__faq-answer {
    padding: 0 15px 15px;
  }
}

/* Text contrast fix for any potential issues, though current color scheme is designed for contrast */
.page-game-strategy__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-game-strategy__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}