/* style/index-review-go88.css */
:root {
    --primary-color: #C0392B;
    --secondary-color: #F39C12;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f4f4;
    --bg-dark: #2c3e50;
    --border-color: #e0e0e0;
}

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

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

.page-index-review-go88__hero {
    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%);
    color: var(--text-light);
    overflow: hidden;
}

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

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

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

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

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

.page-index-review-go88__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-index-review-go88__cta-button:hover {
    background: #e68a00; /* Slightly darker secondary color */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88__cta-button--small {
    padding: 12px 30px;
    font-size: 1.1em;
    margin-top: 15px;
}

.page-index-review-go88__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.page-index-review-go88__section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-index-review-go88__section h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

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

.page-index-review-go88__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-review-go88__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.page-index-review-go88__list li::before {
    content: '•'; /* Default bullet */
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: -2px;
}

.page-index-review-go88__list--check li::before {
    content: '✔';
    color: #28a745; /* Green for checkmark */
}

.page-index-review-go88__list--cross li::before {
    content: '✖';
    color: #dc3545; /* Red for crossmark */
}

.page-index-review-go88__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-index-review-go88__ordered-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-index-review-go88__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-review-go88__image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-index-review-go88__promotion-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-go88__promotion-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-index-review-go88__promotion-card p {
    font-size: 1em;
    color: var(--text-dark);
}

.page-index-review-go88__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.page-index-review-go88__card--pros {
    background: #e6ffe6; /* Light green */
    border: 1px solid #28a745; /* Green border */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.1);
}

.page-index-review-go88__card--cons {
    background: #ffe6e6; /* Light red */
    border: 1px solid #dc3545; /* Red border */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.1);
}

.page-index-review-go88__card--pros h3 {
    color: #28a745;
}

.page-index-review-go88__card--cons h3 {
    color: #dc3545;
}

.page-index-review-go88__app-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-index-review-go88__app-image {
    text-align: center;
}

.page-index-review-go88__app-image img {
    max-width: 300px;
    margin: 0 auto;
}

/* FAQ styles */
.page-index-review-go88__faq-area {
    background-color: var(--bg-light);
}

.page-index-review-go88__faq-list {
    margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

.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 20px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-go88__hero h1 {
        font-size: 2.8em;
    }
    .page-index-review-go88__hero p {
        font-size: 1.2em;
    }
    .page-index-review-go88__section h2 {
        font-size: 2.2em;
    }
    .page-index-review-go88__section h3 {
        font-size: 1.6em;
    }
    .page-index-review-go88__promotion-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-review-go88__hero {
        padding: 40px 15px;
    }
    .page-index-review-go88__hero h1 {
        font-size: 2em;
    }
    .page-index-review-go88__hero p {
        font-size: 1em;
    }
    .page-index-review-go88__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-review-go88__section {
        padding: 40px 0;
    }
    .page-index-review-go88__section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-review-go88__section h3 {
        font-size: 1.4em;
    }
    .page-index-review-go88__grid-2-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-index-review-go88__app-image img {
        max-width: 250px;
        margin-top: 30px;
    }
    .faq-question {
        padding: 15px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-answer {
        padding: 0 15px;
    }
    .faq-item.active .faq-answer {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .page-index-review-go88__hero h1 {
        font-size: 1.8em;
    }
    .page-index-review-go88__hero p {
        font-size: 0.9em;
    }
    .page-index-review-go88__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-review-go88__section h2 {
        font-size: 1.6em;
    }
    .page-index-review-go88__list li, .page-index-review-go88__ordered-list li, .page-index-review-go88__section p {
        font-size: 0.95em;
    }
    .page-index-review-go88__promotion-card h3 {
        font-size: 1.3em;
    }
}