:root {
    --primary-color: #FF8C1A; /* Main color */
    --secondary-color: #FFA53A; /* Accent color */
    --card-bg: #17191F; /* Card Background */
    --page-bg: #0D0E12; /* Page Background */
    --text-main: #FFF3E6; /* Main text color */
    --border-color: #A84F0C; /* Border color */
    --glow-color: #FFB04D; /* Glow color */
    --deep-orange: #D96800; /* Deep Orange */
    --body-bg: var(--page-bg); /* Inherited from shared, but for context */
}

.page-blog-hm88-info-future-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for dark background */
    background-color: var(--page-bg);
}

/* HERO Section */
.page-blog-hm88-info-future-trends__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-blog-hm88-info-future-trends__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width on desktop */
}

.page-blog-hm88-info-future-trends__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-hm88-info-future-trends__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 140, 26, 0.5); /* Subtle glow */
}

.page-blog-hm88-info-future-trends__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Limit width for better readability */
}

.page-blog-hm88-info-future-trends__main-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem); /* Responsive font size for H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 140, 26, 0.7);
}

.page-blog-hm88-info-future-trends__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.page-blog-hm88-info-future-trends__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-hm88-info-future-trends__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

/* Content Area */
.page-blog-hm88-info-future-trends__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-blog-hm88-info-future-trends__section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 140, 26, 0.3);
}

.page-blog-hm88-info-future-trends__sub-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-hm88-info-future-trends__text-block p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.page-blog-hm88-info-future-trends__text-block strong {
    color: var(--primary-color);
}

.page-blog-hm88-info-future-trends__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-blog-hm88-info-future-trends__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 140, 26, 0.3);
}

/* FAQ Section */
.page-blog-hm88-info-future-trends__faq-section {
    padding: 60px 20px;
    background-color: var(--card-bg); /* Darker background for contrast */
    color: var(--text-main);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.page-blog-hm88-info-future-trends__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

details.page-blog-hm88-info-future-trends__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: #1e2025; /* Slightly lighter than card-bg for item contrast */
}

details.page-blog-hm88-info-future-trends__faq-item summary.page-blog-hm88-info-future-trends__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
}

details.page-blog-hm88-info-future-trends__faq-item summary.page-blog-hm88-info-future-trends__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-hm88-info-future-trends__faq-item summary.page-blog-hm88-info-future-trends__faq-question:hover {
    background: #282b30;
}

.page-blog-hm88-info-future-trends__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}

.page-blog-hm88-info-future-trends__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-blog-hm88-info-future-trends__faq-item .page-blog-hm88-info-future-trends__faq-answer {
    padding: 0 20px 20px;
    background: #1e2025;
    border-radius: 0 0 5px 5px;
    color: var(--text-main);
    font-size: 1rem;
}

/* Related Articles Section */
.page-blog-hm88-info-future-trends__related-articles {
    padding: 60px 20px;
    background-color: var(--page-bg);
    color: var(--text-main);
    text-align: center;
}

.page-blog-hm88-info-future-trends__blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-blog-hm88-info-future-trends__blog-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-blog-hm88-info-future-trends__blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.3);
}

.page-blog-hm88-info-future-trends__blog-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-hm88-info-future-trends__card-content {
    padding: 20px;
    text-align: left;
}

.page-blog-hm88-info-future-trends__card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    min-height: 60px; /* Ensure consistent height for titles */
}

.page-blog-hm88-info-future-trends__card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-hm88-info-future-trends__card-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-blog-hm88-info-future-trends__card-excerpt {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit excerpt to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 70px; /* Consistent height for excerpts */
}

.page-blog-hm88-info-future-trends__card-date {
    font-size: 0.85rem;
    color: #999999;
}

.page-blog-hm88-info-future-trends__view-all-button {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-hm88-info-future-trends__main-title {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }

    .page-blog-hm88-info-future-trends__section-title {
        font-size: 2rem;
    }

    .page-blog-hm88-info-future-trends__sub-title {
        font-size: 1.6rem;
    }

    .page-blog-hm88-info-future-trends__blog-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-hm88-info-future-trends__hero-section {
        padding-top: 10px !important; /* Fixed header spacing */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hm88-info-future-trends__hero-image img {
        border-radius: 4px;
    }

    .page-blog-hm88-info-future-trends__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-blog-hm88-info-future-trends__description {
        font-size: 1rem;
    }

    .page-blog-hm88-info-future-trends__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-hm88-info-future-trends__section-title {
        font-size: 1.8rem;
    }

    .page-blog-hm88-info-future-trends__sub-title {
        font-size: 1.4rem;
    }

    .page-blog-hm88-info-future-trends__content-area {
        padding: 30px 15px;
    }

    .page-blog-hm88-info-future-trends__text-block p {
        font-size: 0.95rem;
    }

    .page-blog-hm88-info-future-trends__image-wrapper img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-hm88-info-future-trends__section,
    .page-blog-hm88-info-future-trends__card,
    .page-blog-hm88-info-future-trends__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ */
    details.page-blog-hm88-info-future-trends__faq-item summary.page-blog-hm88-info-future-trends__faq-question {
        padding: 15px;
    }
    .page-blog-hm88-info-future-trends__faq-qtext {
        font-size: 15px;
    }
    details.page-blog-hm88-info-future-trends__faq-item .page-blog-hm88-info-future-trends__faq-answer {
        padding: 0 15px 15px;
    }

    /* Blog Cards */
    .page-blog-hm88-info-future-trends__blog-list {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 20px;
    }
    .page-blog-hm88-info-future-trends__blog-card img {
        
    }
    .page-blog-hm88-info-future-trends__card-title {
        font-size: 1.2rem;
        min-height: auto;
    }
    .page-blog-hm88-info-future-trends__card-excerpt {
        font-size: 0.9rem;
        min-height: auto;
    }
}

/* Ensure contrast for text on dark backgrounds */
.page-blog-hm88-info-future-trends__dark-section {
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-blog-hm88-info-future-trends__light-bg {
    background-color: var(--page-bg); /* Still dark, but named for semantic */
    color: var(--text-main);
}

/* Button specific styles for contrast */
.page-blog-hm88-info-future-trends__btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    border: none;
}

.page-blog-hm88-info-future-trends__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.page-blog-hm88-info-future-trends__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* General link styling */
.page-blog-hm88-info-future-trends a:not(.page-blog-hm88-info-future-trends__cta-button) {
    color: var(--primary-color);
    text-decoration: underline;
}
.page-blog-hm88-info-future-trends a:not(.page-blog-hm88-info-future-trends__cta-button):hover {
    color: var(--secondary-color);
    text-decoration: none;
}