/* style/resources-hello88-latest-promotions-analysis.css */

.page-resources-hello88-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-resources-hello88-latest-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-hello88-latest-promotions-analysis__hero {
    background: linear-gradient(135deg, #001F3F 0%, #003366 100%); /* Dark Blue gradient */
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-resources-hello88-latest-promotions-analysis__hero-content {
    flex: 1;
    padding-left: 20px;
    max-width: 60%;
}

.page-resources-hello88-latest-promotions-analysis__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #FFD700; /* Gold */
}

.page-resources-hello88-latest-promotions-analysis__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-hello88-latest-promotions-analysis__hero-image-container {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.page-resources-hello88-latest-promotions-analysis__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-hello88-latest-promotions-analysis__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-resources-hello88-latest-promotions-analysis__section:last-of-type {
    border-bottom: none;
}

.page-resources-hello88-latest-promotions-analysis__section-title {
    font-size: 2.5em;
    color: #001F3F; /* Dark Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-hello88-latest-promotions-analysis__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-hello88-latest-promotions-analysis__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-resources-hello88-latest-promotions-analysis__text-block--note {
    font-style: italic;
    color: #666;
    text-align: center;
}

.page-resources-hello88-latest-promotions-analysis__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-hello88-latest-promotions-analysis__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-hello88-latest-promotions-analysis__promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-hello88-latest-promotions-analysis__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-hello88-latest-promotions-analysis__promo-card-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-hello88-latest-promotions-analysis__promo-card-title {
    font-size: 1.6em;
    color: #001F3F;
    margin-bottom: 15px;
}

.page-resources-hello88-latest-promotions-analysis__promo-card-description {
    font-size: 1em;
    color: #666;
    text-align: justify;
}

.page-resources-hello88-latest-promotions-analysis__list,
.page-resources-hello88-latest-promotions-analysis__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-resources-hello88-latest-promotions-analysis__ordered-list {
    list-style-type: decimal;
}

.page-resources-hello88-latest-promotions-analysis__list li,
.page-resources-hello88-latest-promotions-analysis__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-hello88-latest-promotions-analysis__list li strong {
    color: #001F3F;
}

.page-resources-hello88-latest-promotions-analysis__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-hello88-latest-promotions-analysis__faq-question {
    font-size: 1.3em;
    color: #001F3F;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-hello88-latest-promotions-analysis__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
}

.page-resources-hello88-latest-promotions-analysis__faq-question.active::after {
    content: '-';
}

.page-resources-hello88-latest-promotions-analysis__faq-answer {
    font-size: 1.05em;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    display: none; /* Hidden by default */
}

.page-resources-hello88-latest-promotions-analysis__faq-answer.active {
    display: block;
}

.page-resources-hello88-latest-promotions-analysis__button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #001F3F; /* Dark Blue */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-hello88-latest-promotions-analysis__button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-resources-hello88-latest-promotions-analysis__button--cta {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 35px;
    font-size: 1.2em;
    background-color: #001F3F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-hello88-latest-promotions-analysis__button--cta:hover {
    background-color: #003366;
    color: #fff;
    border-color: #fff;
}

.page-resources-hello88-latest-promotions-analysis__link-inline {
    color: #001F3F;
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-hello88-latest-promotions-analysis__link-inline:hover {
    color: #FFD700;
}

.page-resources-hello88-latest-promotions-analysis .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-hello88-latest-promotions-analysis__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-resources-hello88-latest-promotions-analysis__hero-content,
    .page-resources-hello88-latest-promotions-analysis__hero-image-container {
        max-width: 100%;
        padding: 0;
    }

    .page-resources-hello88-latest-promotions-analysis__hero-title {
        font-size: 2.5em;
    }

    .page-resources-hello88-latest-promotions-analysis__hero-description {
        font-size: 1em;
    }

    .page-resources-hello88-latest-promotions-analysis__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-hello88-latest-promotions-analysis__section-title {
        font-size: 2em;
    }

    .page-resources-hello88-latest-promotions-analysis__promo-card-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-resources-hello88-latest-promotions-analysis__hero {
        padding: 40px 15px;
    }

    .page-resources-hello88-latest-promotions-analysis__hero-title {
        font-size: 2em;
    }

    .page-resources-hello88-latest-promotions-analysis__hero-description {
        font-size: 0.95em;
    }

    .page-resources-hello88-latest-promotions-analysis__button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-resources-hello88-latest-promotions-analysis__section {
        padding: 40px 0;
    }

    .page-resources-hello88-latest-promotions-analysis__section-title {
        font-size: 1.8em;
    }

    .page-resources-hello88-latest-promotions-analysis__text-block,
    .page-resources-hello88-latest-promotions-analysis__list li,
    .page-resources-hello88-latest-promotions-analysis__ordered-list li,
    .page-resources-hello88-latest-promotions-analysis__promo-card-description,
    .page-resources-hello88-latest-promotions-analysis__faq-answer {
        font-size: 0.95em;
    }

    .page-resources-hello88-latest-promotions-analysis__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-hello88-latest-promotions-analysis__hero-title {
        font-size: 1.8em;
    }

    .page-resources-hello88-latest-promotions-analysis__section-title {
        font-size: 1.5em;
    }

    .page-resources-hello88-latest-promotions-analysis__promo-card-title {
        font-size: 1.2em;
    }

    .page-resources-hello88-latest-promotions-analysis__button--cta {
        padding: 12px 25px;
        font-size: 1.05em;
    }
}