.page-resources-hit-club-newbie-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from shared.css body */
}

.page-resources-hit-club-newbie-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Auxiliary color for hero background */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-resources-hit-club-newbie-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-resources-hit-club-newbie-guide__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-hit-club-newbie-guide__main-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Primary color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-hit-club-newbie-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-hit-club-newbie-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-hit-club-newbie-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-hit-club-newbie-guide__cta-button--primary {
  background-color: #FFD700; /* Primary brand color */
  color: #000000; /* Black text for contrast */
}

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

.page-resources-hit-club-newbie-guide__cta-button--secondary {
  background-color: #000000; /* Auxiliary brand color */
  color: #FFD700; /* Primary brand color text */
  border: 2px solid #FFD700;
}

.page-resources-hit-club-newbie-guide__cta-button--secondary:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-hit-club-newbie-guide__content-section,
.page-resources-hit-club-newbie-guide__guide-section,
.page-resources-hit-club-newbie-guide__faq-section,
.page-resources-hit-club-newbie-guide__brand-section,
.page-resources-hit-club-newbie-guide__blog-section,
.page-resources-hit-club-newbie-guide__final-cta-section {
  padding: 80px 20px;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-hit-club-newbie-guide__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-resources-hit-club-newbie-guide__light-bg {
  background-color: #f9f9f9;
  color: #333333;
}

.page-resources-hit-club-newbie-guide__content-container,
.page-resources-hit-club-newbie-guide__guide-container,
.page-resources-hit-club-newbie-guide__faq-container,
.page-resources-hit-club-newbie-guide__brand-container,
.page-resources-hit-club-newbie-guide__blog-container,
.page-resources-hit-club-newbie-guide__final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-resources-hit-club-newbie-guide__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Primary color for section titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-hit-club-newbie-guide__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-hit-club-newbie-guide__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-hit-club-newbie-guide__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-hit-club-newbie-guide__feature-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-hit-club-newbie-guide__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-hit-club-newbie-guide__feature-item p {
  color: #f0f0f0;
}

.page-resources-hit-club-newbie-guide__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
  margin-top: 50px;
}

.page-resources-hit-club-newbie-guide__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  color: #333333;
  transition: box-shadow 0.3s ease;
}

.page-resources-hit-club-newbie-guide__step-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-hit-club-newbie-guide__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.page-resources-hit-club-newbie-guide__step-title::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: -5px;
  background-color: #FFD700;
  color: #000000;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: bold;
}

.page-resources-hit-club-newbie-guide__step-item:nth-child(1) .page-resources-hit-club-newbie-guide__step-title::before { content: '1'; }
.page-resources-hit-club-newbie-guide__step-item:nth-child(2) .page-resources-hit-club-newbie-guide__step-title::before { content: '2'; }
.page-resources-hit-club-newbie-guide__step-item:nth-child(3) .page-resources-hit-club-newbie-guide__step-title::before { content: '3'; }
.page-resources-hit-club-newbie-guide__step-item:nth-child(4) .page-resources-hit-club-newbie-guide__step-title::before { content: '4'; }

.page-resources-hit-club-newbie-guide__step-item p {
  margin-bottom: 20px;
}

.page-resources-hit-club-newbie-guide__btn-text {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-resources-hit-club-newbie-guide__btn-text:hover {
  color: #e6c200;
  border-color: #e6c200;
}

/* FAQ styles */
.page-resources-hit-club-newbie-guide__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-resources-hit-club-newbie-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-hit-club-newbie-guide__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 15px;
  opacity: 0;
}

.page-resources-hit-club-newbie-guide__faq-item.active .page-resources-hit-club-newbie-guide__faq-answer {
  max-height: 2000px !important; /* !important to override potential other styles */
  padding: 20px 15px !important;
  opacity: 1;
  background: #ffffff; /* Light background for answer text */
  border-top: 1px solid #e0e0e0;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

.page-resources-hit-club-newbie-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #000000; /* Dark background for questions */
  border: 1px solid #FFD700;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-resources-hit-club-newbie-guide__faq-question:hover {
  background: #1a1a1a;
  border-color: #e6c200;
}

.page-resources-hit-club-newbie-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-resources-hit-club-newbie-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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-resources-hit-club-newbie-guide__faq-item.active .page-resources-hit-club-newbie-guide__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Brand Section */
.page-resources-hit-club-newbie-guide__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-resources-hit-club-newbie-guide__brand-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #f0f0f0;
}

