/* style/game-reviews.css */
.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342;
  line-height: 1.6;
  font-size: 16px;
}

.page-game-reviews .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-game-reviews__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2342 0%, #1A3A6A 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-game-reviews__hero-content {
  max-width: 1000px;
  z-index: 1;
}

.page-game-reviews__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-game-reviews__hero-description {
  font-size: 1.25em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews__hero-image {
  margin-top: 50px;
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid #FFD700;
}

.page-game-reviews__image {
  width: 100%;
  height: auto;
  display: block;
}

.page-game-reviews__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-game-reviews__section:nth-of-type(even) {
  background-color: #0F2E52;
}

.page-game-reviews__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-game-reviews__section-intro {
  font-size: 1.15em;
  color: #C0C0C0;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.page-game-reviews__feature-item {
  background-color: #1A3A6A;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-game-reviews__feature-item:hover {
  transform: translateY(-12px);
  background-color: #2A4A7A;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-game-reviews__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.page-game-reviews__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 18px;
  font-weight: bold;
}

.page-game-reviews__feature-item p {
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-game-reviews__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.page-game-reviews__game-item {
  background-color: #1A3A6A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-game-reviews__game-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-game-reviews__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 3px solid #FFD700;
}

.page-game-reviews__game-title {
  font-size: 1.9em;
  color: #FFD700;
  margin-bottom: 12px;
  font-weight: bold;
}

.page-game-reviews__game-description {
  color: #C0C0C0;
  font-size: 1.05em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-reviews__button {
  display: inline-block;
  background-color: #DC3545; /* Action Red */
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.05em;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.page-game-reviews__button:hover {
  background-color: #C82333;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(220, 53, 69, 0.6);
}

.page-game-reviews__cta-download {
  background-color: #0F2E52;
}

.page-game-reviews__download-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
  margin-top: 50px;
}

.page-game-reviews__step-item {
  flex: 1 1 300px;
  background-color: #1A3A6A;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-game-reviews__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.page-game-reviews__step-item h4 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-reviews__step-item p {
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-game-reviews__cta-buttons {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.page-game-reviews__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent Gold */
  color: #0A2342;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.page-game-reviews__cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

.page-game-reviews__cta-button--secondary {
  background-color: #DC3545; /* Action Red */
  color: #FFFFFF;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.5);
}

.page-game-reviews__cta-button--secondary:hover {
  background-color: #C82333;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.7);
}

.page-game-reviews__cta-button--final {
  margin-top: 40px;
  font-size: 1.4em;
  padding: 20px 45px;
}

.page-game-reviews__promotions {
  background-color: #0A2342;
}

.page-game-reviews__promotion-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 1000px;
  text-align: left;
}

.page-game-reviews__promotion-list li {
  background-color: #1A3A6A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  font-size: 1.15em;
  color: #E0E0E0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-reviews__list-icon {
  width: 45px;
  height: 45px;
  margin-right: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.page-game-reviews__promotion-note {
  font-style: italic;
  color: #C0C0C0;
  margin-top: 40px;
  font-size: 1.05em;
}

.page-game-reviews__faq {
  background-color: #0F2E52;
}

.page-game-reviews__faq-accordion {
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-game-reviews__accordion-item {
  background-color: #1A3A6A;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-reviews__accordion-header {
  font-size: 1.4em;
  color: #FFD700;
  padding: 22px;
  cursor: pointer;
  position: relative;
  background-color: #1A3A6A;
  border-bottom: 1px solid #0A2342;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-reviews__accordion-header:hover {
  background-color: #2A4A7A;
}

.page-game-reviews__accordion-header::after {
  content: '+';
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 1.6em;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-game-reviews__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-reviews__accordion-content {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-game-reviews__accordion-content p {
  padding-bottom: 22px;
}

.page-game-reviews__conclusion {
  background-color: #0A2342;
  padding-bottom: 100px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-reviews__hero-title {
    font-size: 3em;
  }
  .page-game-reviews__section-title {
    font-size: 2.4em;
  }
  .page-game-reviews__cta-button {
    font-size: 1.2em;
    padding: 15px 35px;
  }
  .page-game-reviews__cta-button--final {
    font-size: 1.3em;
    padding: 18px 40px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews {
    font-size: 15px;
  }
  .page-game-reviews__hero {
    padding: 50px 15px;
  }

  .page-game-reviews__hero-title {
    font-size: 2.5em;
  }

  .page-game-reviews__hero-description {
    font-size: 1.1em;
  }

  .page-game-reviews__section-title {
    font-size: 2.2em;
  }

  .page-game-reviews__section-intro {
    font-size: 1em;
  }

  .page-game-reviews__features-grid,
  .page-game-reviews__game-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-game-reviews__feature-item,
  .page-game-reviews__game-item {
    padding: 25px;
  }

  .page-game-reviews__game-image {
    height: 180px;
  }

  .page-game-reviews__game-title {
    font-size: 1.6em;
  }

  .page-game-reviews__cta-buttons {
    flex-direction: column;
    gap: 18px;
  }

  .page-game-reviews__cta-button {
    width: 100%;
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-game-reviews__cta-button--final {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  .page-game-reviews__download-steps {
    flex-direction: column;
    gap: 25px;
  }

  .page-game-reviews__step-item {
    flex: none;
    width: 100%;
    padding: 25px;
  }

  .page-game-reviews__promotion-list {
    margin: 30px auto;
  }

  .page-game-reviews__promotion-list li {
    font-size: 1em;
    padding: 20px;
  }

  .page-game-reviews__list-icon {
    width: 35px;
    height: 35px;
    margin-right: 15px;
  }

  .page-game-reviews__accordion-header {
    font-size: 1.2em;
    padding: 18px;
  }

  .page-game-reviews__accordion-header::after {
    font-size: 1.4em;
  }

  .page-game-reviews__accordion-content {
    padding: 0 18px;
  }
  .page-game-reviews__accordion-content p {
    padding-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews {
    font-size: 14px;
  }
  .page-game-reviews__hero-title {
    font-size: 2em;
  }

  .page-game-reviews__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-game-reviews__cta-button--final {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-game-reviews__feature-title {
    font-size: 1.4em;
  }
  .page-game-reviews__game-title {
    font-size: 1.4em;
  }
  .page-game-reviews__accordion-header {
    font-size: 1.1em;
  }
}