/* style/resources-789-club-game-download-guide.css */

.page-resources-789-club-game-download-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is from shared.css */
}

.page-resources-789-club-game-download-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #017439; /* Brand primary for hero background */
  color: #ffffff;
  overflow: hidden;
  min-height: 500px;
}

.page-resources-789-club-game-download-guide__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-789-club-game-download-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-789-club-game-download-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
  opacity: 0.9;
}

.page-resources-789-club-game-download-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-resources-789-club-game-download-guide__btn-primary,
.page-resources-789-club-game-download-guide__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, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-789-club-game-download-guide__btn-primary {
  background-color: #C30808; /* Red for primary action */
  color: #FFFF00; /* Yellow for text */
  border: 2px solid #C30808;
}

.page-resources-789-club-game-download-guide__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-resources-789-club-game-download-guide__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Brand primary green */
  border: 2px solid #017439;
}

.page-resources-789-club-game-download-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-789-club-game-download-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-789-club-game-download-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.8); /* Darken image slightly to enhance text readability */
}