.page-resources-latest-79club-link {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* Inherit from shared.css */
}

.page-resources-latest-79club-link__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  color: #ffffff;
}

.page-resources-latest-79club-link__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-resources-latest-79club-link__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-latest-79club-link__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-latest-79club-link__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-latest-79club-link__btn-primary,
.page-resources-latest-79club-link__btn-secondary,
.page-resources-latest-79club-link__card-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  text-align: center;
}

.page-resources-latest-79club-link__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-latest-79club-link__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-resources-latest-79club-link__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-latest-79club-link__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-latest-79club-link__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-latest-79club-link__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-resources-latest-79club-link__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-latest-79club-link__medium-bg {
  background-color: #f5f5f5;
  color: #333333;
}

.page-resources-latest-79club-link__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-latest-79club-link__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
}

.page-resources-latest-79club-link__section-title--white {
  color: #ffffff;
}

.page-resources-latest-79club-link__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-resources-latest-79club-link__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-latest-79club-link__paragraph--white {
  color: #f0f0f0;
}

.page-resources-latest-79club-link__highlight {
  font-weight: bold;
  color: #EA7C07; /* Highlight color for keywords */
}

.page-resources-latest-79club-link__dark-bg .page-resources-latest-79club-link__highlight {
  color: #ffffff; /* Ensure highlight is visible on dark bg */
}

.page-resources-latest-79club-link__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-79club-link__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-latest-79club-link__list-item {
  margin-bottom: 10px;
}

.page-resources-latest-79club-link__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-latest-79club-link__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333; /* Text color for cards on light/medium background */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-latest-79club-link__card:hover {
  transform: translateY(-5px);
}

.page-resources-latest-79club-link__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Enforce min image size */
  object-fit: cover;
}

.page-resources-latest-79club-link__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-latest-79club-link__card-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-latest-79club-link__card-button {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto; /* Push button to bottom */
}

.page-resources-latest-79club-link__card-button:hover {
  background-color: #1a7bbd;
}

.page-resources-latest-79club-link__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-latest-79club-link__feature-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  color: #ffffff;
}

.page-resources-latest-79club-link__feature-icon {
  width: 200px; /* Adjusted to meet minimum size requirement */
  height: 200px; /* Adjusted to meet minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-79club-link__feature-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-resources-latest-79club-link__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-latest-79club-link__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-resources-latest-79club-link__game-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-latest-79club-link__game-card:hover {
  transform: translateY(-5px);
}

.page-resources-latest-79club-link__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

.page-resources-latest-79club-link__game-title {
  font-size: 1.4em;
  margin: 15px 10px 10px;
}

.page-resources-latest-79club-link__game-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-latest-79club-link__game-link:hover {
  text-decoration: underline;
}

.page-resources-latest-79club-link__game-description {
  font-size: 0.95em;
  padding: 0 15px 15px;
  color: #555555;
}

.page-resources-latest-79club-link__promo-app-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-latest-79club-link__promo-card,
.page-resources-latest-79club-link__app-download-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-latest-79club-link__promo-image,
.page-resources-latest-79club-link__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Enforce min image size */
  object-fit: cover;
}

.page-resources-latest-79club-link__promo-title,
.page-resources-latest-79club-link__app-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-resources-latest-79club-link__promo-description,
.page-resources-latest-79club-link__app-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-resources-latest-79club-link__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-resources-latest-79club-link__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-resources-latest-79club-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  color: #26A9E0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-resources-latest-79club-link__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-latest-79club-link__faq-question:hover {
  background-color: #eef7fc;
}

.page-resources-latest-79club-link__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #555555;
  line-height: 1.7;
}

.page-resources-latest-79club-link__cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(45deg, #1a7bbd, #26A9E0);
  color: #ffffff;
}

.page-resources-latest-79club-link__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-latest-79club-link__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-latest-79club-link__cta-buttons-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-latest-79club-link__hero-title {
    font-size: 3em;
  }
  .page-resources-latest-79club-link__section-title {
    font-size: 2em;
  }
  .page-resources-latest-79club-link__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-79club-link__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile specific header offset */
  }
  .page-resources-latest-79club-link__hero-title {
    font-size: 2.5em;
  }
  .page-resources-latest-79club-link__hero-description {
    font-size: 1em;
  }
  .page-resources-latest-79club-link__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-resources-latest-79club-link__btn-primary,
  .page-resources-latest-79club-link__btn-secondary,
  .page-resources-latest-79club-link__card-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-latest-79club-link__content-area,
  .page-resources-latest-79club-link__cta-section {
    padding: 30px 15px;
  }

  .page-resources-latest-79club-link__section-title {
    font-size: 1.8em;
  }
  .page-resources-latest-79club-link__sub-title {
    font-size: 1.4em;
  }
  .page-resources-latest-79club-link__paragraph {
    font-size: 1em;
  }
  .page-resources-latest-79club-link__list {
    margin-left: 15px;
    font-size: 1em;
  }

  .page-resources-latest-79club-link__card-grid,
  .page-resources-latest-79club-link__feature-list,
  .page-resources-latest-79club-link__game-showcase,
  .page-resources-latest-79club-link__promo-app-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-latest-79club-link__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-latest-79club-link__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  .page-resources-latest-79club-link__cta-title {
    font-size: 2em;
  }
  .page-resources-latest-79club-link__cta-description {
    font-size: 1em;
  }
}