/* style/index-review-go88.css */

/* Custom Colors */
:root {
  --go88-primary-color: #FF8C1A;
  --go88-secondary-color: #FFA53A;
  --go88-card-bg: #17191F;
  --go88-background: #0D0E12;
  --go88-text-main: #FFF3E6;
  --go88-border-color: #A84F0C;
  --go88-glow-color: #FFB04D;
  --go88-deep-orange: #D96800;
  --go88-button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-index-review-go88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default for light background */
  background-color: var(--go88-background); /* #0D0E12 is dark, so text should be light */
}

.page-index-review-go88__dark-bg {
  background-color: var(--go88-background);
  color: var(--go88-text-main);
}

.page-index-review-go88__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-index-review-go88__text-main {
  color: var(--go88-text-main);
}

.page-index-review-go88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-index-review-go88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.page-index-review-go88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-index-review-go88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-index-review-go88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 50px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-index-review-go88__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--go88-text-main);
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-index-review-go88__intro-text {
  font-size: 1.15rem;
  color: var(--go88-text-main);
  margin-bottom: 30px;
}

.page-index-review-go88__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-review-go88__btn-primary,
.page-index-review-go88__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-review-go88__btn-primary {
  background: var(--go88-button-gradient);
  color: #ffffff;
  border: 2px solid var(--go88-secondary-color);
}

.page-index-review-go88__btn-primary:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.page-index-review-go88__btn-secondary {
  background: transparent;
  color: var(--go88-secondary-color);
  border: 2px solid var(--go88-secondary-color);
}

.page-index-review-go88__btn-secondary:hover {
  background: var(--go88-secondary-color);
  color: var(--go88-background);
  transform: translateY(-2px);
}

/* General Sections */
.page-index-review-go88__about-section,
.page-index-review-go88__games-section,
.page-index-review-go88__payment-section,
.page-index-review-go88__security-section,
.page-index-review-go88__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-index-review-go88__features-section,
.page-index-review-go88__promotions-section.page-index-review-go88__light-bg,
.page-index-review-go88__user-experience-section,
.page-index-review-go88__pros-cons-section,
.page-index-review-go88__conclusion-section {
  padding: 60px 0;
}

.page-index-review-go88__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--go88-primary-color);
}

.page-index-review-go88__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-review-go88__card {
  background: var(--go88-card-bg);
  color: var(--go88-text-main);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--go88-border-color);
  transition: transform 0.3s ease;
}

.page-index-review-go88__card:hover {
  transform: translateY(-5px);
}

/* Feature Section */
.page-index-review-go88__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-review-go88__feature-icon {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-go88__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--go88-secondary-color);
}

.page-index-review-go88__feature-description {
  font-size: 1rem;
  line-height: 1.5;
}

/* Games Section */
.page-index-review-go88__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-index-review-go88__game-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-go88__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-go88__game-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--go88-secondary-color);
}

.page-index-review-go88__game-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  flex-grow: 1;
}

.page-index-review-go88__game-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--go88-text-main);
  position: relative;
  padding-left: 20px;
}

.page-index-review-go88__game-list li::before {
  content: '◆';
  color: var(--go88-primary-color);
  position: absolute;
  left: 0;
}

/* Promotions Section */
.page-index-review-go88__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index-review-go88__promotion-card {
  text-align: center;
}

.page-index-review-go88__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-go88__promotion-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--go88-secondary-color);
}

.page-index-review-go88__promotion-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Payment Section */
.page-index-review-go88__payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index-review-go88__payment-item {
  text-align: center;
}

.page-index-review-go88__payment-icon {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-review-go88__payment-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--go88-secondary-color);
}

.page-index-review-go88__payment-description {
  font-size: 1rem;
  line-height: 1.5;
}

.page-index-review-go88__cta-section {
  text-align: center;
  margin-top: 40px;
}

/* User Experience Section */
.page-index-review-go88__experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-review-go88__experience-item {
  text-align: center;
}

.page-index-review-go88__experience-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-go88__experience-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--go88-secondary-color);
}

/* Security Section */
.page-index-review-go88__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-go88__security-list li {
  background: #f8f8f8;
  border-left: 5px solid var(--go88-primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #333333;
}

.page-index-review-go88__security-list li p {
  margin: 0;
}

/* Pros & Cons Section */
.page-index-review-go88__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-review-go88__card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--go88-primary-color);
}

.page-index-review-go88__pros-list,
.page-index-review-go88__cons-list {
  list-style: none;
  padding: 0;
}

.page-index-review-go88__pros-list li,
.page-index-review-go88__cons-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-index-review-go88__pros-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-review-go88__cons-list li::before {
  content: '❌';
  position: absolute;
  left: 0;
  top: 0;
}

/* FAQ Section */
.page-index-review-go88__faq-list {
  margin-top: 30px;
}

.page-index-review-go88__faq-item {
  margin-bottom: 15px;
  overflow: hidden;
  background-color: var(--go88-card-bg);
  color: var(--go88-text-main);
}

.page-index-review-go88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--go88-secondary-color);
  border-bottom: 1px solid var(--go88-border-color);
  list-style: none;
}

.page-index-review-go88__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-review-go88__faq-qtext {
  flex-grow: 1;
}

.page-index-review-go88__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
}

.page-index-review-go88__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--go88-text-main);
}

/* Conclusion Section */
.page-index-review-go88__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-go88__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-index-review-go88__hero-section {
    padding: 10px 15px 40px;
  }

  .page-index-review-go88__hero-content {
    margin-top: 20px;
    padding: 15px;
  }

  .page-index-review-go88__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-index-review-go88__intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-index-review-go88__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-index-review-go88__btn-primary,
  .page-index-review-go88__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-index-review-go88__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-index-review-go88__about-section,
  .page-index-review-go88__features-section,
  .page-index-review-go88__games-section,
  .page-index-review-go88__promotions-section,
  .page-index-review-go88__payment-section,
  .page-index-review-go88__user-experience-section,
  .page-index-review-go88__security-section,
  .page-index-review-go88__pros-cons-section,
  .page-index-review-go88__faq-section,
  .page-index-review-go88__conclusion-section {
    padding: 40px 0;
  }

  .page-index-review-go88__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-review-go88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-index-review-go88__card {
    padding: 20px;
  }

  .page-index-review-go88__feature-title,
  .page-index-review-go88__game-title,
  .page-index-review-go88__promotion-title,
  .page-index-review-go88__payment-title,
  .page-index-review-go88__experience-title {
    font-size: 1.3rem;
  }

  .page-index-review-go88__text-block,
  .page-index-review-go88__feature-description,
  .page-index-review-go88__game-list li,
  .page-index-review-go88__promotion-description,
  .page-index-review-go88__payment-description,
  .page-index-review-go88__security-list li,
  .page-index-review-go88__pros-list li,
  .page-index-review-go88__cons-list li,
  .page-index-review-go88__faq-answer {
    font-size: 1rem;
  }

  .page-index-review-go88__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-index-review-go88__security-list li {
    padding: 12px 15px;
  }

  .page-index-review-go88__video-section {
    padding-top: 10px !important;
  }

  .page-index-review-go88__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-index-review-go88__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-index-review-go88__cta-buttons a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-index-review-go88__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-index-review-go88__section-title {
    font-size: 1.8rem;
  }

  .page-index-review-go88__hero-content {
    padding: 10px;
  }
}