/* style/resources-789-club-game-card-exchange-guide.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-resources-789-club-game-card-exchange-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

/* Specific section backgrounds and text colors for contrast */
.page-resources-789-club-game-card-exchange-guide__dark-bg {
  background-color: #017439; /* Brand main color */
  color: #ffffff;
  padding: 60px 20px;
}

.page-resources-789-club-game-card-exchange-guide__light-bg {
  background-color: #FFFFFF; /* Auxiliary color */
  color: #333333; /* Dark text for light background */
  padding: 60px 20px;
}

.page-resources-789-club-game-card-exchange-guide__text-contrast-fix {
    color: #333333 !important; /* Ensure dark text on light background */
}

.page-resources-789-club-game-card-exchange-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-resources-789-club-game-card-exchange-guide__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  box-sizing: border-box;
}

.page-resources-789-club-game-card-exchange-guide__hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.page-resources-789-club-game-card-exchange-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-resources-789-club-game-card-exchange-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-resources-789-club-game-card-exchange-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color for highlight */
}

.page-resources-789-club-game-card-exchange-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-resources-789-club-game-card-exchange-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* Buttons */
.page-resources-789-club-game-card-exchange-guide__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 180px;
  text-align: center;
  border: 2px solid transparent;
}

.page-resources-789-club-game-card-exchange-guide__btn-primary:hover {
  background-color: #9c0606;
}

.page-resources-789-club-game-card-exchange-guide__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.page-resources-789-club-game-card-exchange-guide__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

/* Image-text layout */
.page-resources-789-club-game-card-exchange-guide__image-text-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-resources-789-club-game-card-exchange-guide__image-wrapper {
  flex: 1;
  min-width: 300px; /* Minimum width for image wrapper */
}

.page-resources-789-club-game-card-exchange-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
}

.page-resources-789-club-game-card-exchange-guide__text-content {
  flex: 1;
}

/* Card Grid */
.page-resources-789-club-game-card-exchange-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-789-club-game-card-exchange-guide__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-789-club-game-card-exchange-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-789-club-game-card-exchange-guide__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #FFFF00;
}

/* Lists */
.page-resources-789-club-game-card-exchange-guide__strategy-list,
.page-resources-789-club-game-card-exchange-guide__vip-benefits-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-789-club-game-card-exchange-guide__strategy-list li,
.page-resources-789-club-game-card-exchange-guide__vip-benefits-list li {
  margin-bottom: 10px;
}

/* App Download Section */
.page-resources-789-club-game-card-exchange-guide__app-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-resources-789-club-game-card-exchange-guide__app-text {
  flex: 1;
  min-width: 300px;
}

.page-resources-789-club-game-card-exchange-guide__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* FAQ Section */
.page-resources-789-club-game-card-exchange-guide__faq-list {
  margin-top: 40px;
}

.page-resources-789-club-game-card-exchange-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-789-club-game-card-exchange-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-789-club-game-card-exchange-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-789-club-game-card-exchange-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFFF00;
}

.page-resources-789-club-game-card-exchange-guide__faq-item.active .page-resources-789-club-game-card-exchange-guide__faq-toggle {
  transform: rotate(45deg); /* Change to minus sign visually */
}

.page-resources-789-club-game-card-exchange-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-789-club-game-card-exchange-guide__faq-item.active .page-resources-789-club-game-card-exchange-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-resources-789-club-game-card-exchange-guide__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Highlight text */
.page-resources-789-club-game-card-exchange-guide__highlight {
  color: #FFFF00; /* Yellow highlight for important keywords */
  font-weight: bold;
}

/* General text styles */
.page-resources-789-club-game-card-exchange-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFFF00;
}

.page-resources-789-club-game-card-exchange-guide__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FFFF00;
}

.page-resources-789-club-game-card-exchange-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-resources-789-club-game-card-exchange-guide__text-block a {
    color: #FFFF00;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-789-club-game-card-exchange-guide__hero-title {
    font-size: 3em;
  }
  .page-resources-789-club-game-card-exchange-guide__hero-description {
    font-size: 1.1em;
  }
  .page-resources-789-club-game-card-exchange-guide__section-title {
    font-size: 2em;
  }
  .page-resources-789-club-game-card-exchange-guide__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-789-club-game-card-exchange-guide__hero-section {
    height: auto;
    min-height: 600px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }

  .page-resources-789-club-game-card-exchange-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-789-club-game-card-exchange-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-789-club-game-card-exchange-guide__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-789-club-game-card-exchange-guide__btn-primary,
  .page-resources-789-club-game-card-exchange-guide__btn-secondary {
    width: 100% !important;
    max-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-789-club-game-card-exchange-guide__image-text-layout {
    flex-direction: column;
    gap: 20px;
  }
  .page-resources-789-club-game-card-exchange-guide__image-wrapper,
  .page-resources-789-club-game-card-exchange-guide__text-content {
    min-width: unset;
    width: 100%;
  }

  .page-resources-789-club-game-card-exchange-guide__card-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-789-club-game-card-exchange-guide__app-content {
    flex-direction: column;
  }
  .page-resources-789-club-game-card-exchange-guide__app-text,
  .page-resources-789-club-game-card-exchange-guide__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  /* Mobile image responsiveness */
  .page-resources-789-club-game-card-exchange-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Mobile video responsiveness */
  .page-resources-789-club-game-card-exchange-guide video,
  .page-resources-789-club-game-card-exchange-guide__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Containers for overflow prevention */
  .page-resources-789-club-game-card-exchange-guide__section,
  .page-resources-789-club-game-card-exchange-guide__card,
  .page-resources-789-club-game-card-exchange-guide__container,
  .page-resources-789-club-game-card-exchange-guide__video-section,
  .page-resources-789-club-game-card-exchange-guide__video-container,
  .page-resources-789-club-game-card-exchange-guide__video-wrapper,
  .page-resources-789-club-game-card-exchange-guide__cta-buttons,
  .page-resources-789-club-game-card-exchange-guide__button-group,
  .page-resources-789-club-game-card-exchange-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Crucial for preventing horizontal scroll */
  }

  .page-resources-789-club-game-card-exchange-guide__vip-content,
  .page-resources-789-club-game-card-exchange-guide__app-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}