/* style/blog-onebox63-latest-promotions-analysis.css */

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

.page-blog-onebox63-latest-promotions-analysis {
    color: var(--onebox63-text-main);
    background-color: var(--onebox63-bg-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-onebox63-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0;
    background-color: var(--onebox63-deep-green);
    overflow: hidden;
}

.page-blog-onebox63-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for aesthetic */
    overflow: hidden;
    position: relative;
}

.page-blog-onebox63-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-onebox63-latest-promotions-analysis__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
    margin-top: -80px; /* Overlap slightly with image for visual flow */
    background-color: var(--onebox63-card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-onebox63-latest-promotions-analysis__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--onebox63-gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.page-blog-onebox63-latest-promotions-analysis__hero-description {
    font-size: 1.1rem;
    color: var(--onebox63-text-secondary);
    margin-bottom: 30px;
}

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

.page-blog-onebox63-latest-promotions-analysis__btn-primary,
.page-blog-onebox63-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-onebox63-latest-promotions-analysis__btn-primary {
    background: var(--onebox63-button-gradient);
    color: var(--onebox63-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-onebox63-latest-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-onebox63-latest-promotions-analysis__btn-secondary {
    background-color: transparent;
    color: var(--onebox63-gold-color);
    border: 2px solid var(--onebox63-gold-color);
}

.page-blog-onebox63-latest-promotions-analysis__btn-secondary:hover {
    background-color: var(--onebox63-gold-color);
    color: var(--onebox63-bg-color);
    transform: translateY(-3px);
}

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

.page-blog-onebox63-latest-promotions-analysis__section-intro,
.page-blog-onebox63-latest-promotions-analysis__promotions-overview,
.page-blog-onebox63-latest-promotions-analysis__detailed-analysis,
.page-blog-onebox63-latest-promotions-analysis__terms-conditions,
.page-blog-onebox63-latest-promotions-analysis__maximize-promos,
.page-blog-onebox63-latest-promotions-analysis__faq-section,
.page-blog-onebox63-latest-promotions-analysis__conclusion-section {
    margin-bottom: 60px;
    padding: 20px;
    background-color: var(--onebox63-card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--onebox63-border-color);
}

.page-blog-onebox63-latest-promotions-analysis__section-title {
    font-size: 2.2rem;
    color: var(--onebox63-primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-onebox63-latest-promotions-analysis__section-text {
    font-size: 1.05rem;
    color: var(--onebox63-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-onebox63-latest-promotions-analysis__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-onebox63-latest-promotions-analysis__card {
    background-color: var(--onebox63-bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--onebox63-divider-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
}

.page-blog-onebox63-latest-promotions-analysis__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-blog-onebox63-latest-promotions-analysis__card-title {
    font-size: 1.4rem;
    color: var(--onebox63-primary-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-blog-onebox63-latest-promotions-analysis__card-description {
    font-size: 0.95rem;
    color: var(--onebox63-text-secondary);
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-onebox63-latest-promotions-analysis__card-button {
    display: inline-block;
    background: var(--onebox63-button-gradient);
    color: var(--onebox63-text-main);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.page-blog-onebox63-latest-promotions-analysis__card-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-onebox63-latest-promotions-analysis__feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--onebox63-bg-color);
    border-radius: 10px;
    border: 1px solid var(--onebox63-divider-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-blog-onebox63-latest-promotions-analysis__feature-title {
    font-size: 1.8rem;
    color: var(--onebox63-gold-color);
    margin-bottom: 15px;
}

.page-blog-onebox63-latest-promotions-analysis__feature-description {
    font-size: 1rem;
    color: var(--onebox63-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-onebox63-latest-promotions-analysis__feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-onebox63-latest-promotions-analysis__terms-list,
.page-blog-onebox63-latest-promotions-analysis__tips-list {
    list-style: none;
    padding: 0;
}

.page-blog-onebox63-latest-promotions-analysis__terms-item,
.page-blog-onebox63-latest-promotions-analysis__tips-item {
    background-color: var(--onebox63-bg-color);
    border: 1px solid var(--onebox63-divider-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-onebox63-latest-promotions-analysis__terms-subtitle,
.page-blog-onebox63-latest-promotions-analysis__tips-item strong {
    font-size: 1.3rem;
    color: var(--onebox63-primary-color);
    margin-bottom: 10px;
}

.page-blog-onebox63-latest-promotions-analysis__terms-description,
.page-blog-onebox63-latest-promotions-analysis__tips-item {
    font-size: 1rem;
    color: var(--onebox63-text-secondary);
}

.page-blog-onebox63-latest-promotions-analysis__cta-final {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-blog-onebox63-latest-promotions-analysis__faq-list {
    margin-top: 30px;
}

.page-blog-onebox63-latest-promotions-analysis__faq-item {
    background-color: var(--onebox63-bg-color);
    border: 1px solid var(--onebox63-divider-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.page-blog-onebox63-latest-promotions-analysis__faq-question:hover {
    background-color: var(--onebox63-deep-green);
}

.page-blog-onebox63-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--onebox63-gold-color);
    margin-left: 15px;
}

.page-blog-onebox63-latest-promotions-analysis__faq-item[open] .page-blog-onebox63-latest-promotions-analysis__faq-toggle {
    content: "−";
}

.page-blog-onebox63-latest-promotions-analysis__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--onebox63-text-secondary);
    line-height: 1.7;
}

/* Hide default details marker */
.page-blog-onebox63-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-blog-onebox63-latest-promotions-analysis__faq-item summary::marker {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-onebox63-latest-promotions-analysis__hero-content {
        margin-top: -60px;
        padding: 30px 20px;
    }
    .page-blog-onebox63-latest-promotions-analysis__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-onebox63-latest-promotions-analysis__section-title {
        font-size: 2rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__feature-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-blog-onebox63-latest-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-onebox63-latest-promotions-analysis__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
        max-width: 95%;
    }
    .page-blog-onebox63-latest-promotions-analysis__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-onebox63-latest-promotions-analysis__hero-description {
        font-size: 1rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-onebox63-latest-promotions-analysis__btn-primary,
    .page-blog-onebox63-latest-promotions-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-onebox63-latest-promotions-analysis__content-area {
        padding: 20px 15px;
    }
    .page-blog-onebox63-latest-promotions-analysis__section-intro,
    .page-blog-onebox63-latest-promotions-analysis__promotions-overview,
    .page-blog-onebox63-latest-promotions-analysis__detailed-analysis,
    .page-blog-onebox63-latest-promotions-analysis__terms-conditions,
    .page-blog-onebox63-latest-promotions-analysis__maximize-promos,
    .page-blog-onebox63-latest-promotions-analysis__faq-section,
    .page-blog-onebox63-latest-promotions-analysis__conclusion-section {
        margin-bottom: 40px;
        padding: 15px;
    }
    .page-blog-onebox63-latest-promotions-analysis__section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .page-blog-onebox63-latest-promotions-analysis__section-text {
        font-size: 0.95rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__cards-grid {
        gap: 20px;
    }
    .page-blog-onebox63-latest-promotions-analysis__card-image {
        height: 180px;
    }
    .page-blog-onebox63-latest-promotions-analysis__card-title {
        font-size: 1.2rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__feature-title {
        font-size: 1.4rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__feature-description {
        font-size: 0.9rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__feature-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-onebox63-latest-promotions-analysis__terms-subtitle,
    .page-blog-onebox63-latest-promotions-analysis__tips-item strong {
        font-size: 1.1rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__terms-description,
    .page-blog-onebox63-latest-promotions-analysis__tips-item {
        font-size: 0.9rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.9rem;
    }
    .page-blog-onebox63-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-onebox63-latest-promotions-analysis__section,
    .page-blog-onebox63-latest-promotions-analysis__card,
    .page-blog-onebox63-latest-promotions-analysis__container,
    .page-blog-onebox63-latest-promotions-analysis__feature-item,
    .page-blog-onebox63-latest-promotions-analysis__terms-item,
    .page-blog-onebox63-latest-promotions-analysis__tips-item,
    .page-blog-onebox63-latest-promotions-analysis__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-onebox63-latest-promotions-analysis__hero-section {
        padding-top: 10px !important; /* body đã xử lý --header-offset */
    }
}

@media (max-width: 480px) {
    .page-blog-onebox63-latest-promotions-analysis__hero-content {
        margin-top: -30px;
        padding: 20px 10px;
    }
    .page-blog-onebox63-latest-promotions-analysis__main-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-blog-onebox63-latest-promotions-analysis__section-title {
        font-size: 1.6rem;
    }
    .page-blog-onebox63-latest-promotions-analysis__feature-title {
        font-size: 1.2rem;
    }
}