.page-bigwin-hall-of-fame {
  color: #ffffff; /* Light text on dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-bigwin-hall-of-fame__hero-section {
  background-color: #000000; /* Main color */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-bigwin-hall-of-fame__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Subtle background effect */
}

.page-bigwin-hall-of-fame__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-bigwin-hall-of-fame__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-bigwin-hall-of-fame__hero-title {
  font-size: 3.5em;
  color: #FCBC45; /* Login button color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-bigwin-hall-of-fame__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bigwin-hall-of-fame__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main color for text on button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-bigwin-hall-of-fame__cta-button:hover {
  background-color: #FFD700; /* Gold-like hover */
  transform: translateY(-3px);
}

.page-bigwin-hall-of-fame__intro-section,
.page-bigwin-hall-of-fame__featured-winners,
.page-bigwin-hall-of-fame__strategies,
.page-bigwin-hall-of-fame__join-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1a1a1a; /* Match body background */
}

.page-bigwin-hall-of-fame__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-bigwin-hall-of-fame__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-bigwin-hall-of-fame__section-paragraph {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: justify;
}

.page-bigwin-hall-of-fame__winner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-bigwin-hall-of-fame__winner-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

.page-bigwin-hall-of-fame__winner-card:hover {
  transform: translateY(-10px);
}

.page-bigwin-hall-of-fame__winner-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-bigwin-hall-of-fame__card-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-bigwin-hall-of-fame__card-title a {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bigwin-hall-of-fame__card-title a:hover {
  color: #FFD700;
}

.page-bigwin-hall-of-fame__card-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-bigwin-hall-of-fame__card-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FCBC45;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #FCBC45;
}

.page-bigwin-hall-of-fame__card-button:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-bigwin-hall-of-fame__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-bigwin-hall-of-fame__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #ffffff;
}

.page-bigwin-hall-of-fame__strategy-item strong {
  color: #FCBC45;
}

.page-bigwin-hall-of-fame__action-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-bigwin-hall-of-fame__cta-button--register {
  margin-right: 20px;
}

.page-bigwin-hall-of-fame__cta-button--login {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-bigwin-hall-of-fame__cta-button--login:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bigwin-hall-of-fame__hero-title {
    font-size: 2.8em;
  }
  .page-bigwin-hall-of-fame__hero-description {
    font-size: 1.1em;
  }
  .page-bigwin-hall-of-fame__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-bigwin-hall-of-fame__hero-title {
    font-size: 2.2em;
  }
  .page-bigwin-hall-of-fame__hero-description {
    font-size: 1em;
  }
  .page-bigwin-hall-of-fame__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-bigwin-hall-of-fame__section-title {
    font-size: 1.8em;
  }
  .page-bigwin-hall-of-fame__section-paragraph,
  .page-bigwin-hall-of-fame__strategy-item,
  .page-bigwin-hall-of-fame__card-description {
    font-size: 0.95em;
  }
  .page-bigwin-hall-of-fame__winner-grid {
    grid-template-columns: 1fr;
  }
  .page-bigwin-hall-of-fame__winner-card img {
    height: 200px;
  }
  .page-bigwin-hall-of-fame__card-title {
    font-size: 1.4em;
  }
  .page-bigwin-hall-of-fame__action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-bigwin-hall-of-fame__cta-button--register {
    margin-right: 0;
  }
  .page-bigwin-hall-of-fame img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-bigwin-hall-of-fame__hero-section,
  .page-bigwin-hall-of-fame__intro-section,
  .page-bigwin-hall-of-fame__featured-winners,
  .page-bigwin-hall-of-fame__strategies,
  .page-bigwin-hall-of-fame__join-us {
    padding: 40px 15px;
  }
  .page-bigwin-hall-of-fame__hero-title {
    font-size: 1.8em;
  }
  .page-bigwin-hall-of-fame__section-title {
    font-size: 1.6em;
  }
}