.page-hiphop-hall-of-fame {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  line-height: 1.6;
  background-color: #1A1A1A; /* Dark background to make neon colors pop */
}

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

.page-hiphop-hall-of-fame__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FF0055, #00FFEE);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-hiphop-hall-of-fame__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Overlay for text readability */
  z-index: 1;
}

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

.page-hiphop-hall-of-fame__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.8), 0 0 20px rgba(0, 255, 238, 0.8);
  line-height: 1.2;
}

.page-hiphop-hall-of-fame__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-hiphop-hall-of-fame__text {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-hiphop-hall-of-fame__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hiphop-hall-of-fame__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-hiphop-hall-of-fame__button--primary {
  background-color: #FF0055;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

.page-hiphop-hall-of-fame__button--primary:hover {
  background-color: #E6004D;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.9);
  transform: translateY(-2px);
}

.page-hiphop-hall-of-fame__button--secondary {
  background-color: #00FFEE;
  color: #1A1A1A;
  box-shadow: 0 0 15px rgba(0, 255, 238, 0.6);
}

.page-hiphop-hall-of-fame__button--secondary:hover {
  background-color: #00E6D5;
  box-shadow: 0 0 20px rgba(0, 255, 238, 0.9);
  transform: translateY(-2px);
}

.page-hiphop-hall-of-fame__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 25px;
  background-color: #00FFEE;
  color: #1A1A1A;
  box-shadow: 0 0 10px rgba(0, 255, 238, 0.4);
}

.page-hiphop-hall-of-fame__button--small:hover {
  background-color: #00E6D5;
  box-shadow: 0 0 15px rgba(0, 255, 238, 0.6);
}

.page-hiphop-hall-of-fame__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hiphop-hall-of-fame__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

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

.page-hiphop-hall-of-fame__section--dark {
  background-color: #222222;
}

.page-hiphop-hall-of-fame__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FF0055;
  text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
}

.page-hiphop-hall-of-fame__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-hiphop-hall-of-fame__artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-hiphop-hall-of-fame__artist-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-hiphop-hall-of-fame__artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.page-hiphop-hall-of-fame__artist-name {
  font-size: 1.6em;
  color: #00FFEE;
  margin-bottom: 15px;
}

.page-hiphop-hall-of-fame__artist-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-hiphop-hall-of-fame__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-hiphop-hall-of-fame__grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-hiphop-hall-of-fame__section--cta {
  background: linear-gradient(45deg, #FF0055, #00FFEE);
  padding: 80px 0;
  color: #FFFFFF;
}

.page-hiphop-hall-of-fame__cta-content .page-hiphop-hall-of-fame__section-title {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-hiphop-hall-of-fame__cta-content .page-hiphop-hall-of-fame__text {
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-hiphop-hall-of-fame__cta-content .page-hiphop-hall-of-fame__cta-buttons {
  margin-top: 30px;
}

.page-hiphop-hall-of-fame__cta-content .page-hiphop-hall-of-fame__button--primary {
  background-color: #1A1A1A;
  color: #FF0055;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.page-hiphop-hall-of-fame__cta-content .page-hiphop-hall-of-fame__button--primary:hover {
  background-color: #333333;
  color: #FF4D88;
}

.page-hiphop-hall-of-fame__cta-content .page-hiphop-hall-of-fame__button--secondary {
  background-color: #1A1A1A;
  color: #00FFEE;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.page-hiphop-hall-of-fame__cta-content .page-hiphop-hall-of-fame__button--secondary:hover {
  background-color: #333333;
  color: #4dfff3;
}

.page-hiphop-hall-of-fame .highlight-text {
  color: #00FFEE;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hiphop-hall-of-fame__title {
    font-size: 2.5em;
  }

  .page-hiphop-hall-of-fame__subtitle {
    font-size: 1.2em;
  }

  .page-hiphop-hall-of-fame__section-title {
    font-size: 2em;
  }

  .page-hiphop-hall-of-fame__hero {
    padding: 60px 15px;
  }

  .page-hiphop-hall-of-fame__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-hiphop-hall-of-fame__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-hiphop-hall-of-fame__artist-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-hiphop-hall-of-fame__title {
    font-size: 2em;
  }

  .page-hiphop-hall-of-fame__subtitle {
    font-size: 1em;
  }

  .page-hiphop-hall-of-fame__section-title {
    font-size: 1.8em;
  }

  .page-hiphop-hall-of-fame__hero {
    padding: 40px 10px;
  }

  .page-hiphop-hall-of-fame__button {
    width: 100%;
  }
}