/* style/game-reviews-mahjong.css */
.page-game-reviews-mahjong {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-game-reviews-mahjong__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-mahjong__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3A404C 100%); /* Darker gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-mahjong__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:hero:mahjong,game,tiles,digital,vibrant]'); /* Use background image for hero */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-game-reviews-mahjong__hero > div {
  position: relative;
  z-index: 1;
}

.page-game-reviews-mahjong__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-reviews-mahjong__subtitle {
  font-size: 1.3em;
  color: #CBD5E0; /* Lighter gray for subtitle */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-reviews-mahjong__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews-mahjong__section:last-of-type {
  border-bottom: none;
}

.page-game-reviews-mahjong__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
}

.page-game-reviews-mahjong__text-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #A0AEC0;
}

.page-game-reviews-mahjong__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-game-reviews-mahjong__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-game-reviews-mahjong__grid > div:first-child {
  grid-column: span 1;
}

.page-game-reviews-mahjong__introduction .page-game-reviews-mahjong__grid {
  grid-template-columns: 2fr 1fr;
}

.page-game-reviews-mahjong__strategy .page-game-reviews-mahjong__grid {
  grid-template-columns: 1fr 2fr;
}

.page-game-reviews-mahjong__image-wrapper {
  text-align: center;
}

.page-game-reviews-mahjong__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-mahjong__content-block p {
  margin-bottom: 1em;
  color: #E2E8F0;
}

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

.page-game-reviews-mahjong__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-game-reviews-mahjong__list li {
  background-color: #2D3748; /* Slightly lighter dark background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #E2E8F0;
}

.page-game-reviews-mahjong__list li::before {
  content: '✔️';
  margin-right: 10px;
  color: #4CAF50; /* Green checkmark for positive points */
  font-size: 1.2em;
  line-height: 1;
}

.page-game-reviews-mahjong__numbered-list {
  list-style: decimal;
  padding-left: 25px;
  margin: 20px 0;
  color: #E2E8F0;
}

.page-game-reviews-mahjong__numbered-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-game-reviews-mahjong__card {
  background-color: #2D3748; /* Slightly lighter dark background for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-mahjong__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-mahjong__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust icon color to gold/yellow */
}

.page-game-reviews-mahjong__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews-mahjong__card p {
  color: #A0AEC0;
}

.page-game-reviews-mahjong__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-game-reviews-mahjong__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-reviews-mahjong__cta-button:hover {
  background-color: #E5C100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-game-reviews-mahjong__cta-button--secondary {
  background-color: #4CAF50; /* Green for secondary CTA */
  color: #FFFFFF;
}

.page-game-reviews-mahjong__cta-button--secondary:hover {
  background-color: #45A049;
}

.page-game-reviews-mahjong__cta-button--final {
  background-color: #FFD700;
  color: #1A202C;
  font-size: 1.4em;
  padding: 20px 40px;
}

.page-game-reviews-mahjong__accordion {
  margin-top: 40px;
}

.page-game-reviews-mahjong__accordion-item {
  background-color: #2D3748;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-reviews-mahjong__accordion-header {
  width: 100%;
  background-color: #3A404C; /* Darker header for accordion */
  color: #FFD700;
  padding: 20px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-game-reviews-mahjong__accordion-header:hover {
  background-color: #4A5568;
}

.page-game-reviews-mahjong__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-game-reviews-mahjong__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-game-reviews-mahjong__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-game-reviews-mahjong__accordion-content p {
  color: #E2E8F0;
  margin-bottom: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-mahjong__introduction .page-game-reviews-mahjong__grid,
  .page-game-reviews-mahjong__strategy .page-game-reviews-mahjong__grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-mahjong__hero {
    padding: 80px 0;
  }

  .page-game-reviews-mahjong__title {
    font-size: 2.8em;
  }

  .page-game-reviews-mahjong__section-title {
    font-size: 2em;
  }

  .page-game-reviews-mahjong__image-wrapper {
    order: -1; /* Image on top for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-game-reviews-mahjong__hero {
    padding: 60px 0;
  }

  .page-game-reviews-mahjong__title {
    font-size: 2.2em;
  }

  .page-game-reviews-mahjong__subtitle {
    font-size: 1em;
  }

  .page-game-reviews-mahjong__section {
    padding: 60px 0;
  }

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

  .page-game-reviews-mahjong__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-game-reviews-mahjong__card {
    padding: 20px;
  }

  .page-game-reviews-mahjong__card-title {
    font-size: 1.3em;
  }

  .page-game-reviews-mahjong__accordion-header {
    font-size: 1em;
    padding: 15px;
  }

  .page-game-reviews-mahjong__accordion-content.active {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-mahjong__title {
    font-size: 1.8em;
  }

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

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

  .page-game-reviews-mahjong__grid--3-cols {
    grid-template-columns: 1fr;
  }
}