.page-resources-hit-club-newbie-guide__brand-subtitle {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-hit-club-newbie-guide__brand-item p {
  font-size: 0.95em;
}

.page-resources-hit-club-newbie-guide__brand-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

/* Blog Section */
.page-resources-hit-club-newbie-guide__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-resources-hit-club-newbie-guide__blog-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-resources-hit-club-newbie-guide__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-hit-club-newbie-guide__blog-link {
  display: block;
  text-decoration: none;
  color: #333333;
  padding-bottom: 20px;
}

.page-resources-hit-club-newbie-guide__blog-item-image {
  width: 100%;
  height: 220px; /* Fixed height for blog images */
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-hit-club-newbie-guide__blog-item-title {
  font-size: 1.3em;
  font-weight: bold;
  margin: 0 20px 10px;
  color: #000000;
}

.page-resources-hit-club-newbie-guide__blog-item-excerpt {
  font-size: 0.95em;
  margin: 0 20px 15px;
  color: #666666;
}

.page-resources-hit-club-newbie-guide__blog-item-date {
  font-size: 0.85em;
  color: #999999;
  display: block;
  margin: 0 20px;
}

.page-resources-hit-club-newbie-guide__blog-cta {
  margin-top: 60px;
}

.page-resources-hit-club-newbie-guide__final-cta-section {
  padding: 100px 20px;
  background-color: #000000;
  color: #ffffff;
}

/* General text color for sections with dark background */
.page-resources-hit-club-newbie-guide__content-section p,
.page-resources-hit-club-newbie-guide__brand-section p,
.page-resources-hit-club-newbie-guide__final-cta-section p {
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-hit-club-newbie-guide__main-title {
    font-size: 3em;
  }
  .page-resources-hit-club-newbie-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-hit-club-newbie-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-hit-club-newbie-guide__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-hit-club-newbie-guide__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-hit-club-newbie-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-resources-hit-club-newbie-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-hit-club-newbie-guide__content-section,
  .page-resources-hit-club-newbie-guide__guide-section,
  .page-resources-hit-club-newbie-guide__faq-section,
  .page-resources-hit-club-newbie-guide__brand-section,
  .page-resources-hit-club-newbie-guide__blog-section,
  .page-resources-hit-club-newbie-guide__final-cta-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-resources-hit-club-newbie-guide__content-container,
  .page-resources-hit-club-newbie-guide__guide-container,
  .page-resources-hit-club-newbie-guide__faq-container,
  .page-resources-hit-club-newbie-guide__brand-container,
  .page-resources-hit-club-newbie-guide__blog-container,
  .page-resources-hit-club-newbie-guide__final-cta-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-hit-club-newbie-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-resources-hit-club-newbie-guide__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-resources-hit-club-newbie-guide__features-grid,
  .page-resources-hit-club-newbie-guide__guide-steps,
  .page-resources-hit-club-newbie-guide__brand-content,
  .page-resources-hit-club-newbie-guide__blog-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-resources-hit-club-newbie-guide__feature-item,
  .page-resources-hit-club-newbie-guide__step-item,
  .page-resources-hit-club-newbie-guide__brand-item,
  .page-resources-hit-club-newbie-guide__blog-item {
    padding: 20px;
  }

  .page-resources-hit-club-newbie-guide__feature-item img,
  .page-resources-hit-club-newbie-guide__brand-image,
  .page-resources-hit-club-newbie-guide__blog-item-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-resources-hit-club-newbie-guide__feature-title {
    font-size: 1.3em;
  }

  .page-resources-hit-club-newbie-guide__step-title {
    font-size: 1.2em;
  }

  .page-resources-hit-club-newbie-guide__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }

  .page-resources-hit-club-newbie-guide__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }

  .page-resources-hit-club-newbie-guide__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-resources-hit-club-newbie-guide__faq-answer {
    padding: 0 15px;
  }

  .page-resources-hit-club-newbie-guide__faq-item.active .page-resources-hit-club-newbie-guide__faq-answer {
    padding: 15px !important;
  }

  .page-resources-hit-club-newbie-guide__blog-item-title {
    font-size: 1.1em;
  }

  .page-resources-hit-club-newbie-guide__blog-item-excerpt,
  .page-resources-hit-club-newbie-guide__blog-item-date {
    font-size: 0.9em;
  }

  /* Ensure all img elements within the content area do not cause overflow */
  .page-resources-hit-club-newbie-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-hit-club-newbie-guide__hero-section .page-resources-hit-club-newbie-guide__hero-image {
    min-width: unset;
    min-height: unset;
  }

  .page-resources-hit-club-newbie-guide__feature-item img,
  .page-resources-hit-club-newbie-guide__brand-image,
  .page-resources-hit-club-newbie-guide__blog-item-image {
    min-width: 200px;
    min-height: 200px;
  }
}

/* Ensure all images within the content area do not cause overflow on mobile */
@media (max-width: 768px) {
  .page-resources-hit-club-newbie-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-hit-club-newbie-guide__section,
  .page-resources-hit-club-newbie-guide__card,
  .page-resources-hit-club-newbie-guide__container,
  .page-resources-hit-club-newbie-guide__hero-section,
  .page-resources-hit-club-newbie-guide__hero-container,
  .page-resources-hit-club-newbie-guide__content-container,
  .page-resources-hit-club-newbie-guide__guide-container,
  .page-resources-hit-club-newbie-guide__faq-container,
  .page-resources-hit-club-newbie-guide__brand-container,
  .page-resources-hit-club-newbie-guide__blog-container,
  .page-resources-hit-club-newbie-guide__final-cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-hit-club-newbie-guide__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources-hit-club-newbie-guide__hero-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-hit-club-newbie-guide__cta-buttons {
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources-hit-club-newbie-guide__faq-list {
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources-hit-club-newbie-guide__blog-list {
    padding-left: 0;
    padding-right: 0;
  }
}