/* style/resources-b52-club-game-strategy.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000;
  --background-light: #f8f8f8;
  --card-background-dark: rgba(255, 255, 255, 0.1);
  --card-background-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-b52-club-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark (#000) from shared.css */
  background-color: var(--background-dark);
}

.page-resources-b52-club-game-strategy__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-b52-club-game-strategy__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

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

/* Hero Section */
.page-resources-b52-club-game-strategy__hero-section {
  padding-top: var(--header-offset, 120px);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.page-resources-b52-club-game-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-resources-b52-club-game-strategy__main-title {
  font-size: 4.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-b52-club-game-strategy__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

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

.page-resources-b52-club-game-strategy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-club-game-strategy__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-b52-club-game-strategy__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-resources-b52-club-game-strategy__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-b52-club-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-b52-club-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.6);
}

/* General Section Styles */
.page-resources-b52-club-game-strategy__strategies-overview,
.page-resources-b52-club-game-strategy__game-strategies,
.page-resources-b52-club-game-strategy__responsible-gaming,
.page-resources-b52-club-game-strategy__faq-section,
.page-resources-b52-club-game-strategy__related-articles,
.page-resources-b52-club-game-strategy__final-cta {
  padding: 80px 0;
}

.page-resources-b52-club-game-strategy__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.page-resources-b52-club-game-strategy__section-title.page-resources-b52-club-game-strategy__dark-bg {
  color: var(--secondary-color);
}

.page-resources-b52-club-game-strategy__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

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

