.page-resources-hitclub-homepage-gameplay-deep-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Deep text color for light background */
  background-color: var(--secondary-color, #FFFFFF); /* Body background from shared */
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__section {
  padding: 60px 0;
  background-color: var(--secondary-color, #FFFFFF);
  border-bottom: 1px solid #f0f0f0;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__section-title {
  font-size: 36px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__paragraph {
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

/* Hero Section */
.page-resources-hitclub-homepage-gameplay-deep-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #26A9E0, #FFFFFF);
  color: #ffffff;
  overflow: hidden;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff; /* Ensure text is white on colored background */
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffffff;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__intro-text {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #ffffff;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__cta-button:hover {
  background: #d46b00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Card Grid for Overview Section */
.page-resources-hitclub-homepage-gameplay-deep-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__card-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__card-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
}

/* Game Categories Section */
.page-resources-hitclub-homepage-gameplay-deep-analysis__games {
  background-color: #f0f8ff; /* Light blue tint */
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__game-category {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__game-title {
  font-size: 28px;
  color: #26A9E0;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__game-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__game-subtitle {
  font-size: 20px;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__list {
  list-style: disc inside;
  text-align: left;
  margin: 0 auto 20px auto;
  padding-left: 20px;
  max-width: 700px;
  color: #555555;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Account Management Section */
.page-resources-hitclub-homepage-gameplay-deep-analysis__account-management {
  background-color: var(--secondary-color, #FFFFFF);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__step-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__step-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__step-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__step-description {
  font-size: 15px;
  color: #555555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #EA7C07; /* Login color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__btn-primary:hover {
  background: #d46b00;
  transform: translateY(-2px);
}

/* Promotions Section */
.page-resources-hitclub-homepage-gameplay-deep-analysis__promotions {
  background-color: #f0f8ff;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__promo-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__promo-text {
  font-size: 15px;
  color: #555555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__btn-secondary:hover {
  background: #1e87b9;
  transform: translateY(-2px);
}

/* Security & Support Section */
.page-resources-hitclub-homepage-gameplay-deep-analysis__security-support {
  background-color: var(--secondary-color, #FFFFFF);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__info-block {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__info-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__info-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__info-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
}

/* FAQ Section */
.page-resources-hitclub-homepage-gameplay-deep-analysis__faq {
  background-color: #f0f8ff;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__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-hitclub-homepage-gameplay-deep-analysis__faq-item.active .page-resources-hitclub-homepage-gameplay-deep-analysis__faq-answer {
  max-height: 2000px !important; /* Use !important and sufficiently large value */
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__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;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__faq-question:active {
  background: #eeeeee;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__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-resources-hitclub-homepage-gameplay-deep-analysis__faq-item.active .page-resources-hitclub-homepage-gameplay-deep-analysis__faq-toggle {
  color: #333;
  transform: rotate(45deg); /* Change + to X or - */
}

/* Latest News Section */
.page-resources-hitclub-homepage-gameplay-deep-analysis__latest-news {
  background-color: var(--secondary-color, #FFFFFF);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-card h3 {
  padding: 20px 20px 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  line-height: 1.4;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-link {
  text-decoration: none;
  color: #26A9E0;
  transition: color 0.3s ease;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-link:hover {
  color: #1e87b9;
  text-decoration: underline;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-excerpt {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
  flex-grow: 1;
  line-height: 1.7;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__news-date {
  display: block;
  padding: 0 20px 20px 20px;
  font-size: 13px;
  color: #888888;
}

/* Sticky Buttons */
.page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-register {
  background-color: #26A9E0;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-register:hover {
  background-color: #1e87b9;
  transform: translateY(-2px);
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-login {
  background-color: #EA7C07;
}

.page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-login:hover {
  background-color: #d46b00;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-hitclub-homepage-gameplay-deep-analysis__hero-content h1 {
    font-size: 40px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__intro-text {
    font-size: 17px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-resources-hitclub-homepage-gameplay-deep-analysis__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__hero-content h1 {
    font-size: 32px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__intro-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__section {
    padding: 40px 0;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__paragraph {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__card-grid, 
  .page-resources-hitclub-homepage-gameplay-deep-analysis__process-steps, 
  .page-resources-hitclub-homepage-gameplay-deep-analysis__promotion-grid, 
  .page-resources-hitclub-homepage-gameplay-deep-analysis__info-blocks,
  .page-resources-hitclub-homepage-gameplay-deep-analysis__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__game-category {
    padding: 30px 20px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__game-title {
    font-size: 24px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__game-subtitle {
    font-size: 18px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__list {
    padding-left: 15px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__btn-primary,
  .page-resources-hitclub-homepage-gameplay-deep-analysis__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__faq-answer {
    padding: 0 15px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__faq-item.active .page-resources-hitclub-homepage-gameplay-deep-analysis__faq-answer {
    padding: 15px !important;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__container,
  .page-resources-hitclub-homepage-gameplay-deep-analysis__hero-section,
  .page-resources-hitclub-homepage-gameplay-deep-analysis__section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-buttons {
    flex-direction: row;
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    bottom: 15px;
    justify-content: space-around;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-button {
    flex-grow: 1;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-resources-hitclub-homepage-gameplay-deep-analysis__hero-content h1 {
    font-size: 28px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__section-title {
    font-size: 24px;
  }
  .page-resources-hitclub-homepage-gameplay-deep-analysis__sticky-buttons {
    flex-direction: column;
  }
}