/* style/hiphop-theme-game-list.css */
.page-hiphop-theme-game-list {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #0A192F;
  background-color: #f8f8f8;
}

.page-hiphop-theme-game-list .section-padding {
  padding: 60px 0;
}

.page-hiphop-theme-game-list .bg-dark {
  background-color: #0A192F;
  color: #FFFFFF;
}

.page-hiphop-theme-game-list .text-light {
  color: #FFFFFF;
}

.page-hiphop-theme-game-list .text-gold {
  color: #E0B400;
}

.page-hiphop-theme-game-list .highlight {
  color: #E0B400;
}

.page-hiphop-theme-game-list .bold-keyword {
  font-weight: bold;
}

.page-hiphop-theme-game-list__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hiphop-theme-game-list__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-hiphop-theme-game-list__section-title.text-light {
  color: #FFFFFF;
}

.page-hiphop-theme-game-list__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-hiphop-theme-game-list__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-hiphop-theme-game-list__text-block.text-light {
  color: #f0f0f0;
}

/* Hero Section */
.page-hiphop-theme-game-list__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A192F 0%, #1a325c 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hiphop-theme-game-list__hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.page-hiphop-theme-game-list__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-hiphop-theme-game-list__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hiphop-theme-game-list__hero-button {
  display: inline-block;
  background-color: #E0B400;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-hiphop-theme-game-list__hero-button:hover {
  background-color: #f0c500;
  transform: translateY(-3px);
}

.page-hiphop-theme-game-list__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
  z-index: 1;
}

.page-hiphop-theme-game-list__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.5);
}

/* Game Categories */
.page-hiphop-theme-game-list__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-hiphop-theme-game-list__category-item {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-hiphop-theme-game-list__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-hiphop-theme-game-list__category-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  filter: brightness(0.9);
}

.page-hiphop-theme-game-list__category-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-hiphop-theme-game-list__category-description {
  font-size: 1em;
  color: #333333;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-hiphop-theme-game-list__category-button {
  display: inline-block;
  background-color: #0A192F;
  color: #E0B400;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-hiphop-theme-game-list__category-button:hover {
  background-color: #E0B400;
  color: #0A192F;
}

/* Why Choose Section */
.page-hiphop-theme-game-list__why-choose .page-hiphop-theme-game-list__section-title {
  color: #FFFFFF;
}

.page-hiphop-theme-game-list__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-hiphop-theme-game-list__feature-item {
  background-color: #1a325c;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-hiphop-theme-game-list__feature-item:hover {
  background-color: #2a416e;
}

.page-hiphop-theme-game-list__feature-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-hiphop-theme-game-list__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Promotions Section */
.page-hiphop-theme-game-list__promo-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-hiphop-theme-game-list__promo-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}

.page-hiphop-theme-game-list__promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  color: #FFFFFF;
  text-align: left;
}

.page-hiphop-theme-game-list__promo-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: 900;
  color: #E0B400;
}

.page-hiphop-theme-game-list__promo-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
}

.page-hiphop-theme-game-list__promo-button {
  display: inline-block;
  background-color: #E0B400;
  color: #0A192F;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-hiphop-theme-game-list__promo-button:hover {
  background-color: #f0c500;
  transform: translateY(-3px);
}

/* Community Section */
.page-hiphop-theme-game-list__community-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-hiphop-theme-game-list__community-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-hiphop-theme-game-list__community-item::before {
  content: '♪'; /* Hiphop music note */
  color: #E0B400;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -5px;
}

/* Responsible Gaming */
.page-hiphop-theme-game-list__responsible-button {
  display: inline-block;
  background-color: #0A192F;
  color: #E0B400;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-hiphop-theme-game-list__responsible-button:hover {
  background-color: #E0B400;
  color: #0A192F;
}

/* Call to Action (CTA) */
.page-hiphop-theme-game-list__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-hiphop-theme-game-list__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.page-hiphop-theme-game-list__cta-button--primary {
  background-color: #E0B400;
  color: #0A192F;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-hiphop-theme-game-list__cta-button--primary:hover {
  background-color: #f0c500;
  transform: translateY(-3px);
}

.page-hiphop-theme-game-list__cta-button--secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-hiphop-theme-game-list__cta-button--secondary:hover {
  background-color: #E0B400;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-hiphop-theme-game-list__hero-title {
    font-size: 2.8em;
  }
  .page-hiphop-theme-game-list__hero-description {
    font-size: 1.1em;
  }
  .page-hiphop-theme-game-list__section-title {
    font-size: 2em;
  }
  .page-hiphop-theme-game-list__promo-overlay {
    padding: 30px;
  }
  .page-hiphop-theme-game-list__promo-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-hiphop-theme-game-list__hero {
    padding: 60px 15px;
  }
  .page-hiphop-theme-game-list__hero-title {
    font-size: 2.2em;
  }
  .page-hiphop-theme-game-list__hero-description {
    font-size: 1em;
  }
  .page-hiphop-theme-game-list__section-title {
    font-size: 1.8em;
  }
  .page-hiphop-theme-game-list__category-grid,
  .page-hiphop-theme-game-list__features-grid {
    grid-template-columns: 1fr;
  }
  .page-hiphop-theme-game-list__promo-overlay {
    padding: 20px;
    align-items: center;
    text-align: center;
  }
  .page-hiphop-theme-game-list__promo-title {
    font-size: 1.8em;
  }
  .page-hiphop-theme-game-list__promo-description {
    font-size: 1em;
  }
  .page-hiphop-theme-game-list__cta-buttons {
    flex-direction: column;
  }
  .page-hiphop-theme-game-list__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-hiphop-theme-game-list__hero-title {
    font-size: 1.8em;
  }
  .page-hiphop-theme-game-list__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-hiphop-theme-game-list__section-title {
    font-size: 1.5em;
  }
  .page-hiphop-theme-game-list__promo-title {
    font-size: 1.5em;
  }
  .page-hiphop-theme-game-list__promo-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}