/* style/blog-hy88-trang-chu-latest-promotions-analysis.css */
:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --bg-color: #0D0E12;
    --card-bg: #17191F;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* Main text color for dark background */
    background-color: var(--bg-color);
    padding: 0;
    margin: 0;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--bg-color);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__intro-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__content-section {
    padding: 60px 20px;
    background-color: var(--bg-color);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis p {
    font-size: 1.1rem;
    color: var(--text-main-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    color: var(--text-main-color);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__card-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__card p {
    font-size: 1rem;
    color: #cccccc;
    flex-grow: 1;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__numbered-list,
.page-blog-hy88-trang-chu-latest-promotions-analysis__bullet-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__numbered-list li {
    font-size: 1.1rem;
    color: var(--text-main-color);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__numbered-list li::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__bullet-list li {
    font-size: 1.1rem;
    color: var(--text-main-color);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__bullet-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__benefit-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    color: var(--text-main-color);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__benefit-item:hover {
    transform: translateY(-8px);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__benefit-item img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--glow-color));
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__benefit-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__benefit-item p {
    font-size: 0.95rem;
    color: #cccccc;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-list {
    margin-top: 40px;
}

details.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    color: var(--text-main-color);
}

details.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-item summary.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main-color);
    font-weight: 600;
}

details.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-item summary.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-item summary.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-question:hover {
    background: rgba(var(--primary-color), 0.1);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-item .page-blog-hy88-trang-chu-latest-promotions-analysis__faq-answer {
    padding: 0 20px 20px;
    background: rgba(var(--card-bg), 0.8);
    border-radius: 0 0 5px 5px;
    color: #cccccc;
    font-size: 1rem;
}

.page-blog-hy88-trang-chu-latest-promotions-analysis__button-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* All images base responsive style */
.page-blog-hy88-trang-chu-latest-promotions-analysis img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* All buttons base responsive style */
.page-blog-hy88-trang-chu-latest-promotions-analysis__cta-button,
.page-blog-hy88-trang-chu-latest-promotions-analysis a[class*="button"],
.page-blog-hy88-trang-chu-latest-promotions-analysis a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

/* Button containers base responsive style */
.page-blog-hy88-trang-chu-latest-promotions-analysis__button-wrapper,
.page-blog-hy88-trang-chu-latest-promotions-analysis__cta-buttons,
.page-blog-hy88-trang-chu-latest-promotions-analysis__button-group,
.page-blog-hy88-trang-chu-latest-promotions-analysis__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .page-blog-hy88-trang-chu-latest-promotions-analysis__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__hero-image img {
        border-radius: 4px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__main-title {
        font-size: 2rem;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__intro-text {
        font-size: 1rem;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__content-section {
        padding: 40px 15px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis p,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__numbered-list li,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__bullet-list li {
        font-size: 1rem;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__card-grid,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__card,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__benefit-item {
        padding: 20px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__card-title {
        font-size: 1.3rem;
    }

    details.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-item summary.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-question {
        padding: 15px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__faq-qtext {
        font-size: 1rem;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__faq-toggle {
        font-size: 20px;
    }

    details.page-blog-hy88-trang-chu-latest-promotions-analysis__faq-item .page-blog-hy88-trang-chu-latest-promotions-analysis__faq-answer {
        padding: 0 15px 15px;
    }
    
    /* Mobile image responsive adaptation */
    .page-blog-hy88-trang-chu-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-blog-hy88-trang-chu-latest-promotions-analysis__content-area,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__card,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__hero-container,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__button-wrapper,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__card-grid,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__benefits-grid,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile button responsive adaptation */
    .page-blog-hy88-trang-chu-latest-promotions-analysis__cta-button,
    .page-blog-hy88-trang-chu-latest-promotions-analysis a[class*="button"],
    .page-blog-hy88-trang-chu-latest-promotions-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;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hy88-trang-chu-latest-promotions-analysis__button-wrapper,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__cta-buttons,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__button-group,
    .page-blog-hy88-trang-chu-latest-promotions-analysis__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-blog-hy88-trang-chu-latest-promotions-analysis__button-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
}