/* style/resources-hiphop-game-reviews.css */

/* Base styles for the page */
.page-resources-hiphop-game-reviews {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: 10px; /* Crucial for fixed header clearance */
}

.page-resources-hiphop-game-reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-hiphop-game-reviews__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-hiphop-game-reviews__section-title {
  font-size: 38px;
  color: #FF00FF; /* Neon purple for titles */
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.page-resources-hiphop-game-reviews__section-subtitle {
  font-size: 20px;
  color: #00FFFF; /* Cyan for subtitles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.page-resources-hiphop-game-reviews__hero-banner {
  background: linear-gradient(135deg, #FF00FF, #00FFFF, #FF00FF);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  padding-top: 110px; /* Adjusted for header + extra space */
}

.page-resources-hiphop-game-reviews__hero-title {
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.8), 0 0 25px rgba(0, 255, 255, 0.8);
  line-height: 1.2;
}

.page-resources-hiphop-game-reviews__hero-description {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-resources-hiphop-game-reviews__btn-primary,
.page-resources-hiphop-game-reviews__btn-secondary,
.page-resources-hiphop-game-reviews__btn-small {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  font-size: 18px;
}

.page-resources-hiphop-game-reviews__btn-primary {
  background-color: #FF00FF; /* Neon purple */
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
}

.page-resources-hiphop-game-reviews__btn-primary:hover {
  background-color: #e600e6;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.9);
  transform: translateY(-3px);
}

.page-resources-hiphop-game-reviews__btn-secondary {
  background-color: transparent;
  color: #00FFFF; /* Cyan */
  border: 2px solid #00FFFF;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.page-resources-hiphop-game-reviews__btn-secondary:hover {
  background-color: #00FFFF;
  color: #0d0d0d;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
  transform: translateY(-3px);
}

.page-resources-hiphop-game-reviews__btn-small {
  padding: 10px 20px;
  font-size: 15px;
  background-color: #00FFFF;
  color: #0d0d0d;
  border-radius: 25px;
}

.page-resources-hiphop-game-reviews__btn-small:hover {
  background-color: #00e6e6;
  transform: translateY(-2px);
}

.page-resources-hiphop-game-reviews__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-hiphop-game-reviews__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-resources-hiphop-game-reviews__text-block {
  flex: 1;
  font-size: 18px;
  color: #f0f0f0;
}

.page-resources-hiphop-game-reviews__text-block p {
  margin-bottom: 20px;
}

.page-resources-hiphop-game-reviews__text-block p a {
  color: #00FFFF;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-hiphop-game-reviews__text-block p a:hover {
  text-decoration: underline;
}

.page-resources-hiphop-game-reviews__image-block {
  flex: 1;
  text-align: center;
}

.page-resources-hiphop-game-reviews__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-resources-hiphop-game-reviews__game-card,
.page-resources-hiphop-game-reviews__promo-card,
.page-resources-hiphop-game-reviews__step-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.page-resources-hiphop-game-reviews__game-card:hover,
.page-resources-hiphop-game-reviews__promo-card:hover,
.page-resources-hiphop-game-reviews__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  border-color: #FF00FF;
}

.page-resources-hiphop-game-reviews__game-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-hiphop-game-reviews__game-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-hiphop-game-reviews__game-title {
  font-size: 24px;
  color: #FF00FF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-hiphop-game-reviews__game-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-resources-hiphop-game-reviews__promo-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-hiphop-game-reviews__promo-title {
  font-size: 22px;
  color: #00FFFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-hiphop-game-reviews__promo-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-resources-hiphop-game-reviews__cta-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 20px;
  color: #f0f0f0;
}

.page-resources-hiphop-game-reviews__cta-bottom p a {
  color: #00FFFF;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-hiphop-game-reviews__cta-bottom p a:hover {
  text-decoration: underline;
}

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

.page-resources-hiphop-game-reviews__step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  background-color: #FF00FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.page-resources-hiphop-game-reviews__step-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Ensure icons are white on purple background */
}

.page-resources-hiphop-game-reviews__step-title {
  font-size: 24px;
  color: #00FFFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-hiphop-game-reviews__step-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.page-resources-hiphop-game-reviews__step-description a {
  color: #FF00FF;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-hiphop-game-reviews__step-description a:hover {
  text-decoration: underline;
}

