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

:root {
    --primary-color: #0A2463; /* Royal Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light-grey: #f1f3f5;
    --border-light: #e0e0e0;
    --dark-bg-1: #1a1a1a; /* Assuming this is the body background from shared.css */
}

/* Ensure all content is visible below the fixed header */
.page-index-review-go88__intro-section {
    padding-top: 180px; /* Desktop: Adjust based on header height */
    padding-bottom: 60px;
    background: var(--dark-bg-1); /* Match body background */
    color: var(--text-light); /* Light text for dark background */
}

@media (max-width: 768px) {
    .page-index-review-go88__intro-section {
        padding-top: 140px; /* Mobile: Adjust based on header height */
        padding-bottom: 40px;
    }
}

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

.page-index-review-go88__main-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--secondary-color); /* Gold title for impact */
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-index-review-go88__intro-text {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.page-index-review-go88__link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-review-go88__link:hover {
    color: #ffd700; /* Slightly lighter gold */
    text-decoration: underline;
}

.page-index-review-go88__cta-wrapper {
    text-align: center;
}

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

.page-index-review-go88__btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.page-index-review-go88__btn-primary:hover {
    background: #e0b800; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88__btn-secondary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--secondary-color);
}

.page-index-review-go88__btn-secondary:hover {
    background: #071b4a; /* Darker primary */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

/* Review Summary Section */
.page-index-review-go88__review-summary-section {
    padding: 60px 0;
    background: var(--bg-light-grey);
    color: var(--text-dark);
}

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

.page-index-review-go88__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-review-go88__summary-card {
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 30px;
    gap: 30px;
}

.page-index-review-go88__summary-image {
    width: 40%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-index-review-go88__summary-content {
    flex-grow: 1;
}

.page-index-review-go88__summary-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-index-review-go88__summary-features h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-go88__summary-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-index-review-go88__summary-features li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-index-review-go88__summary-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #28a745; /* Green checkmark */
    font-size: 18px;
    top: 0;
}

/* Detailed Review Section */
.page-index-review-go88__detailed-review-section {
    padding: 60px 0;
    background: var(--dark-bg-1); /* Dark background for this section */
    color: var(--text-light);
}

.page-index-review-go88__detailed-review-section .page-index-review-go88__section-title {
    color: var(--secondary-color);
}