/* style/blog-hello88-platform-analysis.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-primary: #08160F;
    --bg-card: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-blog-hello88-platform-analysis {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
}

.page-blog-hello88-platform-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-hello88-platform-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-green);
}

.page-blog-hello88-platform-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 70vh; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-hello88-platform-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px; /* Ensure minimum size */
}

.page-blog-hello88-platform-analysis__hero-content {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    margin-top: -80px; /* Pull content up slightly over image for visual flow */
    background-color: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    z-index: 10;
}

.page-blog-hello88-platform-analysis__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive H1 font size */
    color: var(--gold-color);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-hello88-platform-analysis__lead-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hello88-platform-analysis__btn-primary,
.page-blog-hello88-platform-analysis__btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
}

.page-blog-hello88-platform-analysis__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-hello88-platform-analysis__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-hello88-platform-analysis__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-hello88-platform-analysis__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-2px);
}

.page-blog-hello88-platform-analysis__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-hello88-platform-analysis__section:last-of-type {
    border-bottom: none;
}

.page-blog-hello88-platform-analysis__section-title {
    font-size: 2.2rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-hello88-platform-analysis__section p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-blog-hello88-platform-analysis__introduction p strong,
.page-blog-hello88-platform-analysis__game-diversity p strong,
.page-blog-hello88-platform-analysis__technology p strong,
.page-blog-hello88-platform-analysis__promotions p strong,
.page-blog-hello88-platform-analysis__guide p strong,
.page-blog-hello88-platform-analysis__support p strong,
.page-blog-hello88-platform-analysis__conclusion p strong,
.page-blog-hello88-platform-analysis__faq-section p strong {
    color: var(--text-main);
}

.page-blog-hello88-platform-analysis__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-hello88-platform-analysis__grid-item {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-blog-hello88-platform-analysis__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-blog-hello88-platform-analysis__item-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-hello88-platform-analysis__item-title + p {
    flex-grow: 1;
    color: var(--text-secondary);
}

.page-blog-hello88-platform-analysis__feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.page-blog-hello88-platform-analysis__feature-item {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-hello88-platform-analysis__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-hello88-platform-analysis__promo-list,
.page-blog-hello88-platform-analysis__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-hello88-platform-analysis__promo-list li,
.page-blog-hello88-platform-analysis__contact-list li {
    background-color: var(--bg-card);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: var(--text-secondary);
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-hello88-platform-analysis__promo-list li strong,
.page-blog-hello88-platform-analysis__contact-list li strong {
    color: var(--text-main);
}

.page-blog-hello88-platform-analysis__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.page-blog-hello88-platform-analysis__step-item {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    text-align: center;
}

.page-blog-hello88-platform-analysis__step-item .page-blog-hello88-platform-analysis__item-title {
    color: var(--gold-color);
}

.page-blog-hello88-platform-analysis__faq-section {
    background-color: var(--deep-green);
    padding: 60px 0;
}

.page-blog-hello88-platform-analysis__faq-list {
    margin-top: 30px;
}

.page-blog-hello88-platform-analysis__faq-item {
    background-color: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-hello88-platform-analysis__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-blog-hello88-platform-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-hello88-platform-analysis__faq-item summary:hover {
    background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-hello88-platform-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-color);
}

.page-blog-hello88-platform-analysis__faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-hello88-platform-analysis__hero-content {
        margin-top: -60px;
        padding: 25px 15px;
    }

    .page-blog-hello88-platform-analysis__section-title {
        font-size: 1.8rem;
    }

    .page-blog-hello88-platform-analysis__item-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-blog-hello88-platform-analysis__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* body handles header offset */
    }

    .page-blog-hello88-platform-analysis__hero-image-wrapper {
        max-height: 50vh;
    }

    .page-blog-hello88-platform-analysis__hero-content {
        margin-top: -40px;
        padding: 20px 15px;
    }

    .page-blog-hello88-platform-analysis__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-blog-hello88-platform-analysis__lead-text {
        font-size: 1rem;
    }

    .page-blog-hello88-platform-analysis__section {
        padding: 40px 0;
    }

    .page-blog-hello88-platform-analysis__section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .page-blog-hello88-platform-analysis__grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-hello88-platform-analysis__feature-list,
    .page-blog-hello88-platform-analysis__guide-steps {
        gap: 20px;
    }

    .page-blog-hello88-platform-analysis__promo-list li,
    .page-blog-hello88-platform-analysis__contact-list li,
    .page-blog-hello88-platform-analysis__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-hello88-platform-analysis__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }

    /* Mobile specific image, video, button responsive rules */
    .page-blog-hello88-platform-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-hello88-platform-analysis video,
    .page-blog-hello88-platform-analysis__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-hello88-platform-analysis__section,
    .page-blog-hello88-platform-analysis__card,
    .page-blog-hello88-platform-analysis__container,
    .page-blog-hello88-platform-analysis__hero-section,
    .page-blog-hello88-platform-analysis__video-section,
    .page-blog-hello88-platform-analysis__video-container,
    .page-blog-hello88-platform-analysis__video-wrapper,
    .page-blog-hello88-platform-analysis__cta-buttons,
    .page-blog-hello88-platform-analysis__button-group,
    .page-blog-hello88-platform-analysis__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-hello88-platform-analysis__cta-button,
    .page-blog-hello88-platform-analysis__btn-primary,
    .page-blog-hello88-platform-analysis__btn-secondary,
    .page-blog-hello88-platform-analysis a[class*="button"],
    .page-blog-hello88-platform-analysis a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 10px; /* Add spacing between stacked buttons */
    }

    .page-blog-hello88-platform-analysis__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px;
    }
}