/* style/blog-uu-dai-moi-nhat-ee88.css */
.page-blog-uu-dai-moi-nhat-ee88 {
    font-family: Arial, sans-serif;
    color: #333333; /* Default text color for light background */
    background-color: var(--page-bg-color, #F5F7FA); /* Ensure body bg color is respected */
}

/* Hero Section */
.page-blog-uu-dai-moi-nhat-ee88__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff; /* Light text on dark background */
}

.page-blog-uu-dai-moi-nhat-ee88__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 16px;
}

.page-blog-uu-dai-moi-nhat-ee88__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.page-blog-uu-dai-moi-nhat-ee88__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-blog-uu-dai-moi-nhat-ee88__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    color: #ffffff;
}

.page-blog-uu-dai-moi-nhat-ee88__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-blog-uu-dai-moi-nhat-ee88__btn-primary,
.page-blog-uu-dai-moi-nhat-ee88__btn-secondary,
.page-blog-uu-dai-moi-nhat-ee88__card-button,
.page-blog-uu-dai-moi-nhat-ee88 a[class*="button"],
.page-blog-uu-dai-moi-nhat-ee88 a[class*="btn"] {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    max-width: 100%; /* For responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-uu-dai-moi-nhat-ee88__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-uu-dai-moi-nhat-ee88__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-uu-dai-moi-nhat-ee88__btn-secondary {
    background: #ffffff;
    color: #E53935;
    border: 2px solid #E53935;
}

.page-blog-uu-dai-moi-nhat-ee88__btn-secondary:hover {
    background: #f0f0f0;
    color: #FF5A4F;
}

.page-blog-uu-dai-moi-nhat-ee88__hero-image {
    flex: 1 1 40%;
    text-align: center;
    min-width: 300px;
}

.page-blog-uu-dai-moi-nhat-ee88__hero-side-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* General Content Area */
.page-blog-uu-dai-moi-nhat-ee88__content-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 60px 16px;
}

.page-blog-uu-dai-moi-nhat-ee88__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #E53935;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-blog-uu-dai-moi-nhat-ee88__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FF5A4F;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-blog-uu-dai-moi-nhat-ee88__text-block {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
    text-align: justify;
}

/* Promo Types Section */
.page-blog-uu-dai-moi-nhat-ee88__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-uu-dai-moi-nhat-ee88__promo-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-uu-dai-moi-nhat-ee88__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-uu-dai-moi-nhat-ee88__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-uu-dai-moi-nhat-ee88__promo-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #E53935;
    margin: 20px 20px 10px;
    line-height: 1.4;
}

.page-blog-uu-dai-moi-nhat-ee88__promo-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0 20px 20px;
    flex-grow: 1; /* Make description take available space */
}

.page-blog-uu-dai-moi-nhat-ee88__card-button {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 0 0 12px 12px; /* Rounded only at bottom */
    display: block;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.page-blog-uu-dai-moi-nhat-ee88__card-button:hover {
    opacity: 0.9;
}

/* How To Claim Section */
.page-blog-uu-dai-moi-nhat-ee88__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-uu-dai-moi-nhat-ee88__step-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.page-blog-uu-dai-moi-nhat-ee88__step-card:hover {
    transform: translateY(-5px);
}

.page-blog-uu-dai-moi-nhat-ee88__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #E53935;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.page-blog-uu-dai-moi-nhat-ee88__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #E53935;
    margin-bottom: 15px;
}

.page-blog-uu-dai-moi-nhat-ee88__step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
}

.page-blog-uu-dai-moi-nhat-ee88__step-description a {
    color: #FF5A4F;
    text-decoration: none;
    font-weight: 600;
}

.page-blog-uu-dai-moi-nhat-ee88__step-description a:hover {
    text-decoration: underline;
}

/* Terms and Conditions Section */
.page-blog-uu-dai-moi-nhat-ee88__terms-section {
    text-align: center;
}

/* FAQ Section */
.page-blog-uu-dai-moi-nhat-ee88__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-uu-dai-moi-nhat-ee88__faq-item {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-uu-dai-moi-nhat-ee88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-uu-dai-moi-nhat-ee88__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}

