/* style/blog-hy88-app-new-features.css */

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

.page-blog-hy88-app-new-features {
    background-color: var(--hy88-background);
    color: var(--hy88-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-blog-hy88-app-new-features__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--hy88-deep-green);
    overflow: hidden;
}

.page-blog-hy88-app-new-features__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-hy88-app-new-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-blog-hy88-app-new-features__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
    color: var(--hy88-text-main);
}

.page-blog-hy88-app-new-features__main-title {
    color: var(--hy88-text-main);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.page-blog-hy88-app-new-features__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--hy88-text-secondary);
}

.page-blog-hy88-app-new-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-hy88-app-new-features__btn-primary,
.page-blog-hy88-app-new-features__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-hy88-app-new-features__btn-primary {
    background: var(--hy88-button-gradient);
    color: var(--hy88-text-main);
    border: none;
}

.page-blog-hy88-app-new-features__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

.page-blog-hy88-app-new-features__btn-secondary {
    background: transparent;
    color: var(--hy88-secondary);
    border: 2px solid var(--hy88-secondary);
}

.page-blog-hy88-app-new-features__btn-secondary:hover {
    background: rgba(34, 199, 104, 0.1);
    transform: translateY(-2px);
}

/* Content Area */
.page-blog-hy88-app-new-features__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--hy88-text-main);
}

.page-blog-hy88-app-new-features__section-title {
    color: var(--hy88-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 2.2em;
}

.page-blog-hy88-app-new-features__image-inline {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    filter: none; /* Ensure no CSS filter changes image color */
    min-width: 200px;
    min-height: 200px;
}

/* Feature Blocks */
.page-blog-hy88-app-new-features__feature-block {
    background-color: var(--hy88-card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid var(--hy88-border);
    color: var(--hy88-text-main);
}

.page-blog-hy88-app-new-features__feature-title {
    color: var(--hy88-text-main);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-blog-hy88-app-new-features__game-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-blog-hy88-app-new-features__game-list li {
    background-color: var(--hy88-background);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--hy88-primary);
}

.page-blog-hy88-app-new-features__game-subtitle {
    color: var(--hy88-secondary);
    font-size: 1.3em;
    margin-bottom: 10px;
}

/* Promotions Section */
.page-blog-hy88-app-new-features__promotions-section p,
.page-blog-hy88-app-new-features__why-choose-section p {
    text-align: center;
    margin-bottom: 20px;
    color: var(--hy88-text-secondary);
}

.page-blog-hy88-app-new-features__promo-list,
.page-blog-hy88-app-new-features__reason-list {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 30px;
    color: var(--hy88-text-main);
}

.page-blog-hy88-app-new-features__promo-list li,
.page-blog-hy88-app-new-features__reason-list li {
    margin-bottom: 10px;
    color: var(--hy88-text-secondary);
}

.page-blog-hy88-app-new-features__promo-list li strong,
.page-blog-hy88-app-new-features__reason-list li strong {
    color: var(--hy88-text-main);
}

/* FAQ Section */
.page-blog-hy88-app-new-features__faq-list {
    margin-top: 30px;
}

.page-blog-hy88-app-new-features__faq-item {
    background-color: var(--hy88-card-bg);
    border: 1px solid var(--hy88-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--hy88-text-main);
}

.page-blog-hy88-app-new-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--hy88-text-main);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-hy88-app-new-features__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for details/summary */
}

.page-blog-hy88-app-new-features__faq-question:hover {
    background-color: var(--hy88-deep-green);
}

.page-blog-hy88-app-new-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--hy88-secondary);
}

.page-blog-hy88-app-new-features__faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--hy88-text-secondary);
}

.page-blog-hy88-app-new-features__faq-item[open] .page-blog-hy88-app-new-features__faq-question {
    background-color: var(--hy88-deep-green);
}

/* Final CTA */
.page-blog-hy88-app-new-features__final-cta {
    text-align: center;
    padding-bottom: 60px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-blog-hy88-app-new-features__hero-content {
        padding: 30px 15px;
    }

    .page-blog-hy88-app-new-features__main-title {
        font-size: 2em;
    }

    .page-blog-hy88-app-new-features__description {
        font-size: 1em;
    }

    .page-blog-hy88-app-new-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hy88-app-new-features__btn-primary,
    .page-blog-hy88-app-new-features__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-hy88-app-new-features__content-area {
        padding: 20px 15px;
    }

    .page-blog-hy88-app-new-features__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-hy88-app-new-features__feature-title {
        font-size: 1.5em;
    }

    .page-blog-hy88-app-new-features__image-inline,
    .page-blog-hy88-app-new-features__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-blog-hy88-app-new-features__hero-image-wrapper,
    .page-blog-hy88-app-new-features__content-area,
    .page-blog-hy88-app-new-features__feature-block,
    .page-blog-hy88-app-new-features__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-blog-hy88-app-new-features__feature-block,
    .page-blog-hy88-app-new-features__faq-item {
        padding: 20px 15px;
    }

    .page-blog-hy88-app-new-features__game-list li {
        padding: 15px;
    }

    .page-blog-hy88-app-new-features__promo-list,
    .page-blog-hy88-app-new-features__reason-list {
        padding-left: 25px;
    }

    .page-blog-hy88-app-new-features__faq-question {
        padding: 15px;
    }

    .page-blog-hy88-app-new-features__faq-answer {
        padding: 0 15px 15px 15px;
    }

    .page-blog-hy88-app-new-features__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
}