.page-resources-b52-club-in-depth-review {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #0A2239; /* Deep blue-black for main text */
  background-color: #F5F5DC; /* Light background */
}

.page-resources-b52-club-in-depth-review strong {
  font-weight: bold;
  color: #0A2239;
}

.page-resources-b52-club-in-depth-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-b52-club-in-depth-review__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #0A2239 50%, #FFD700 100%);
  color: #F5F5DC;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-resources-b52-club-in-depth-review__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-resources-b52-club-in-depth-review__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-b52-club-in-depth-review__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #F5F5DC;
}

.page-resources-b52-club-in-depth-review__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 700px;
  height: auto;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
  .page-resources-b52-club-in-depth-review__main-title {
    font-size: 2.5em;
  }
  .page-resources-b52-club-in-depth-review__subtitle {
    font-size: 1.2em;
  }
  .page-resources-b52-club-in-depth-review__hero-image {
    width: 80%;
    bottom: -20px;
  }
}

@media (max-width: 480px) {
  .page-resources-b52-club-in-depth-review__main-title {
    font-size: 2em;
  }
  .page-resources-b52-club-in-depth-review__subtitle {
    font-size: 1em;
  }
  .page-resources-b52-club-in-depth-review__hero-image {
    width: 100%;
    bottom: -50px;
  }
}

.page-resources-b52-club-in-depth-review__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(10, 34, 57, 0.1);
}

.page-resources-b52-club-in-depth-review__section:last-of-type {
  border-bottom: none;
}

.page-resources-b52-club-in-depth-review__section-title {
  font-size: 2.5em;
  color: #0A2239;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-b52-club-in-depth-review__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-b52-club-in-depth-review__sub-section-title {
  font-size: 1.8em;
  color: #0A2239;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-b52-club-in-depth-review p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #0A2239;
}

.page-resources-b52-club-in-depth-review__cta-button,
.page-resources-b52-club-in-depth-review__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2239;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-resources-b52-club-in-depth-review__cta-button:hover,
.page-resources-b52-club-in-depth-review__button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-resources-b52-club-in-depth-review__button--primary {
  background-color: #FFD700;
  color: #0A2239;
}

.page-resources-b52-club-in-depth-review__button--primary:hover {
  background-color: #e6c200;
}

.page-resources-b52-club-in-depth-review__image--full-width {
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-b52-club-in-depth-review__image--inline {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-resources-b52-club-in-depth-review__game-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-b52-club-in-depth-review__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-b52-club-in-depth-review__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.3));
}

.page-resources-b52-club-in-depth-review__game-title {
  font-size: 1.5em;
  color: #0A2239;
  margin-bottom: 10px;
}

.page-resources-b52-club-in-depth-review__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-resources-b52-club-in-depth-review__promo-list li {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #0A2239;
  position: relative;
  padding-left: 45px;
}

.page-resources-b52-club-in-depth-review__promo-list li::before {
  content: '⭐'; /* Unicode star */
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.2em;
  color: #FFD700;
}

.page-resources-b52-club-in-depth-review__grid--2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .page-resources-b52-club-in-depth-review__grid--2-col {
    grid-template-columns: 1fr;
  }
}

.page-resources-b52-club-in-depth-review__card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-resources-b52-club-in-depth-review__card-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-b52-club-in-depth-review__card-title--pros {
  color: #28a745; /* Green for pros */
}

.page-resources-b52-club-in-depth-review__card-title--cons {
  color: #dc3545; /* Red for cons */
}

.page-resources-b52-club-in-depth-review__list {
  list-style: none;
  padding: 0;
}

.page-resources-b52-club-in-depth-review__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #0A2239;
}

.page-resources-b52-club-in-depth-review__list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-resources-b52-club-in-depth-review__list li .page-resources-b52-club-in-depth-review__card-title--pros + ul li::before {
  content: '✅';
}

.page-resources-b52-club-in-depth-review__list li .page-resources-b52-club-in-depth-review__card-title--cons + ul li::before {
  content: '❌';
}

.page-resources-b52-club-in-depth-review__cta-button--final {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #FFD700;
  color: #0A2239;
  font-size: 1.5em;
  padding: 20px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-club-in-depth-review__cta-button--final:hover {
  background-color: #e6c200;
  transform: translateY(-5px) scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-b52-club-in-depth-review__main-title {
    font-size: 3em;
  }
  .page-resources-b52-club-in-depth-review__section-title {
    font-size: 2em;
  }
  .page-resources-b52-club-in-depth-review__sub-section-title {
    font-size: 1.6em;
  }
  .page-resources-b52-club-in-depth-review p {
    font-size: 1em;
  }
  .page-resources-b52-club-in-depth-review__hero-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-b52-club-in-depth-review__main-title {
    font-size: 2.2em;
  }
  .page-resources-b52-club-in-depth-review__subtitle {
    font-size: 1.1em;
  }
  .page-resources-b52-club-in-depth-review__section-title {
    font-size: 1.8em;
  }
  .page-resources-b52-club-in-depth-review__sub-section-title {
    font-size: 1.4em;
  }
  .page-resources-b52-club-in-depth-review__game-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-b52-club-in-depth-review__promo-list {
    grid-template-columns: 1fr;
  }
  .page-resources-b52-club-in-depth-review__cta-button,
  .page-resources-b52-club-in-depth-review__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-resources-b52-club-in-depth-review__cta-button--final {
    font-size: 1.3em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-resources-b52-club-in-depth-review__main-title {
    font-size: 1.8em;
  }
  .page-resources-b52-club-in-depth-review__subtitle {
    font-size: 0.9em;
  }
  .page-resources-b52-club-in-depth-review__section-title {
    font-size: 1.5em;
  }
  .page-resources-b52-club-in-depth-review__sub-section-title {
    font-size: 1.2em;
  }
  .page-resources-b52-club-in-depth-review p {
    font-size: 0.9em;
  }
  .page-resources-b52-club-in-depth-review__hero-section {
    padding: 40px 15px;
    min-height: 300px;
  }
  .page-resources-b52-club-in-depth-review__cta-button,
  .page-resources-b52-club-in-depth-review__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-resources-b52-club-in-depth-review__cta-button--final {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}