/* style/resources-how-to-download-789club.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0;
  --login-button-color: #EA7C07;
}

.page-resources-how-to-download-789club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background: var(--background-light); /* Default background */
}

.page-resources-how-to-download-789club__dark-bg {
  background: var(--background-dark);
  color: var(--text-light);
}

.page-resources-how-to-download-789club__light-bg {
  background: var(--background-light);
  color: var(--text-dark);
}

/* Hero Section */
.page-resources-how-to-download-789club__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7fb0 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-resources-how-to-download-789club__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-resources-how-to-download-789club__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-how-to-download-789club__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-how-to-download-789club__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-how-to-download-789club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%); /* Example: subtle background image effect */
  transform: scale(1.1);
}

/* General Section Styling */
.page-resources-how-to-download-789club__section {
  padding: 60px 20px;
}

.page-resources-how-to-download-789club__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-how-to-download-789club__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.page-resources-how-to-download-789club__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-how-to-download-789club__subsection-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

/* Buttons */
.page-resources-how-to-download-789club__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-how-to-download-789club__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-resources-how-to-download-789club__btn-primary,
.page-resources-how-to-download-789club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-download-789club__btn-primary {
  background: var(--login-button-color); /* Using login color for primary CTA */
  color: var(--text-light);
  border: 2px solid var(--login-button-color);
}

.page-resources-how-to-download-789club__btn-primary:hover {
  background: darken(var(--login-button-color), 10%);
  border-color: darken(var(--login-button-color), 10%);
}

.page-resources-how-to-download-789club__btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-resources-how-to-download-789club__btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary-color);
}

/* Features Grid */
.page-resources-how-to-download-789club__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-download-789club__feature-card {
  background: var(--background-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
}

.page-resources-how-to-download-789club__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-how-to-download-789club__feature-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* Download Steps */
.page-resources-how-to-download-789club__download-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
  align-items: flex-start;
}

.page-resources-how-to-download-789club__download-platform {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  color: var(--text-light);
}

.page-resources-how-to-download-789club__platform-title {
  font-size: 2em;
  color: var(--text-light);
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-how-to-download-789club__step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-how-to-download-789club__step-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  position: relative;
  padding-left: 30px;
}

.page-resources-how-to-download-789club__step-list li strong {
  color: var(--secondary-color);
}

.page-resources-how-to-download-789club__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background: var(--login-button-color);
  color: var(--text-light);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9em;
  font-weight: bold;
}

.page-resources-how-to-download-789club__step-list li a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-how-to-download-789club__step-list li a:hover {
  color: var(--primary-color);
}

.page-resources-how-to-download-789club__download-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-download-789club__bullet-list {
  list-style: disc;
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding-left: 20px;
  color: var(--text-light);
}

.page-resources-how-to-download-789club__bullet-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Issue Cards */
.page-resources-how-to-download-789club__issue-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Process Cards */
.page-resources-how-to-download-789club__process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-download-789club__card {
  background: var(--background-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-how-to-download-789club__card-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-how-to-download-789club__card p {
  margin-bottom: 20px;
}

/* Game Grid */
.page-resources-how-to-download-789club__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-download-789club__game-card {
  background: var(--background-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  color: var(--text-dark);
}

.page-resources-how-to-download-789club__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-download-789club__game-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin: 20px 15px 10px 15px;
}

.page-resources-how-to-download-789club__game-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-how-to-download-789club__game-title a:hover {
  text-decoration: underline;
}

.page-resources-how-to-download-789club__game-card p {
  padding: 0 15px 20px 15px;
  font-size: 0.95em;
}

/* Promotions Grid */
.page-resources-how-to-download-789club__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-download-789club__promotion-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.page-resources-how-to-download-789club__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ */
.page-resources-how-to-download-789club__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-resources-how-to-download-789club__faq-item {
  background: var(--background-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-resources-how-to-download-789club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary-color);
  background: #f9f9f9;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-download-789club__faq-question:hover {
  background: #e0f2f7;
}

.page-resources-how-to-download-789club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-download-789club__faq-item.active .page-resources-how-to-download-789club__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-download-789club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-how-to-download-789club__faq-item.active .page-resources-how-to-download-789club__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 20px;
}

.page-resources-how-to-download-789club__faq-answer p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* Image Styling for content area */
.page-resources-how-to-download-789club img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-download-789club__hero-title {
    font-size: 2.8em;
  }

  .page-resources-how-to-download-789club__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-download-789club__download-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-download-789club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-how-to-download-789club__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-resources-how-to-download-789club__hero-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-download-789club__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-download-789club__section {
    padding: 40px 15px;
  }

  .page-resources-how-to-download-789club__section-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-download-789club__subsection-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-download-789club__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-download-789club__btn-primary,
  .page-resources-how-to-download-789club__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-how-to-download-789club__features-grid,
  .page-resources-how-to-download-789club__issue-cards,
  .page-resources-how-to-download-789club__process-cards,
  .page-resources-how-to-download-789club__game-grid,
  .page-resources-how-to-download-789club__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-how-to-download-789club__feature-card,
  .page-resources-how-to-download-789club__card,
  .page-resources-how-to-download-789club__game-card,
  .page-resources-how-to-download-789club__promotion-card {
    padding: 20px;
  }

  .page-resources-how-to-download-789club__download-platform {
    padding: 30px;
  }

  .page-resources-how-to-download-789club__platform-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-download-789club__step-list li,
  .page-resources-how-to-download-789club__bullet-list li {
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-resources-how-to-download-789club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-download-789club__section,
  .page-resources-how-to-download-789club__card,
  .page-resources-how-to-download-789club__container,
  .page-resources-how-to-download-789club__hero-section,
  .page-resources-how-to-download-789club__download-platform,
  .page-resources-how-to-download-789club__feature-card,
  .page-resources-how-to-download-789club__game-card,
  .page-resources-how-to-download-789club__promotion-card,
  .page-resources-how-to-download-789club__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right should be handled by the section/content-area if needed */
    /* overflow: hidden !important; */ /* only if necessary to prevent horizontal scroll from children */
  }
  
  .page-resources-how-to-download-789club__content-area {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-resources-how-to-download-789club__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-resources-how-to-download-789club__faq-answer {
    padding: 0 15px;
  }
  .page-resources-how-to-download-789club__faq-item.active .page-resources-how-to-download-789club__faq-answer {
    padding: 15px 15px;
  }
}

/* Contrast Fixes */
.page-resources-how-to-download-789club__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}