/* style/index-review-fun88.css */
:root {
    --primary-color: #1E3A8A;
    --secondary-color: #F59E0B;
    --text-color-dark-bg: #ffffff;
    --text-color-light-bg: #333333;
    --card-bg-color: #ffffff;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --dark-section-bg: #1E3A8A;
    --light-section-bg: #f1f3f5;
}

.page-index-review-fun88 {
    color: var(--text-color-light-bg);
    background-color: #0a0a0a; /* Body background is dark */
}

/* Ensure main content starts below fixed header */
.page-index-review-fun88__hero-banner {
    padding-top: 180px; /* Desktop: Adjust based on fixed header height */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--text-color-dark-bg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

.page-index-review-fun88__main-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-dark-bg);
}

.page-index-review-fun88__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-review-fun88__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-color-light-bg);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-fun88__cta-button:hover {
    background: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fun88__cta-button--small {
    padding: 10px 25px;
    font-size: 16px;
}

.page-index-review-fun88__section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-review-fun88__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-index-review-fun88__section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color-light-bg);
}

.page-index-review-fun88__introduction-section,
.page-index-review-fun88__game-types-section,
.page-index-review-fun88__payment-section,
.page-index-review-fun88__pros-cons-section,
.page-index-review-fun88__conclusion-section,
.page-index-review-fun88__faq-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Dark background for sections */
}

.page-index-review-fun88__features-section,
.page-index-review-fun88__promotions-section,
.page-index-review-fun88__customer-support-section,
.page-index-review-fun88__registration-guide-section {
    padding: 60px 0;
    background-color: var(--dark-section-bg);
    color: var(--text-color-dark-bg);
}

.page-index-review-fun88__features-section .page-index-review-fun88__section-title,
.page-index-review-fun88__promotions-section .page-index-review-fun88__section-title,
.page-index-review-fun88__customer-support-section .page-index-review-fun88__section-title,
.page-index-review-fun88__registration-guide-section .page-index-review-fun88__section-title {
    color: var(--text-color-dark-bg);
}

.page-index-review-fun88__card {
    background: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    padding: 40px;
    color: var(--text-color-light-bg);
}

.page-index-review-fun88__light-bg {
    background: var(--card-bg-color);
    color: var(--text-color-light-bg);
}

.page-index-review-fun88__dark-bg {
    background: var(--dark-section-bg);
    color: var(--text-color-dark-bg);
}

.page-index-review-fun88__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-review-fun88__platform-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-fun88__introduction-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.page-index-review-fun88__introduction-section p:last-child {
    margin-bottom: 0;
}

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

.page-index-review-fun88__feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fun88__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-fun88__feature-icon {
    width: 150px; /* Min size 200x200, but icon should be smaller visually */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-index-review-fun88__feature-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-fun88__feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color-light-bg);
}

