/* style/blog-tai-hello88-promotions-analysis.css */

/* Root variables for colors */
:root {
    --page-bg-color: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

.page-blog-tai-hello88-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
    background-color: var(--page-bg-color);
    overflow: hidden;
}

.page-blog-tai-hello88-promotions-analysis__hero-image-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

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

.page-blog-tai-hello88-promotions-analysis__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.page-blog-tai-hello88-promotions-analysis__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-tai-hello88-promotions-analysis__description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-blog-tai-hello88-promotions-analysis__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-blog-tai-hello88-promotions-analysis__btn-primary,
.page-blog-tai-hello88-promotions-analysis__btn-secondary,
.page-blog-tai-hello88-promotions-analysis__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-tai-hello88-promotions-analysis__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-tai-hello88-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

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

.page-blog-tai-hello88-promotions-analysis__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--page-bg-color);
    transform: translateY(-3px);
}

.page-blog-tai-hello88-promotions-analysis__btn-link {
    background-color: var(--deep-green-color);
    color: var(--text-main-color);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-blog-tai-hello88-promotions-analysis__btn-link:hover {
    background-color: var(--border-color);
}

.page-blog-tai-hello88-promotions-analysis__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-main-color);
}

.page-blog-tai-hello88-promotions-analysis__section-wrapper {
    margin-bottom: 60px;
    padding: 30px;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-blog-tai-hello88-promotions-analysis__section-title {
    font-size: 2.2em;
    color: var(--glow-color);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--divider-color);
    font-weight: 600;
}

