/* style/index-review-hi88.css */
:root {
    --primary-color: #E44D26;
    --secondary-color: #333333;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f8f8;
    --bg-dark: #0d0d0d; /* Assuming --dark-bg-1 from shared.css is dark */
    --border-color: #e0e0e0;
}

.page-index-review-hi88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Dark body background from shared.css, so light text */
    background-color: var(--bg-dark); /* Fallback, but main body background is from shared.css */
}

/* Video Section */
.page-index-review-hi88__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Desktop: Adjust for fixed header */
    background-color: var(--bg-dark);
}

.page-index-review-hi88__video-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-hi88__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-index-review-hi88__video,
.page-index-review-hi88__video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    object-fit: cover;
}

/* Title Section */
.page-index-review-hi88__title-section {
    background: linear-gradient(135deg, var(--primary-color), #FF7F50);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 120px; /* Adjust for fixed header */
}

.page-index-review-hi88__title-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-review-hi88__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-light);
}

.page-index-review-hi88__main-title a {
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.page-index-review-hi88__main-title a:hover {
    border-color: var(--text-light);
}

.page-index-review-hi88__title-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-index-review-hi88__title-description a {
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
}

.page-index-review-hi88__title-description a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-index-review-hi88__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.page-index-review-hi88__cta-button:hover {
    background-color: #555555;
    transform: translateY(-3px);
    border-color: var(--text-light);
}

.page-index-review-hi88__cta-button:active {
    transform: translateY(0);
}

/* Main Review Content Area */
.page-index-review-hi88__main-review-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: var(--bg-dark);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.page-index-review-hi88__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-index-review-hi88__section-title a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__section-title a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__text-block p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.page-index-review-hi88__text-block p a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__text-block p a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__image-full-width {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Brand Section */
.page-index-review-hi88__brand-section {
    background-color: #1a1a1a;
    padding: 60px 20px;
    color: var(--text-light);
}

.page-index-review-hi88__brand-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-index-review-hi88__brand-title a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__brand-title a:hover {
    border-bottom-style: solid;
}

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

.page-index-review-hi88__brand-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.page-index-review-hi88__brand-item h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-review-hi88__brand-item h3 a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__brand-item h3 a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__brand-item p,
.page-index-review-hi88__brand-item li {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.page-index-review-hi88__brand-item p a,
.page-index-review-hi88__brand-item li a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__brand-item p a:hover,
.page-index-review-hi88__brand-item li a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__brand-item ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.page-index-review-hi88__brand-item li {
    margin-bottom: 8px;
}

.page-index-review-hi88__brand-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-index-review-hi88__faq-section {
    background-color: var(--bg-dark);
    padding: 60px 20px;
    color: var(--text-light);
}

.page-index-review-hi88__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-index-review-hi88__faq-title a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__faq-title a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-index-review-hi88__faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-index-review-hi88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #3a3a3a;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #4a4a4a;
}

.page-index-review-hi88__faq-question:hover {
    background-color: #4a4a4a;
}

.page-index-review-hi88__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-light);
    flex: 1;
    line-height: 1.4;
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-index-review-hi88__faq-question h3 a {
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
}

.page-index-review-hi88__faq-question h3 a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click event */
}

.page-index-review-hi88__faq-item.active .page-index-review-hi88__faq-toggle {
    transform: rotate(45deg);
}

.page-index-review-hi88__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 20px;
    opacity: 0;
    background-color: #2a2a2a;
}

.page-index-review-hi88__faq-item.active .page-index-review-hi88__faq-answer {
    max-height: 2000px !important; /* Ensure enough height for content */
    padding: 20px !important;
    opacity: 1;
    border-top: 1px solid #4a4a4a;
}

.page-index-review-hi88__faq-answer p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.page-index-review-hi88__faq-answer p a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__faq-answer p a:hover {
    border-bottom-style: solid;
}

