/* style/resources-latest-hit-club-download-links.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #121212; /* From body background in shared.css */
  --btn-register-bg: #C30808;
  --btn-login-bg: #C30808;
  --btn-font-color: #FFFF00;
}

.page-resources-latest-hit-club-download-links {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Main text color for dark body background */
  background-color: var(--bg-dark); /* Ensure main content area respects body background */
}

.page-resources-latest-hit-club-download-links__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-latest-hit-club-download-links__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  position: relative;
  overflow: hidden;
}

.page-resources-latest-hit-club-download-links__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
  text-align: center;
  padding: 0 20px;
}

.page-resources-latest-hit-club-download-links__main-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-hit-club-download-links__intro-text {
  font-size: 1.2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-hit-club-download-links__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-latest-hit-club-download-links__cta-buttons--center {
  margin-top: 40px;
}

.page-resources-latest-hit-club-download-links__btn-primary,
.page-resources-latest-hit-club-download-links__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-hit-club-download-links__btn-primary {
  background-color: var(--btn-register-bg); /* Use specific register color */
  color: var(--btn-font-color); /* Use specific font color */
  border: 2px solid var(--btn-register-bg);
}

.page-resources-latest-hit-club-download-links__btn-primary:hover {
  background-color: #a40707; /* Darken for hover */
  border-color: #a40707; /* Darken for hover */
}

.page-resources-latest-hit-club-download-links__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-latest-hit-club-download-links__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-latest-hit-club-download-links__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-latest-hit-club-download-links__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for better text contrast */
}

.page-resources-latest-hit-club-download-links__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-latest-hit-club-download-links__heading {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.page-resources-latest-hit-club-download-links__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-latest-hit-club-download-links__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-latest-hit-club-download-links__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-latest-hit-club-download-links__heading {
  color: var(--text-light);
}

.page-resources-latest-hit-club-download-links__light-bg .page-resources-latest-hit-club-download-links__heading {
  color: var(--primary-color);
}

.page-resources-latest-hit-club-download-links__light-bg .page-resources-latest-hit-club-download-links__paragraph,
.page-resources-latest-hit-club-download-links__light-bg .page-resources-latest-hit-club-download-links__list-item {
  color: var(--text-dark);
}

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

.page-resources-latest-hit-club-download-links__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-resources-latest-hit-club-download-links__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-latest-hit-club-download-links__feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}