.page-index-review-b52-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: #000; /* Assuming body background is black from shared.css */
}

.page-index-review-b52-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Fixed navigation padding */
.page-index-review-b52-club__hero-banner {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  text-align: center;
}

.page-index-review-b52-club__main-title {
  font-size: 3.2em;
  color: #E3B505;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-review-b52-club__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-b52-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
}

.page-index-review-b52-club__btn-primary {
  background: linear-gradient(135deg, #E3B505, #ffcc00);
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(227, 181, 5, 0.4);
}

.page-index-review-b52-club__btn-primary:hover {
  background: linear-gradient(135deg, #ffcc00, #E3B505);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 181, 5, 0.6);
}

.page-index-review-b52-club__btn-secondary {
  background: #0A2463;
  color: #ffffff;
  border: 2px solid #E3B505;
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.4);
}

.page-index-review-b52-club__btn-secondary:hover {
  background: #1a3c7a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.6);
}

.page-index-review-b52-club__section {
  padding: 60px 0;
}

.page-index-review-b52-club__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-index-review-b52-club__light-bg {
  background-color: #f1f3f5;
  color: #333333;
}

.page-index-review-b52-club__dark-section {
  background-color: #0A2463;
  color: #ffffff;
}

.page-index-review-b52-club__section-title {
  font-size: 2.5em;
  color: #E3B505;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-review-b52-club__dark-section .page-index-review-b52-club__section-title {
  color: #E3B505;
}

.page-index-review-b52-club__content-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  color: #333333;
}

.page-index-review-b52-club__content-card p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-index-review-b52-club__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-index-review-b52-club__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-index-review-b52-club__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-b52-club__feature-icon {
  width: 150px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-index-review-b52-club__feature-title {
  font-size: 1.5em;
  color: #E3B505;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-review-b52-club__feature-card p {
  font-size: 1em;
  line-height: 1.7;
  flex-grow: 1; /* Allow paragraph to take available space */
}

.page-index-review-b52-club__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-index-review-b52-club__pros-cons {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.page-index-review-b52-club__pros-card,
.page-index-review-b52-club__cons-card {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  color: #333333;
}

.page-index-review-b52-club__pros-card h3,
.page-index-review-b52-club__cons-card h3 {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-index-review-b52-club__pros-card ul,
.page-index-review-b52-club__cons-card ul {
  list-style: none;
  padding: 0;
}

.page-index-review-b52-club__pros-card li,
.page-index-review-b52-club__cons-card li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
}

.page-index-review-b52-club__pros-card li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #28a745;
}

.page-index-review-b52-club__cons-card li::before {
  content: '❌';
  position: absolute;
  left: 0;
  color: #dc3545;
}

.page-index-review-b52-club__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-index-review-b52-club__step-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-index-review-b52-club__step-image {
  width: 180px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-index-review-b52-club__step-card h3 {
  font-size: 1.6em;
  color: #E3B505;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-review-b52-club__step-card p {
  font-size: 1em;
  line-height: 1.7;
  flex-grow: 1;
}

.page-index-review-b52-club__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-index-review-b52-club__game-category-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: #333333;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-index-review-b52-club__category-image {
  width: 180px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-index-review-b52-club__game-category-card h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-review-b52-club__game-category-card p {
  font-size: 1em;
  line-height: 1.7;
  flex-grow: 1;
}

.page-index-review-b52-club__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-b52-club__dark-section .page-index-review-b52-club__text-block {
  color: #f0f0f0;
}

.page-index-review-b52-club__comparison-table {
  overflow-x: auto;
  margin-top: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.page-index-review-b52-club__comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.page-index-review-b52-club__comparison-table th,
.page-index-review-b52-club__comparison-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  text-align: left;
  color: #333333;
}

.page-index-review-b52-club__comparison-table th {
  background-color: #0A2463;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
}

.page-index-review-b52-club__comparison-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-index-review-b52-club__comparison-table tbody tr:hover {
  background-color: #f0f0f0;
}

.page-index-review-b52-club__comparison-table td a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-b52-club__comparison-table td a:hover {
  text-decoration: underline;
  color: #E3B505;
}

/* FAQ Styles */
.page-index-review-b52-club__faq-list {
  margin-top: 30px;
}

.page-index-review-b52-club__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-review-b52-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-index-review-b52-club__faq-item.active .page-index-review-b52-club__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

.page-index-review-b52-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-index-review-b52-club__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-review-b52-club__faq-question:active {
  background: #eeeeee;
}

.page-index-review-b52-club__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #0A2463;
}

.page-index-review-b52-club__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-review-b52-club__faq-item.active .page-index-review-b52-club__faq-toggle {
  color: #E3B505;
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-b52-club__main-title {
    font-size: 2.8em;
  }

  .page-index-review-b52-club__section-title {
    font-size: 2em;
  }

  .page-index-review-b52-club__grid,
  .page-index-review-b52-club__guide-steps,
  .page-index-review-b52-club__game-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .page-index-review-b52-club__pros-cons {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-review-b52-club__hero-banner {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
  }

  .page-index-review-b52-club__main-title {
    font-size: 2em;
  }

  .page-index-review-b52-club__hero-description {
    font-size: 1em;
  }

  .page-index-review-b52-club__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-review-b52-club__section {
    padding: 40px 0;
  }

  .page-index-review-b52-club__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-index-review-b52-club__content-card,
  .page-index-review-b52-club__pros-card,
  .page-index-review-b52-club__cons-card,
  .page-index-review-b52-club__feature-card,
  .page-index-review-b52-club__step-card,
  .page-index-review-b52-club__game-category-card {
    padding: 20px;
  }

  .page-index-review-b52-club__feature-icon,
  .page-index-review-b52-club__step-image,
  .page-index-review-b52-club__category-image {
    width: 120px;
    margin-bottom: 15px;
  }

  .page-index-review-b52-club__feature-title,
  .page-index-review-b52-club__step-card h3,
  .page-index-review-b52-club__game-category-card h3 {
    font-size: 1.3em;
  }

  .page-index-review-b52-club__pros-card h3,
  .page-index-review-b52-club__cons-card h3 {
    font-size: 1.5em;
  }

  .page-index-review-b52-club__grid,
  .page-index-review-b52-club__guide-steps,
  .page-index-review-b52-club__game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-b52-club__comparison-table {
    padding: 10px;
  }

  .page-index-review-b52-club__comparison-table th,
  .page-index-review-b52-club__comparison-table td {
    padding: 8px 10px;
    font-size: 0.9em;
  }

  .page-index-review-b52-club__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index-review-b52-club__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-index-review-b52-club__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-index-review-b52-club__faq-answer {
    padding: 0 15px;
  }
  
  .page-index-review-b52-club__faq-item.active .page-index-review-b52-club__faq-answer {
    padding: 15px !important;
  }
  
  /* Ensure all images are responsive and prevent overflow */
  .page-index-review-b52-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-b52-club__section,
  .page-index-review-b52-club__container,
  .page-index-review-b52-club__content-card,
  .page-index-review-b52-club__feature-card,
  .page-index-review-b52-club__step-card,
  .page-index-review-b52-club__game-category-card,
  .page-index-review-b52-club__pros-card,
  .page-index-review-b52-club__cons-card,
  .page-index-review-b52-club__comparison-table {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}