/* style/resources-what-is-hit-club.css */

:root {
  --page-primary-color: #007BFF;
  --page-secondary-color: #FFD700;
  --page-text-dark: #212529; /* Dark text for light backgrounds */
  --page-text-light: #ffffff; /* Light text for dark backgrounds */
  --page-background-light: #f8f9fa;
  --page-background-dark: #343a40;
  --page-accent-color: #ff8400; /* Complementary to primary */
}

.page-resources-what-is-hit-club {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--page-text-dark);
  background-color: var(--page-background-light);
}

.page-resources-what-is-hit-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-what-is-hit-club__section {
  padding: 60px 0;
  border-bottom: 1px solid #e9ecef;
}

.page-resources-what-is-hit-club__section:last-of-type {
  border-bottom: none;
}

.page-resources-what-is-hit-club__section-title {
  font-size: 2.5em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-what-is-hit-club__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Hero Section */
.page-resources-what-is-hit-club__hero {
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Darker blue gradient */
  color: var(--page-text-light);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-resources-what-is-hit-club__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-resources-what-is-hit-club__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--page-text-light);
}

.page-resources-what-is-hit-club__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-what-is-hit-club__hero-button {
  display: inline-block;
  background-color: var(--page-secondary-color);
  color: var(--page-text-dark);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-what-is-hit-club__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-what-is-hit-club__hero-image-container {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-resources-what-is-hit-club__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Text & Links */
.page-resources-what-is-hit-club p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #495057;
}

.page-resources-what-is-hit-club ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-what-is-hit-club ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #495057;
}

.page-resources-what-is-hit-club strong {
  color: var(--page-primary-color);
}

.page-resources-what-is-hit-club__link-inline {
  color: var(--page-primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-what-is-hit-club__link-inline:hover {
  color: var(--page-accent-color);
  text-decoration: underline;
}

/* Content Images */
.page-resources-what-is-hit-club__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-what-is-hit-club__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Game Grid */
.page-resources-what-is-hit-club__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-what-is-hit-club__game-item {
  background-color: var(--page-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-resources-what-is-hit-club__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-resources-what-is-hit-club__game-item h3 {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
}

.page-resources-what-is-hit-club__game-item p {
  font-size: 1em;
  color: #6c757d;
}

/* Advantage List */
.page-resources-what-is-hit-club__advantage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-what-is-hit-club__advantage-list li {
  background-color: var(--page-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-left: 0; /* Override default list-style margin */
}

.page-resources-what-is-hit-club__advantage-list li:hover {
  transform: translateY(-5px);
}

.page-resources-what-is-hit-club__advantage-list h3 {
  color: var(--page-primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-what-is-hit-club__advantage-list p {
  font-size: 1em;
  color: #6c757d;
}

/* Promotion Grid */
.page-resources-what-is-hit-club__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-what-is-hit-club__promo-item {
  background-color: var(--page-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-resources-what-is-hit-club__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-what-is-hit-club__promo-item h3 {
  font-size: 1.4em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
}

.page-resources-what-is-hit-club__promo-item p {
  font-size: 1em;
  color: #6c757d;
}

/* CTA Buttons */
.page-resources-what-is-hit-club__button {
  display: inline-block;
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-resources-what-is-hit-club__button:hover {
  background-color: #0056b3; /* Darker primary */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-resources-what-is-hit-club__button--small {
  font-size: 0.9em;
  padding: 8px 20px;
}

.page-resources-what-is-hit-club__button--large {
  font-size: 1.3em;
  padding: 18px 40px;
}

.page-resources-what-is-hit-club__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-resources-what-is-hit-club__cta-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.2em;
  color: var(--page-text-dark);
}

/* Guide Section */
.page-resources-what-is-hit-club__guide h3 {
  font-size: 1.8em;
  color: var(--page-accent-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

/* FAQ Accordion */
.page-resources-what-is-hit-club__accordion {
  margin-top: 40px;
}

.page-resources-what-is-hit-club__accordion-item {
  background-color: var(--page-text-light);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-what-is-hit-club__accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-what-is-hit-club__accordion-header:hover {
  background-color: #0056b3;
}

.page-resources-what-is-hit-club__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-what-is-hit-club__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-what-is-hit-club__accordion-content {
  padding: 0 25px;
  background-color: var(--page-background-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-what-is-hit-club__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
  color: var(--page-text-dark);
}

.page-resources-what-is-hit-club__accordion-content.active {
  max-height: 200px; /* Adjust based on expected content height */
  padding-bottom: 25px;
}

/* Conclusion */
.page-resources-what-is-hit-club__conclusion {
  text-align: center;
}

.page-resources-what-is-hit-club__conclusion p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-what-is-hit-club__hero {
    flex-direction: column;
    padding: 80px 20px;
  }

  .page-resources-what-is-hit-club__hero-title {
    font-size: 3em;
  }

  .page-resources-what-is-hit-club__hero-description {
    font-size: 1.2em;
  }

  .page-resources-what-is-hit-club__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-what-is-hit-club__hero-title {
    font-size: 2.5em;
  }

  .page-resources-what-is-hit-club__hero-description {
    font-size: 1.1em;
  }

  .page-resources-what-is-hit-club__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-what-is-hit-club__section {
    padding: 40px 0;
  }

  .page-resources-what-is-hit-club__game-grid,
  .page-resources-what-is-hit-club__advantage-list,
  .page-resources-what-is-hit-club__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-what-is-hit-club__guide h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-resources-what-is-hit-club__hero {
    padding: 60px 15px;
  }

  .page-resources-what-is-hit-club__hero-title {
    font-size: 2em;
  }

  .page-resources-what-is-hit-club__hero-description {
    font-size: 1em;
  }

  .page-resources-what-is-hit-club__section-title {
    font-size: 1.8em;
  }

  .page-resources-what-is-hit-club p,
  .page-resources-what-is-hit-club ul li {
    font-size: 1em;
  }

  .page-resources-what-is-hit-club__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
}