/* FAQ styles */
.page-resources-hiphop-game-reviews__faq-list {
  margin-top: 40px;
}

.page-resources-hiphop-game-reviews__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent dark for FAQ item */
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.page-resources-hiphop-game-reviews__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-hiphop-game-reviews__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FF00FF;
}

.page-resources-hiphop-game-reviews__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-hiphop-game-reviews__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #00FFFF;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-hiphop-game-reviews__faq-item.active .page-resources-hiphop-game-reviews__faq-toggle {
  color: #FF00FF;
  transform: rotate(45deg);
}

.page-resources-hiphop-game-reviews__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
}

.page-resources-hiphop-game-reviews__faq-item.active .page-resources-hiphop-game-reviews__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 25px !important;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.03); /* Lighter background for active answer */
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 0 0 8px 8px;
}

.page-resources-hiphop-game-reviews__faq-answer p {
  margin-bottom: 10px;
}

.page-resources-hiphop-game-reviews__faq-answer p a {
  color: #00FFFF;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-hiphop-game-reviews__faq-answer p a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-hiphop-game-reviews__hero-title {
    font-size: 44px;
  }
  .page-resources-hiphop-game-reviews__section-title {
    font-size: 32px;
  }
  .page-resources-hiphop-game-reviews__content-wrapper {
    flex-direction: column;
  }
  .page-resources-hiphop-game-reviews__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-resources-hiphop-game-reviews__game-grid,
  .page-resources-hiphop-game-reviews__promo-grid,
  .page-resources-hiphop-game-reviews__step-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-hiphop-game-reviews {
    padding-top: 10px; /* Ensure mobile header clearance */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-hiphop-game-reviews__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-hiphop-game-reviews__hero-banner {
    padding: 80px 0 60px 0;
    padding-top: 90px; /* Adjusted for mobile header + extra space */
  }
  .page-resources-hiphop-game-reviews__hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-resources-hiphop-game-reviews__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .page-resources-hiphop-game-reviews__section {
    padding: 40px 0;
    margin-bottom: 15px;
  }
  .page-resources-hiphop-game-reviews__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-resources-hiphop-game-reviews__section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .page-resources-hiphop-game-reviews__btn-primary,
  .page-resources-hiphop-game-reviews__btn-secondary,
  .page-resources-hiphop-game-reviews__btn-small {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-resources-hiphop-game-reviews__content-wrapper {
    gap: 30px;
  }
  .page-resources-hiphop-game-reviews__text-block {
    font-size: 16px;
  }
  .page-resources-hiphop-game-reviews__text-block p {
    margin-bottom: 15px;
  }
  .page-resources-hiphop-game-reviews__image-block img,
  .page-resources-hiphop-game-reviews img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-resources-hiphop-game-reviews__game-grid,
  .page-resources-hiphop-game-reviews__promo-grid,
  .page-resources-hiphop-game-reviews__step-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-hiphop-game-reviews__game-card,
  .page-resources-hiphop-game-reviews__promo-card,
  .page-resources-hiphop-game-reviews__step-card {
    padding: 25px;
  }
  .page-resources-hiphop-game-reviews__game-title {
    font-size: 20px;
  }
  .page-resources-hiphop-game-reviews__promo-title {
    font-size: 20px;
  }
  .page-resources-hiphop-game-reviews__step-title {
    font-size: 20px;
  }
  .page-resources-hiphop-game-reviews__step-icon {
    width: 80px;
    height: 80px;
  }
  .page-resources-hiphop-game-reviews__step-icon img {
    width: 50px;
    height: 50px;
  }
  .page-resources-hiphop-game-reviews__faq-question {
    padding: 15px 20px;
  }
  .page-resources-hiphop-game-reviews__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-hiphop-game-reviews__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-hiphop-game-reviews__faq-answer {
    padding: 0 20px;
  }
  .page-resources-hiphop-game-reviews__faq-item.active .page-resources-hiphop-game-reviews__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-hiphop-game-reviews__hero-title {
    font-size: 30px;
  }
  .page-resources-hiphop-game-reviews__section-title {
    font-size: 24px;
  }
  .page-resources-hiphop-game-reviews__hero-description {
    font-size: 16px;
  }
  .page-resources-hiphop-game-reviews__btn-primary,
  .page-resources-hiphop-game-reviews__btn-secondary {
    padding: 10px 20px;
    font-size: 15px;
  }
}