.page-blog-uu-dai-moi-nhat-ee88__faq-item[open] .page-blog-uu-dai-moi-nhat-ee88__faq-question {
    background-color: #f0f0f0;
    border-bottom-color: #E0E0E0;
}

.page-blog-uu-dai-moi-nhat-ee88__faq-qtext {
    flex-grow: 1;
}

.page-blog-uu-dai-moi-nhat-ee88__faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-left: 15px;
    color: #E53935;
}

.page-blog-uu-dai-moi-nhat-ee88__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
}

.page-blog-uu-dai-moi-nhat-ee88__faq-answer p:last-child {
    margin-bottom: 0;
}

/* Bottom CTA Section */
.page-blog-uu-dai-moi-nhat-ee88__cta-bottom-section {
    text-align: center;
    padding-top: 40px;
}

/* Universal image responsive for content area */
.page-blog-uu-dai-moi-nhat-ee88 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-uu-dai-moi-nhat-ee88__hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .page-blog-uu-dai-moi-nhat-ee88__hero-content,
    .page-blog-uu-dai-moi-nhat-ee88__hero-image {
        flex: 1 1 100%;
        max-width: 700px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__cta-buttons {
        justify-content: center;
    }
    .page-blog-uu-dai-moi-nhat-ee88__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-blog-uu-dai-moi-nhat-ee88__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .page-blog-uu-dai-moi-nhat-ee88__hero-section {
        padding-top: 10px !important; /* Small top padding, relying on body for header offset */
        padding-bottom: 40px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__hero-container {
        padding: 30px 15px;
        gap: 30px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__btn-primary,
    .page-blog-uu-dai-moi-nhat-ee88__btn-secondary,
    .page-blog-uu-dai-moi-nhat-ee88__card-button,
    .page-blog-uu-dai-moi-nhat-ee88 a[class*="button"],
    .page-blog-uu-dai-moi-nhat-ee88 a[class*="btn"] {
        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-uu-dai-moi-nhat-ee88__hero-side-image {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }

    /* General Content Area */
    .page-blog-uu-dai-moi-nhat-ee88__content-area {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-uu-dai-moi-nhat-ee88__section-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__text-block {
        font-size: 0.95rem;
    }

    /* Promo Types Section */
    .page-blog-uu-dai-moi-nhat-ee88__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__promo-card h3 {
        font-size: 1.2rem;
        margin: 15px 15px 8px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__promo-card p {
        font-size: 0.9rem;
        margin: 0 15px 15px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__card-image {
        height: 180px;
    }

    /* How To Claim Section */
    .page-blog-uu-dai-moi-nhat-ee88__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__step-card {
        padding: 25px;
    }
    .page-blog-uu-dai-moi-nhat-ee88__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    .page-blog-uu-dai-moi-nhat-ee88__step-title {
        font-size: 1.3rem;
    }

    /* FAQ Section */
    .page-blog-uu-dai-moi-nhat-ee88__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-blog-uu-dai-moi-nhat-ee88__faq-toggle {
        font-size: 1.5rem;
    }
    .page-blog-uu-dai-moi-nhat-ee88__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95rem;
    }

    /* Bottom CTA Section */
    .page-blog-uu-dai-moi-nhat-ee88__cta-bottom-section .page-blog-uu-dai-moi-nhat-ee88__cta-buttons {
        flex-direction: column;
    }

    /* Universal image responsive for content area */
    .page-blog-uu-dai-moi-nhat-ee88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-uu-dai-moi-nhat-ee88__section,
    .page-blog-uu-dai-moi-nhat-ee88__card,
    .page-blog-uu-dai-moi-nhat-ee88__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Specific override for card button to ensure it uses the full width in mobile */
    .page-blog-uu-dai-moi-nhat-ee88__promo-card .page-blog-uu-dai-moi-nhat-ee88__card-button {
        border-radius: 0 0 12px 12px !important; /* Maintain rounded corners at bottom */
    }
}