.page-index-review-one88 {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Deep Red */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f5f5f5;
  --bg-dark: #222222;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-index-review-one88__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-index-review-one88__section:last-of-type {
  border-bottom: none;
}

.page-index-review-one88__section-title {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-index-review-one88__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color-dark);
}

/* Hero Section */
.page-index-review-one88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.page-index-review-one88__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-one88__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-index-review-one88__main-title {
  font-size: 48px;
  color: var(--text-color-light);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-one88__hero-description {
  font-size: 20px;
  color: var(--text-color-light);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-index-review-one88__cta-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.page-index-review-one88__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

/* Content specific styles */
.page-index-review-one88__introduction, .page-index-review-one88__promotions, .page-index-review-one88__experience, .page-index-review-one88__payments, .page-index-review-one88__customer-service, .page-index-review-one88__security {
  background-color: #ffffff;
}

.page-index-review-one88__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.page-index-review-one88__content-wrapper p, .page-index-review-one88__content-wrapper ul, .page-index-review-one88__content-wrapper ol {
  flex: 1;
  min-width: 300px;
  font-size: 16px;
  color: var(--text-color-dark);
}

.page-index-review-one88__content-wrapper h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-top: 20px;
  margin-bottom: 15px;
  flex-basis: 100%;
}

.page-index-review-one88__content-wrapper ul,
.page-index-review-one88__content-wrapper ol {
  padding-left: 25px;
  flex-basis: 100%;
}

.page-index-review-one88__content-wrapper li {
  margin-bottom: 10px;
}

.page-index-review-one88__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-index-review-one88__content-image--right {
  order: 1;
}

@media (max-width: 768px) {
  .page-index-review-one88__content-wrapper {
    flex-direction: column;
  }
  .page-index-review-one88__content-image, .page-index-review-one88__content-image--right {
    max-width: 100%;
    order: 0; /* Reset order for mobile */
  }
  .page-index-review-one88__content-wrapper h3 {
    text-align: center;
  }
}

/* Product Grid */
.page-index-review-one88__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-one88__product-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-index-review-one88__card-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-review-one88__card-text {
  font-size: 15px;
  color: var(--text-color-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-review-one88__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
}

.page-index-review-one88__card-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Promotions Section */
.page-index-review-one88__promotions ol {
  list-style-type: decimal;
  margin-left: 20px;
}

.page-index-review-one88__promotions ul {
  list-style-type: disc;
  margin-left: 20px;
}

.page-index-review-one88__promotions li {
  margin-bottom: 10px;
}

/* Pros and Cons */
.page-index-review-one88__pros-cons-grid {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-one88__pros, .page-index-review-one88__cons {
  flex: 1;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.page-index-review-one88__pros h3, .page-index-review-one88__cons h3 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.page-index-review-one88__pros h3 {
  color: #28a745; /* Green for pros */
}

.page-index-review-one88__cons h3 {
  color: #dc3545; /* Red for cons */
}

.page-index-review-one88__pros ul, .page-index-review-one88__cons ul {
  list-style: none;
  padding: 0;
}

.page-index-review-one88__pros li, .page-index-review-one88__cons li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

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

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

@media (max-width: 768px) {
  .page-index-review-one88__pros-cons-grid {
    flex-direction: column;
  }
}

/* Registration Guide */
.page-index-review-one88__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-index-review-one88__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-one88__step-number {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88__step-item h4 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-one88__step-item p {
  font-size: 15px;
  color: var(--text-color-dark);
}

/* FAQ Section */
.page-index-review-one88__faq {
  background-color: var(--bg-light);
}

.page-index-review-one88__faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-color-dark);
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border-top: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  color: var(--text-color-dark);
}

/* Conclusion Section */
.page-index-review-one88__conclusion {
  text-align: center;
  background-color: #ffffff;
}

/* Responsible Gambling */
.page-index-review-one88__responsible-gambling {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
  text-align: center;
  padding: 40px 0;
}

.page-index-review-one88__responsible-gambling h3 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 15px;
}

.page-index-review-one88__responsible-gambling p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-one88__main-title {
    font-size: 40px;
  }
  .page-index-review-one88__section-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-review-one88__hero-section {
    padding: 40px 15px;
  }
  .page-index-review-one88__main-title {
    font-size: 32px;
  }
  .page-index-review-one88__hero-description {
    font-size: 16px;
  }
  .page-index-review-one88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
  }
  .page-index-review-one88__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }
  .page-index-review-one88__section {
    padding: 40px 0;
  }
  .page-index-review-one88__section-title {
    font-size: 26px;
  }
  .page-index-review-one88__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-index-review-one88__product-card, .page-index-review-one88__pros, .page-index-review-one88__cons, .page-index-review-one88__step-item {
    padding: 20px;
  }
  .page-index-review-one88__card-title {
    font-size: 20px;
  }
  .page-index-review-one88__card-text {
    font-size: 14px;
  }
  .page-index-review-one88__pros h3, .page-index-review-one88__cons h3 {
    font-size: 22px;
  }
  .page-index-review-one88__responsible-gambling h3 {
    font-size: 24px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-one88__main-title {
    font-size: 28px;
  }
  .page-index-review-one88__section-title {
    font-size: 22px;
  }
  .page-index-review-one88__hero-image img {
    border-radius: 4px;
  }
  .page-index-review-one88__cta-button {
    font-size: 14px;
    padding: 10px 25px;
  }
  .page-index-review-one88__cta-button--large {
    font-size: 16px;
    padding: 12px 30px;
  }
}