.page-blog-tai-hello88-promotions-analysis__text-block {
    font-size: 1.05em;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-blog-tai-hello88-promotions-analysis__card {
    background-color: var(--deep-green-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-tai-hello88-promotions-analysis__card:hover {
    transform: translateY(-5px);
}

.page-blog-tai-hello88-promotions-analysis__card-image {
    width: 100%;
    max-width: 400px; /* Recommended size for content display */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-blog-tai-hello88-promotions-analysis__card-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-blog-tai-hello88-promotions-analysis__card-text {
    color: var(--text-secondary-color);
    font-size: 0.95em;
    text-align: justify;
}

.page-blog-tai-hello88-promotions-analysis__promotion-list,
.page-blog-tai-hello88-promotions-analysis__terms-list,
.page-blog-tai-hello88-promotions-analysis__tips-list,
.page-blog-tai-hello88-promotions-analysis__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-tai-hello88-promotions-analysis__promotion-item,
.page-blog-tai-hello88-promotions-analysis__terms-item,
.page-blog-tai-hello88-promotions-analysis__tips-item,
.page-blog-tai-hello88-promotions-analysis__step-item {
    background-color: var(--deep-green-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-tai-hello88-promotions-analysis__promotion-heading,
.page-blog-tai-hello88-promotions-analysis__terms-heading,
.page-blog-tai-hello88-promotions-analysis__tips-heading,
.page-blog-tai-hello88-promotions-analysis__step-heading {
    font-size: 1.3em;
    color: var(--glow-color);
    margin-bottom: 10px;
}

.page-blog-tai-hello88-promotions-analysis__promotion-description,
.page-blog-tai-hello88-promotions-analysis__terms-item,
.page-blog-tai-hello88-promotions-analysis__tips-item,
.page-blog-tai-hello88-promotions-analysis__step-description {
    color: var(--text-secondary-color);
    font-size: 0.95em;
}

.page-blog-tai-hello88-promotions-analysis__text-center {
    text-align: center;
    margin-top: 30px;
}

.page-blog-tai-hello88-promotions-analysis__faq-container {
    margin-top: 30px;
}

.page-blog-tai-hello88-promotions-analysis__faq-item {
    background-color: var(--deep-green-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-tai-hello88-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15em;
    color: var(--text-main-color);
    font-weight: 600;
    background-color: var(--card-bg-color);
    transition: background-color 0.3s ease;
}

.page-blog-tai-hello88-promotions-analysis__faq-question:hover {
    background-color: var(--border-color);
}

.page-blog-tai-hello88-promotions-analysis__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-tai-hello88-promotions-analysis__faq-question::marker {
    display: none;
}

.page-blog-tai-hello88-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-blog-tai-hello88-promotions-analysis__faq-item[open] .page-blog-tai-hello88-promotions-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-tai-hello88-promotions-analysis__faq-answer {
    padding: 15px 25px 20px;
    background-color: var(--deep-green-color);
    color: var(--text-secondary-color);
    font-size: 1em;
    border-top: 1px solid var(--divider-color);
}

.page-blog-tai-hello88-promotions-analysis__faq-answer p {
    margin-bottom: 0;
}

/* General image styling to prevent overflow and ensure minimum size */
.page-blog-tai-hello88-promotions-analysis img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Enforce minimum size for all content images */
    min-height: 200px;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-tai-hello88-promotions-analysis__main-title {
        font-size: clamp(2em, 5vw, 2.5em);
    }

    .page-blog-tai-hello88-promotions-analysis__description {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-blog-tai-hello88-promotions-analysis {
        font-size: 15px;
    }

    .page-blog-tai-hello88-promotions-analysis__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-tai-hello88-promotions-analysis__hero-content {
        padding: 0 15px;
    }

    .page-blog-tai-hello88-promotions-analysis__main-title {
        font-size: clamp(1.8em, 6vw, 2.2em);
    }

    .page-blog-tai-hello88-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-tai-hello88-promotions-analysis__btn-primary,
    .page-blog-tai-hello88-promotions-analysis__btn-secondary,
    .page-blog-tai-hello88-promotions-analysis__btn-link {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .page-blog-tai-hello88-promotions-analysis__content-area {
        padding: 30px 15px;
    }

    .page-blog-tai-hello88-promotions-analysis__section-wrapper {
        padding: 20px;
        margin-bottom: 40px;
    }

    .page-blog-tai-hello88-promotions-analysis__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-blog-tai-hello88-promotions-analysis__feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-tai-hello88-promotions-analysis__card-image {
        max-width: 100%;
    }

    .page-blog-tai-hello88-promotions-analysis__promotion-item,
    .page-blog-tai-hello88-promotions-analysis__terms-item,
    .page-blog-tai-hello88-promotions-analysis__tips-item,
    .page-blog-tai-hello88-promotions-analysis__step-item {
        padding: 15px;
    }

    .page-blog-tai-hello88-promotions-analysis__promotion-heading,
    .page-blog-tai-hello88-promotions-analysis__terms-heading,
    .page-blog-tai-hello88-promotions-analysis__tips-heading,
    .page-blog-tai-hello88-promotions-analysis__step-heading {
        font-size: 1.15em;
    }

    .page-blog-tai-hello88-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-tai-hello88-promotions-analysis__faq-answer {
        padding: 10px 20px 15px;
    }

    /* Mobile image responsiveness */
    .page-blog-tai-hello88-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-tai-hello88-promotions-analysis__section,
    .page-blog-tai-hello88-promotions-analysis__card,
    .page-blog-tai-hello88-promotions-analysis__container,
    .page-blog-tai-hello88-promotions-analysis__hero-section,
    .page-blog-tai-hello88-promotions-analysis__content-area,
    .page-blog-tai-hello88-promotions-analysis__section-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-blog-tai-hello88-promotions-analysis__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-blog-tai-hello88-promotions-analysis__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-tai-hello88-promotions-analysis__cta-buttons {
        padding-left: 0;
        padding-right: 0;
    }
    .page-blog-tai-hello88-promotions-analysis__video-section {
        padding-top: 10px !important;
    }
    .page-blog-tai-hello88-promotions-analysis__video-container,
    .page-blog-tai-hello88-promotions-analysis__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}