.page-index-review-fun88__game-category {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-review-fun88__game-category:last-child {
    margin-bottom: 0;
}

.page-index-review-fun88__category-image {
    width: 250px;
    height: auto;
    margin-right: 30px;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-index-review-fun88__game-category h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-index-review-fun88__game-category p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.page-index-review-fun88__promo-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fun88__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-fun88__promo-image {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-index-review-fun88__promo-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-fun88__promo-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-index-review-fun88__payment-list,
.page-index-review-fun88__transaction-time {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-index-review-fun88__payment-list li,
.page-index-review-fun88__transaction-time li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.page-index-review-fun88__payment-icon {
    width: 48px; /* Min size 200x200, but icon should be smaller visually */
    height: auto;
    margin-right: 15px;
    border-radius: 4px;
    flex-shrink: 0;
}

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

.page-index-review-fun88__channel-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fun88__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-fun88__channel-icon {
    width: 150px; /* Min size 200x200, but icon should be smaller visually */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-index-review-fun88__channel-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-fun88__channel-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-index-review-fun88__pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-fun88__pros-column,
.page-index-review-fun88__cons-column {
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
}

.page-index-review-fun88__pros-column h3,
.page-index-review-fun88__cons-column h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-index-review-fun88__list {
    list-style: none;
    padding: 0;
}

.page-index-review-fun88__list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: var(--text-color-light-bg);
}

.page-index-review-fun88__list li img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.page-index-review-fun88__registration-guide-section .page-index-review-fun88__section-subtitle {
    color: var(--text-color-dark-bg);
}

.page-index-review-fun88__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 40px auto;
}

.page-index-review-fun88__step-list li {
    counter-increment: step-counter;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    color: var(--text-color-dark-bg);
}

.page-index-review-fun88__step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.page-index-review-fun88__step-list li strong {
    color: var(--text-color-dark-bg);
}

.page-index-review-fun88__conclusion-text {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    color: inherit;
}

.page-index-review-fun88__conclusion-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.page-index-review-fun88__conclusion-section .page-index-review-fun88__cta-button {
    margin-top: 20px;
}

.page-index-review-fun88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-review-fun88__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-index-review-fun88__faq-item.active .page-index-review-fun88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-index-review-fun88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-fun88__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-review-fun88__faq-question:active {
  background: #eeeeee;
}

.page-index-review-fun88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-color-light-bg);
}

.page-index-review-fun88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-review-fun88__faq-item.active .page-index-review-fun88__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

.page-index-review-fun88 .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-index-review-fun88 .page-index-review-fun88__link-in-text {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-index-review-fun88 .page-index-review-fun88__link-in-text:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fun88__main-title {
        font-size: 36px;
    }
    .page-index-review-fun88__section-title {
        font-size: 28px;
    }
    .page-index-review-fun88__game-category {
        flex-direction: column;
        text-align: center;
    }
    .page-index-review-fun88__category-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-index-review-fun88__pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-review-fun88__hero-banner {
        padding-top: 140px !important; /* Mobile: Adjust based on fixed header height */
        padding-bottom: 40px;
    }
    .page-index-review-fun88__main-title {
        font-size: 28px;
    }
    .page-index-review-fun88__hero-description {
        font-size: 16px;
    }
    .page-index-review-fun88__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-index-review-fun88__section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .page-index-review-fun88__section-subtitle {
        font-size: 16px;
    }
    .page-index-review-fun88__introduction-section,
    .page-index-review-fun88__features-section,
    .page-index-review-fun88__game-types-section,
    .page-index-review-fun88__promotions-section,
    .page-index-review-fun88__payment-section,
    .page-index-review-fun88__customer-support-section,
    .page-index-review-fun88__pros-cons-section,
    .page-index-review-fun88__registration-guide-section,
    .page-index-review-fun88__conclusion-section,
    .page-index-review-fun88__faq-section {
        padding: 40px 0;
    }
    .page-index-review-fun88__card {
        padding: 25px;
    }
    .page-index-review-fun88__platform-logo {
        max-width: 200px;
    }
    .page-index-review-fun88__feature-grid,
    .page-index-review-fun88__promo-grid,
    .page-index-review-fun88__support-channels {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-review-fun88__category-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin-bottom: 15px;
    }
    .page-index-review-fun88__game-category {
        padding: 15px;
    }
    .page-index-review-fun88__game-category h3 {
        font-size: 20px;
    }
    .page-index-review-fun88__game-category p {
        font-size: 15px;
    }
    .page-index-review-fun88__promo-image,
    .page-index-review-fun88__feature-icon,
    .page-index-review-fun88__channel-icon {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .page-index-review-fun88__payment-icon {
        width: 36px !important;
        height: auto !important;
    }
    .page-index-review-fun88__payment-list li,
    .page-index-review-fun88__transaction-time li,
    .page-index-review-fun88__list li {
        font-size: 15px;
    }
    .page-index-review-fun88__step-list li {
        font-size: 16px;
        padding-left: 35px;
    }
    .page-index-review-fun88__step-list li::before {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    .page-index-review-fun88__conclusion-text {
        font-size: 16px;
    }
    .page-index-review-fun88__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-index-review-fun88__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-index-review-fun88__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-index-review-fun88__faq-answer {
        padding: 0 15px;
    }
    .page-index-review-fun88__faq-item.active .page-index-review-fun88__faq-answer {
        padding: 15px !important;
    }
    /* Mobile image responsive override */
    .page-index-review-fun88 img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
    }
    .page-index-review-fun88__section,
    .page-index-review-fun88__card,
    .page-index-review-fun88__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
}