.page-resources-b52-club-game-strategy {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

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

/* Hero Section */
.page-resources-b52-club-game-strategy__hero-section {
  position: relative;
  padding: 100px 20px 60px; /* Adjust for header offset */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  text-align: center;
  background-color: #000000; /* Auxiliary color for hero background */
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-b52-club-game-strategy__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Main brand color for title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  line-height: 1.2;
}

.page-resources-b52-club-game-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-b52-club-game-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

/* Content Area */
.page-resources-b52-club-game-strategy__content-area {
  padding: 60px 0;
  background-color: #0a0a0a; /* Ensure contrast with light text */
  color: #ffffff;
}

.page-resources-b52-club-game-strategy__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-resources-b52-club-game-strategy__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-b52-club-game-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-b52-club-game-strategy__text-block a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-b52-club-game-strategy__text-block a:hover {
  color: #ffd700cc;
  text-decoration: underline;
}

/* Buttons */
.page-resources-b52-club-game-strategy__btn-primary,
.page-resources-b52-club-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-b52-club-game-strategy__btn-primary {
  background-color: #FFD700;
  color: #000000; /* Black text on gold background for contrast */
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-resources-b52-club-game-strategy__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000000;
}

.page-resources-b52-club-game-strategy__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-b52-club-game-strategy__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-resources-b52-club-game-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Game Strategies Grid */
.page-resources-b52-club-game-strategy__game-strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-b52-club-game-strategy__card {
  background-color: rgba(255, 215, 0, 0.1); /* Semi-transparent gold for cards */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  height: 100%;
  box-sizing: border-box;
}

.page-resources-b52-club-game-strategy__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-resources-b52-club-game-strategy__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-b52-club-game-strategy__card-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources-b52-club-game-strategy__card .page-resources-b52-club-game-strategy__btn-secondary {
  align-self: flex-start;
  margin-top: auto; /* Push button to bottom */
}

/* Promotion Section */
.page-resources-b52-club-game-strategy__promotion-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.page-resources-b52-club-game-strategy__promotion-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.page-resources-b52-club-game-strategy__promotion-content {
  flex: 2;
  min-width: 300px;
}

/* FAQ Section */
.page-resources-b52-club-game-strategy__faq-list {
  margin-top: 40px;
}

.page-resources-b52-club-game-strategy__faq-item {
  background-color: rgba(255, 215, 0, 0.08); /* Slightly lighter gold tint */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-b52-club-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 215, 0, 0.15);
  transition: background-color 0.3s ease;
}

.page-resources-b52-club-game-strategy__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.25);
}

.page-resources-b52-club-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-b52-club-game-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: rgba(0, 0, 0, 0.5); /* Darker background for answer */
}

.page-resources-b52-club-game-strategy__faq-answer p {
  margin: 0 0 15px 0;
  padding-top: 15px;
}

.page-resources-b52-club-game-strategy__faq-item.active .page-resources-b52-club-game-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-resources-b52-club-game-strategy__faq-item.active .page-resources-b52-club-game-strategy__faq-toggle {
  transform: rotate(45deg);
}

/* Ensure text blocks have appropriate background for contrast */
.page-resources-b52-club-game-strategy__dark-bg {
  background-color: #000000; /* Auxiliary color */
  color: #ffffff; /* White text on dark background */
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.page-resources-b52-club-game-strategy__light-bg {
  background-color: rgba(255, 215, 0, 0.1); /* Light gold tint for contrast */
  color: #ffffff; /* White text on light gold tint */
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-b52-club-game-strategy__hero-title {
    font-size: 2.8em;
  }

  .page-resources-b52-club-game-strategy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-b52-club-game-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-b52-club-game-strategy__hero-section {
    padding: 80px 15px 40px;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 400px;
  }

  .page-resources-b52-club-game-strategy__hero-title {
    font-size: 2em;
  }

  .page-resources-b52-club-game-strategy__hero-description {
    font-size: 1em;
  }

  .page-resources-b52-club-game-strategy__container {
    padding: 0 15px;
  }

  .page-resources-b52-club-game-strategy__btn-primary,
  .page-resources-b52-club-game-strategy__btn-secondary,
  .page-resources-b52-club-game-strategy a[class*="button"],
  .page-resources-b52-club-game-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;
    margin-right: 0;
  }

  .page-resources-b52-club-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-b52-club-game-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-b52-club-game-strategy__sub-section-title {
    font-size: 1.4em;
  }

  .page-resources-b52-club-game-strategy__game-strategies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-b52-club-game-strategy__card {
    padding: 20px;
  }

  .page-resources-b52-club-game-strategy__card-image {
    height: 200px;
  }

  .page-resources-b52-club-game-strategy__promotion-section {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-b52-club-game-strategy__promotion-image,
  .page-resources-b52-club-game-strategy__promotion-content {
    min-width: unset;
    width: 100%;
  }

  .page-resources-b52-club-game-strategy__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-b52-club-game-strategy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-b52-club-game-strategy__section,
  .page-resources-b52-club-game-strategy__card,
  .page-resources-b52-club-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-b52-club-game-strategy__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Consistent with common fragment */
  }

  .page-resources-b52-club-game-strategy video,
  .page-resources-b52-club-game-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-b52-club-game-strategy__video-section,
  .page-resources-b52-club-game-strategy__video-container,
  .page-resources-b52-club-game-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-resources-b52-club-game-strategy__cta-button,
  .page-resources-b52-club-game-strategy__btn-primary,
  .page-resources-b52-club-game-strategy__btn-secondary,
  .page-resources-b52-club-game-strategy a[class*="button"],
  .page-resources-b52-club-game-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;
  }
  
  .page-resources-b52-club-game-strategy__cta-buttons,
  .page-resources-b52-club-game-strategy__button-group,
  .page-resources-b52-club-game-strategy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-b52-club-game-strategy__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-resources-b52-club-game-strategy__hero-title {
    font-size: 1.8em;
  }

  .page-resources-b52-club-game-strategy__section-title {
    font-size: 1.6em;
  }
}