.page-resources-b52-club-game-strategy__strategy-card {
  background-color: var(--card-background-light);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-resources-b52-club-game-strategy__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-b52-club-game-strategy__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-b52-club-game-strategy__strategy-card p {
  font-size: 1em;
  color: var(--text-dark);
}

/* Game Specific Strategies */
.page-resources-b52-club-game-strategy__game-category {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.page-resources-b52-club-game-strategy__game-category:last-child {
  margin-bottom: 0;
}

.page-resources-b52-club-game-strategy__game-category--reverse {
  flex-direction: row-reverse;
}

.page-resources-b52-club-game-strategy__game-image-wrapper {
  flex: 1;
  min-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-resources-b52-club-game-strategy__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-resources-b52-club-game-strategy__game-content {
  flex: 1.2;
}

.page-resources-b52-club-game-strategy__game-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-b52-club-game-strategy__game-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.7;
  color: var(--text-light);
}

.page-resources-b52-club-game-strategy__game-tips {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-b52-club-game-strategy__game-tips li {
  font-size: 1.05em;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}

.page-resources-b52-club-game-strategy__game-tips li::before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsible Gaming */
.page-resources-b52-club-game-strategy__responsible-gaming .page-resources-b52-club-game-strategy__section-title {
  color: var(--primary-color);
}

.page-resources-b52-club-game-strategy__responsible-gaming .page-resources-b52-club-game-strategy__section-description {
  color: var(--text-dark);
}

.page-resources-b52-club-game-strategy__responsible-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-resources-b52-club-game-strategy__responsible-text {
  flex: 1.2;
  color: var(--text-dark);
}

.page-resources-b52-club-game-strategy__responsible-text p {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-resources-b52-club-game-strategy__responsible-text strong {
  color: var(--primary-color);
}

.page-resources-b52-club-game-strategy__responsible-image-wrapper {
  flex: 1;
  min-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-resources-b52-club-game-strategy__responsible-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-resources-b52-club-game-strategy__cta-buttons--center {
  margin-top: 40px;
}

/* FAQ Section */
.page-resources-b52-club-game-strategy__faq-section .page-resources-b52-club-game-strategy__section-title {
  color: var(--secondary-color);
}

.page-resources-b52-club-game-strategy__faq-section .page-resources-b52-club-game-strategy__section-description {
  color: var(--text-light);
}

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

.page-resources-b52-club-game-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-club-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-b52-club-game-strategy__faq-question:hover {
  background-color: #1a3a7f;
  border-color: rgba(255, 255, 255, 0.3);
}

.page-resources-b52-club-game-strategy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

.page-resources-b52-club-game-strategy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-b52-club-game-strategy__faq-item.active .page-resources-b52-club-game-strategy__faq-toggle {
  transform: rotate(45deg);
  color: #ff0000; /* Red for minus sign */
}

.page-resources-b52-club-game-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: var(--card-background-dark);
  color: var(--text-light);
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.page-resources-b52-club-game-strategy__faq-item.active .page-resources-b52-club-game-strategy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-b52-club-game-strategy__faq-answer p {
  margin: 0;
  color: var(--text-light);
}

/* Related Articles */
.page-resources-b52-club-game-strategy__related-articles .page-resources-b52-club-game-strategy__section-title {
  color: var(--primary-color);
}

.page-resources-b52-club-game-strategy__related-articles .page-resources-b52-club-game-strategy__section-description {
  color: var(--text-dark);
}

.page-resources-b52-club-game-strategy__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-b52-club-game-strategy__article-card {
  background-color: var(--card-background-light);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-resources-b52-club-game-strategy__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-b52-club-game-strategy__article-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.page-resources-b52-club-game-strategy__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-resources-b52-club-game-strategy__article-card h3 {
  font-size: 1.4em;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  color: var(--primary-color);
  line-height: 1.4;
}

.page-resources-b52-club-game-strategy__article-card p {
  font-size: 1em;
  margin: 0 20px 15px 20px;
  color: var(--text-dark);
}

.page-resources-b52-club-game-strategy__article-date {
  display: block;
  font-size: 0.9em;
  color: #666;
  margin: 0 20px 20px 20px;
}

/* Final CTA */
.page-resources-b52-club-game-strategy__final-cta {
  padding: 100px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-b52-club-game-strategy__final-cta-content {
  max-width: 900px;
}

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

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

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

  .page-resources-b52-club-game-strategy__game-category,
  .page-resources-b52-club-game-strategy__responsible-content {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-b52-club-game-strategy__game-category--reverse {
    flex-direction: column;
  }

  .page-resources-b52-club-game-strategy__game-image-wrapper,
  .page-resources-b52-club-game-strategy__responsible-image-wrapper {
    min-width: unset;
    width: 100%;
    max-width: 700px;
    margin-bottom: 30px;
  }

  .page-resources-b52-club-game-strategy__game-content p,
  .page-resources-b52-club-game-strategy__game-tips li,
  .page-resources-b52-club-game-strategy__responsible-text p {
    text-align: left;
  }

  .page-resources-b52-club-game-strategy__game-title {
    text-align: center;
  }
}

@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-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-b52-club-game-strategy__main-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }

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

  .page-resources-b52-club-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-b52-club-game-strategy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-b52-club-game-strategy__hero-image-wrapper {
    display: none;
  }

  .page-resources-b52-club-game-strategy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-b52-club-game-strategy__strategies-overview,
  .page-resources-b52-club-game-strategy__game-strategies,
  .page-resources-b52-club-game-strategy__responsible-gaming,
  .page-resources-b52-club-game-strategy__faq-section,
  .page-resources-b52-club-game-strategy__related-articles,
  .page-resources-b52-club-game-strategy__final-cta {
    padding: 40px 0;
  }

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

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

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

  .page-resources-b52-club-game-strategy__card-title {
    font-size: 1.3em;
  }

  .page-resources-b52-club-game-strategy__game-category,
  .page-resources-b52-club-game-strategy__responsible-content {
    gap: 30px;
  }

  .page-resources-b52-club-game-strategy__game-image-wrapper,
  .page-resources-b52-club-game-strategy__responsible-image-wrapper {
    margin-bottom: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0;
  }

  .page-resources-b52-club-game-strategy__game-image,
  .page-resources-b52-club-game-strategy__responsible-image,
  .page-resources-b52-club-game-strategy__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover;
  }

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

  .page-resources-b52-club-game-strategy__game-content p,
  .page-resources-b52-club-game-strategy__game-tips li,
  .page-resources-b52-club-game-strategy__responsible-text p {
    font-size: 1em;
    text-align: left;
  }

  .page-resources-b52-club-game-strategy__faq-question {
    padding: 15px 20px;
  }

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

  .page-resources-b52-club-game-strategy__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-left: 15px;
  }

  .page-resources-b52-club-game-strategy__faq-answer {
    padding: 0 20px;
  }

  .page-resources-b52-club-game-strategy__faq-item.active .page-resources-b52-club-game-strategy__faq-answer {
    padding: 15px 20px !important;
  }

  .page-resources-b52-club-game-strategy__article-card h3 {
    font-size: 1.2em;
    margin: 15px 15px 8px 15px;
  }

  .page-resources-b52-club-game-strategy__article-card p,
  .page-resources-b52-club-game-strategy__article-date {
    margin: 0 15px 10px 15px;
    font-size: 0.95em;
  }

  .page-resources-b52-club-game-strategy__final-cta {
    padding: 60px 0;
  }

  .page-resources-b52-club-game-strategy__final-cta-content {
    padding: 0 15px;
  }
}