.page-index-popular-hiphop-games {
  font-family: 'Arial', sans-serif;
  color: #E5E5D1; /* Light text for dark background */
  background-color: #1A1A2E;
  line-height: 1.6;
}

.page-index-popular-hiphop-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%);
  position: relative;
  overflow: hidden;
  color: #E5E5D1;
}

.page-index-popular-hiphop-games__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-index-popular-hiphop-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B34E; /* Highlight color for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-index-popular-hiphop-games__hero-title .highlight {
  color: #E5E5D1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-popular-hiphop-games__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e5e5d1;
}

.page-index-popular-hiphop-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-popular-hiphop-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-index-popular-hiphop-games__btn--primary {
  background-color: #E0B34E;
  color: #1A1A2E;
  border: 2px solid #E0B34E;
}

.page-index-popular-hiphop-games__btn--primary:hover {
  background-color: #f0c35e;
  transform: translateY(-2px);
}

.page-index-popular-hiphop-games__btn--secondary {
  background-color: transparent;
  color: #E0B34E;
  border: 2px solid #E0B34E;
}

.page-index-popular-hiphop-games__btn--secondary:hover {
  background-color: rgba(224, 179, 78, 0.1);
  transform: translateY(-2px);
}

.page-index-popular-hiphop-games__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
}

.page-index-popular-hiphop-games__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-popular-hiphop-games__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-popular-hiphop-games__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E0B34E;
  font-weight: bold;
}

.page-index-popular-hiphop-games__section-title .highlight {
  color: #E5E5D1;
}

.page-index-popular-hiphop-games__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #e5e5d1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-popular-hiphop-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-index-popular-hiphop-games__about-item {
  background-color: #2A2A4A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-popular-hiphop-games__about-item:hover {
  transform: translateY(-10px);
}

.page-index-popular-hiphop-games__about-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E0B34E);
}

.page-index-popular-hiphop-games__about-item h3 {
  font-size: 1.8em;
  color: #E0B34E;
  margin-bottom: 15px;
}

.page-index-popular-hiphop-games__about-item p {
  color: #e5e5d1;
  font-size: 1em;
}

.page-index-popular-hiphop-games__featured-games .page-index-popular-hiphop-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-popular-hiphop-games__game-card {
  background-color: #2A2A4A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-index-popular-hiphop-games__game-card:hover {
  transform: translateY(-10px);
}

.page-index-popular-hiphop-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #E0B34E;
}

.page-index-popular-hiphop-games__game-card h3 {
  font-size: 1.5em;
  color: #E0B34E;
  margin: 20px 20px 10px;
}

.page-index-popular-hiphop-games__game-card p {
  color: #e5e5d1;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-index-popular-hiphop-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 0 20px 20px;
}

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

.page-index-popular-hiphop-games__promo-card {
  background-color: #2A2A4A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-index-popular-hiphop-games__promo-card:hover {
  transform: translateY(-10px);
}

.page-index-popular-hiphop-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #E0B34E;
}

.page-index-popular-hiphop-games__promo-card h3 {
  font-size: 1.6em;
  color: #E0B34E;
  margin: 20px 20px 10px;
}

.page-index-popular-hiphop-games__promo-card p {
  color: #e5e5d1;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-index-popular-hiphop-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-popular-hiphop-games__step {
  background-color: #2A2A4A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-index-popular-hiphop-games__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E0B34E;
  color: #1A1A2E;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #1A1A2E;
  box-shadow: 0 0 15px rgba(224, 179, 78, 0.5);
}

.page-index-popular-hiphop-games__step h3 {
  font-size: 1.6em;
  color: #E0B34E;
  margin-bottom: 15px;
}

.page-index-popular-hiphop-games__step p {
  color: #e5e5d1;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-index-popular-hiphop-games__faq-item {
  background-color: #2A2A4A;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-index-popular-hiphop-games__faq-item h3 {
  font-size: 1.4em;
  color: #E0B34E;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-popular-hiphop-games__faq-item p {
  color: #e5e5d1;
  font-size: 1em;
  display: none; /* Hidden by default, JS will toggle */
}

.page-index-popular-hiphop-games__faq-item.active p {
  display: block;
}

.page-index-popular-hiphop-games__cta {
  background: linear-gradient(90deg, #1A1A2E, #4a4a7e);
  padding: 80px 20px;
  text-align: center;
  color: #E5E5D1;
  border-top: 5px solid #E0B34E;
}

.page-index-popular-hiphop-games__cta-title {
  font-size: 3em;
  color: #E0B34E;
  margin-bottom: 20px;
}

.page-index-popular-hiphop-games__cta-title .highlight {
  color: #E5E5D1;
}

.page-index-popular-hiphop-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-popular-hiphop-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-popular-hiphop-games__hero {
    padding: 40px 15px;
  }

  .page-index-popular-hiphop-games__hero-title {
    font-size: 2.5em;
  }

  .page-index-popular-hiphop-games__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-popular-hiphop-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-popular-hiphop-games__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-index-popular-hiphop-games__section {
    padding: 50px 15px;
  }

  .page-index-popular-hiphop-games__section-title {
    font-size: 2em;
  }

  .page-index-popular-hiphop-games__about-item, 
  .page-index-popular-hiphop-games__game-card, 
  .page-index-popular-hiphop-games__promo-card, 
  .page-index-popular-hiphop-games__step {
    padding: 25px;
  }

  .page-index-popular-hiphop-games__about-item h3,
  .page-index-popular-hiphop-games__game-card h3,
  .page-index-popular-hiphop-games__promo-card h3,
  .page-index-popular-hiphop-games__step h3 {
    font-size: 1.4em;
  }

  .page-index-popular-hiphop-games__cta-title {
    font-size: 2.2em;
  }

  .page-index-popular-hiphop-games__cta-description {
    font-size: 1em;
  }

  .page-index-popular-hiphop-games__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-index-popular-hiphop-games__hero-title {
    font-size: 2em;
  }

  .page-index-popular-hiphop-games__hero-subtitle {
    font-size: 1em;
  }

  .page-index-popular-hiphop-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-popular-hiphop-games__section-title {
    font-size: 1.8em;
  }

  .page-index-popular-hiphop-games__cta-title {
    font-size: 1.8em;
  }

  .page-index-popular-hiphop-games__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}