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

.page-poker-hall-of-fame__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-poker-hall-of-fame__section {
  padding: 60px 0;
  text-align: center;
}

.page-poker-hall-of-fame__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-poker-hall-of-fame__text-block {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker-hall-of-fame__highlight {
  color: #FFFF00; /* Highlight color for keywords */
  font-weight: bold;
}

.page-poker-hall-of-fame__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-poker-hall-of-fame__light-bg {
  background-color: #FFFFFF;
  color: #333333; /* Dark text for light background */
}

.page-poker-hall-of-fame__text-contrast-fix .page-poker-hall-of-fame__section-title,
.page-poker-hall-of-fame__text-contrast-fix .page-poker-hall-of-fame__text-block,
.page-poker-hall-of-fame__text-contrast-fix .page-poker-hall-of-fame__card-title,
.page-poker-hall-of-fame__text-contrast-fix .page-poker-hall-of-fame__card-text,
.page-poker-hall-of-fame__text-contrast-fix .page-poker-hall-of-fame__list li {
  color: #333333;
}

/* Hero Section */
.page-poker-hall-of-fame__hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #017439;
  padding: 0;
}

.page-poker-hall-of-fame__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-poker-hall-of-fame__hero-overlay {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-poker-hall-of-fame__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-poker-hall-of-fame__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-poker-hall-of-fame__btn-primary,
.page-poker-hall-of-fame__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, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
}

.page-poker-hall-of-fame__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-poker-hall-of-fame__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
}

.page-poker-hall-of-fame__btn-secondary {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-poker-hall-of-fame__btn-secondary:hover {
  background-color: #005a2d;
  border-color: #005a2d;
}

.page-poker-hall-of-fame__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Grid Layouts */
.page-poker-hall-of-fame__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-poker-hall-of-fame__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Cards */
.page-poker-hall-of-fame__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark sections */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #ffffff; /* Default for cards on dark sections */
}

.page-poker-hall-of-fame__card.page-poker-hall-of-fame__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-poker-hall-of-fame__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-poker-hall-of-fame__card.page-poker-hall-of-fame__light-bg .page-poker-hall-of-fame__card-title {
  color: #017439;
}

.page-poker-hall-of-fame__card-text {
  font-size: 1em;
  line-height: 1.7;
  flex-grow: 1;
}

.page-poker-hall-of-fame__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker-hall-of-fame__card-link {
  display: inline-block;
  margin-top: 20px;
  color: #FFFF00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-poker-hall-of-fame__card-link:hover {
  color: #e0e0e0;
}

/* Legend Cards */
.page-poker-hall-of-fame__legends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker-hall-of-fame__legend-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker-hall-of-fame__legend-card.page-poker-hall-of-fame__card-hover-effect:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-poker-hall-of-fame__legend-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.page-poker-hall-of-fame__legend-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-poker-hall-of-fame__legend-name {
  font-size: 2em;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-poker-hall-of-fame__legend-bio {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Lists */
.page-poker-hall-of-fame__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 1em;
}

.page-poker-hall-of-fame__list li {
  margin-bottom: 10px;
  color: #ffffff;
}

.page-poker-hall-of-fame__card.page-poker-hall-of-fame__light-bg .page-poker-hall-of-fame__list li {
  color: #333333;
}

/* Video Section */
.page-poker-hall-of-fame__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-poker-hall-of-fame__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.page-poker-hall-of-fame__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ Section */
.page-poker-hall-of-fame__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-poker-hall-of-fame__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-poker-hall-of-fame__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #017439; /* Brand color for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details tag */
}

.page-poker-hall-of-fame__faq-question::-webkit-details-marker {
  display: none;
}

.page-poker-hall-of-fame__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-poker-hall-of-fame__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Final CTA */
.page-poker-hall-of-fame__cta-final {
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker-hall-of-fame__hero-title {
    font-size: 3em;
  }
  .page-poker-hall-of-fame__section-title {
    font-size: 2em;
  }
  .page-poker-hall-of-fame__grid-3-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-poker-hall-of-fame {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-poker-hall-of-fame__hero-section {
    min-height: 500px;
    padding: 0;
  }
  .page-poker-hall-of-fame__hero-title {
    font-size: 2.2em;
  }
  .page-poker-hall-of-fame__hero-description {
    font-size: 1em;
  }
  .page-poker-hall-of-fame__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker-hall-of-fame__btn-primary,
  .page-poker-hall-of-fame__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-poker-hall-of-fame__hero-buttons {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-poker-hall-of-fame__grid-2-cols,
  .page-poker-hall-of-fame__grid-3-cols,
  .page-poker-hall-of-fame__legends-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-poker-hall-of-fame__section-title {
    font-size: 1.8em;
  }
  .page-poker-hall-of-fame__card,
  .page-poker-hall-of-fame__legend-card {
    padding: 20px;
  }
  .page-poker-hall-of-fame__card-title,
  .page-poker-hall-of-fame__legend-name {
    font-size: 1.5em;
  }

  .page-poker-hall-of-fame__container,
  .page-poker-hall-of-fame__section,
  .page-poker-hall-of-fame__what-is-hall-of-fame,
  .page-poker-hall-of-fame__legends,
  .page-poker-hall-of-fame__how-to-play,
  .page-poker-hall-of-fame__influence,
  .page-poker-hall-of-fame__join-community,
  .page-poker-hall-of-fame__faq,
  .page-poker-hall-of-fame__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-poker-hall-of-fame__faq-list {
    margin-left: 0;
    margin-right: 0;
  }
  .page-poker-hall-of-fame__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-poker-hall-of-fame__faq-answer {
    padding: 10px 20px 15px;
  }

  /* Images and Videos Responsive */
  .page-poker-hall-of-fame img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-poker-hall-of-fame video,
  .page-poker-hall-of-fame__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-poker-hall-of-fame__video-wrapper,
  .page-poker-hall-of-fame__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-poker-hall-of-fame__video-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}