/* style/index-review-hi-88.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Grey */
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --background-light: #F8F8F8;
  --background-dark: #222222;
  --border-color: #E0E0E0;
  --accent-color: #FFC107; /* Slightly lighter gold for highlights */
}

.page-index-review-hi-88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-index-review-hi-88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-review-hi-88 h1,
.page-index-review-hi-88 h2,
.page-index-review-hi-88 h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-index-review-hi-88 h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-light);
}

.page-index-review-hi-88 h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 10px;
  position: relative;
}

.page-index-review-hi-88 h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-index-review-hi-88 h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-index-review-hi-88 p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-review-hi-88 ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-index-review-hi-88 ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-index-review-hi-88 li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-index-review-hi-88 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-hi-88 a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.page-index-review-hi-88__center-button {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-index-review-hi-88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary-color);
}

.page-index-review-hi-88__cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  color: var(--secondary-color);
}

/* Hero Section */
.page-index-review-hi-88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-index-review-hi-88__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-hi-88__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-review-hi-88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi-88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-review-hi-88__hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 30px auto;
  color: var(--text-light);
}

/* Intro Section */
.page-index-review-hi-88__intro-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

/* Games Section */
.page-index-review-hi-88__games-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 60px 0;
}

.page-index-review-hi-88__games-section h2 {
  color: var(--primary-color);
}

.page-index-review-hi-88__games-section p {
  color: var(--text-light);
}

.page-index-review-hi-88__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi-88__game-card {
  background-color: #2A2A2A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A3A3A;
}

.page-index-review-hi-88__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-index-review-hi-88__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #3A3A3A;
}

.page-index-review-hi-88__game-card h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
}

.page-index-review-hi-88__game-card h3 a {
  color: inherit;
}

.page-index-review-hi-88__game-card p {
  color: #CCCCCC;
  font-size: 0.95em;
  padding: 0 15px 20px 15px;
}

/* Registration Section */
.page-index-review-hi-88__registration-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

/* Promotions Section */
.page-index-review-hi-88__promotions-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 60px 0;
}

.page-index-review-hi-88__promotions-section h2 {
  color: var(--primary-color);
}

.page-index-review-hi-88__promotions-section p {
  color: var(--text-light);
}

.page-index-review-hi-88__promo-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-hi-88__promo-list li {
  background-color: #2A2A2A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.1em;
  color: var(--text-light);
  border-left: 5px solid var(--primary-color);
}

.page-index-review-hi-88__promo-list li strong {
  color: var(--primary-color);
  font-size: 1.2em;
}

/* Transactions Section */
.page-index-review-hi-88__transactions-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

/* Support Section */
.page-index-review-hi-88__support-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 60px 0;
}

.page-index-review-hi-88__support-section h2 {
  color: var(--primary-color);
}

.page-index-review-hi-88__support-section p,
.page-index-review-hi-88__support-section li {
  color: var(--text-light);
}

/* Pros Cons Section */
.page-index-review-hi-88__pros-cons-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-index-review-hi-88__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi-88__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi-88__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-hi-88__card h3 {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.page-index-review-hi-88__card--pros h3 {
  color: #28A745; /* Green for pros */
}

.page-index-review-hi-88__card--cons h3 {
  color: #DC3545; /* Red for cons */
}

.page-index-review-hi-88__card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.page-index-review-hi-88__card li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
}

.page-index-review-hi-88__card--pros li::before {
  content: '✔';
  color: #28A745;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-index-review-hi-88__card--cons li::before {
  content: '✖';
  color: #DC3545;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

/* FAQ Section */
.page-index-review-hi-88__faq-section {
  background-color: var(--background-dark);
  padding: 60px 0;
}

.page-index-review-hi-88__faq-section h2 {
  color: var(--primary-color);
}

.page-index-review-hi-88__faq-list {
  margin-top: 40px;
}

/* FAQ default state - answer hidden */
.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #333333; /* Darker background for question */
  border: 1px solid #444444;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--text-light);
}

.faq-question:hover {
  background: #444444;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #2A2A2A;
  color: #CCCCCC;
  border-radius: 0 0 5px 5px;
}

.faq-answer p {
  margin-top: 0;
  margin-bottom: 15px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px;
  border: 1px solid #444444;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Conclusion Section */
.page-index-review-hi-88__conclusion-section {
  background-color: var(--background-light);
  padding: 60px 0;
  text-align: center;
}

.page-index-review-hi-88__conclusion-section p {
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.15em;
}

/* Contact Info Section */
.page-index-review-hi-88__contact-info-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 60px 0;
}

.page-index-review-hi-88__contact-info-section h2 {
  color: var(--primary-color);
}

.page-index-review-hi-88__contact-info-section p,
.page-index-review-hi-88__contact-info-section li {
  color: var(--text-light);
}

.page-index-review-hi-88__contact-info-section ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-review-hi-88__contact-info-section li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-index-review-hi-88__contact-info-section li strong {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-hi-88__container {
    padding: 15px;
  }

  .page-index-review-hi-88 h1 {
    font-size: 2.4em;
  }

  .page-index-review-hi-88 h2 {
    font-size: 1.9em;
  }

  .page-index-review-hi-88 h3 {
    font-size: 1.5em;
  }

  .page-index-review-hi-88__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-review-hi-88__hero-section {
    padding: 40px 15px;
  }
  
  .page-index-review-hi-88__hero-image img {
    border-radius: 4px;
  }

  .page-index-review-hi-88 h1 {
    font-size: 2em;
  }

  .page-index-review-hi-88 h2 {
    font-size: 1.7em;
  }

  .page-index-review-hi-88 h3 {
    font-size: 1.3em;
  }

  .page-index-review-hi-88 p,
  .page-index-review-hi-88 li {
    font-size: 1em;
  }

  .page-index-review-hi-88__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-index-review-hi-88__grid {
    grid-template-columns: 1fr;
  }

  .page-index-review-hi-88__card {
    padding: 20px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 20px;
  }

  .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-review-hi-88 h1 {
    font-size: 1.8em;
  }

  .page-index-review-hi-88 h2 {
    font-size: 1.5em;
  }

  .page-index-review-hi-88 h3 {
    font-size: 1.2em;
  }

  .page-index-review-hi-88__game-card h3 {
    font-size: 1.2em;
  }
}