/* Blog Section */
.page-index-review-hi88__blog-section {
    background-color: #1a1a1a;
    padding: 60px 20px;
    color: var(--text-light);
}

.page-index-review-hi88__blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-index-review-hi88__blog-title a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__blog-title a:hover {
    border-bottom-style: solid;
}

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

.page-index-review-hi88__blog-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi88__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi88__blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.page-index-review-hi88__blog-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #4a4a4a;
}

.page-index-review-hi88__blog-item-title {
    font-size: 1.4em;
    color: var(--primary-color);
    padding: 15px 20px 0;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 600;
}

.page-index-review-hi88__blog-item-title a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__blog-item-title a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__blog-item-excerpt {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 20px;
    margin-bottom: 15px;
}

.page-index-review-hi88__blog-item-excerpt a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.page-index-review-hi88__blog-item-excerpt a:hover {
    border-bottom-style: solid;
}

.page-index-review-hi88__blog-item-date {
    display: block;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 20px 15px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-hi88__main-title {
        font-size: 2.8em;
    }
    .page-index-review-hi88__section-title,
    .page-index-review-hi88__brand-title,
    .page-index-review-hi88__faq-title,
    .page-index-review-hi88__blog-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-review-hi88 {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-index-review-hi88__video-section {
        padding-top: 10px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-index-review-hi88__video-wrapper {
        border-radius: 4px;
    }
    
    .page-index-review-hi88__video,
    .page-index-review-hi88__video-iframe {
        border-radius: 4px;
    }

    .page-index-review-hi88__title-section {
        padding: 60px 15px;
        padding-top: 100px; /* Mobile: Adjust for fixed header */
    }

    .page-index-review-hi88__main-title {
        font-size: 2em;
    }

    .page-index-review-hi88__title-description {
        font-size: 1em;
    }

    .page-index-review-hi88__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-review-hi88__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-index-review-hi88__main-review-section,
    .page-index-review-hi88__brand-section,
    .page-index-review-hi88__faq-section,
    .page-index-review-hi88__blog-section {
        padding: 30px 15px;
    }

    .page-index-review-hi88__section-title,
    .page-index-review-hi88__brand-title,
    .page-index-review-hi88__faq-title,
    .page-index-review-hi88__blog-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-index-review-hi88__text-block p {
        font-size: 1em;
    }

    .page-index-review-hi88__brand-content {
        grid-template-columns: 1fr;
    }

    .page-index-review-hi88__brand-item h3 {
        font-size: 1.5em;
    }

    .page-index-review-hi88__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-index-review-hi88__faq-question h3 {
        font-size: 1.1em;
        width: calc(100% - 40px);
    }
    
    .page-index-review-hi88__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 1.8em;
    }
    
    .page-index-review-hi88__faq-answer {
        padding: 0 15px;
    }
    
    .page-index-review-hi88__faq-item.active .page-index-review-hi88__faq-answer {
        padding: 15px !important;
    }

    .page-index-review-hi88__blog-list {
        grid-template-columns: 1fr;
    }

    .page-index-review-hi88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-index-review-hi88__section,
    .page-index-review-hi88__card,
    .page-index-review-hi88__container,
    .page-index-review-hi88__video-container,
    .page-index-review-hi88__title-container,
    .page-index-review-hi88__main-review-section,
    .page-index-review-hi88__brand-container,
    .page-index-review-hi88__faq-container,
    .page-index-review-hi88__blog-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-review-hi88__main-title {
        font-size: 1.8em;
    }
    .page-index-review-hi88__section-title,
    .page-index-review-hi88__brand-title,
    .page-index-review-hi88__faq-title,
    .page-index-review-hi88__blog-title {
        font-size: 1.5em;
    }
    .page-index-review-hi88__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-review-hi88__faq-question h3 {
        font-size: 1em;
    }
    .page-index-review-hi88__blog-item-title {
        font-size: 1.2em;
    }
    .page-index-review-hi88__blog-item-image {
        height: 160px;
    }
}