/* style/blog-febet-chinh-thuc-latest-promotions-analysis.css */

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

.page-blog-febet-chinh-thuc-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    color: var(--febet-text-main); /* Body background is dark, so text is light */
    background-color: var(--febet-background);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--febet-background);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height of the image wrapper */
    overflow: hidden;
}

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

.page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-content {
    position: relative; /* Not absolute, for normal flow */
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up over the bottom of the image for better visual flow */
    background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--febet-border);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--febet-gold);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-description {
    font-size: 1.15rem;
    color: var(--febet-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__btn-primary,
.page-blog-febet-chinh-thuc-latest-promotions-analysis__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__btn-primary {
    background: var(--febet-btn-gradient);
    color: var(--febet-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__btn-secondary {
    background: transparent;
    color: var(--febet-primary);
    border: 2px solid var(--febet-primary);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__btn-secondary:hover {
    background: var(--febet-primary);
    color: var(--febet-text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__section {
    padding: 60px 0;
    background-color: var(--febet-background);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--febet-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__text-block {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--febet-text-secondary);
    margin-bottom: 20px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__promotions-detail .page-blog-febet-chinh-thuc-latest-promotions-analysis__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__card {
    background-color: var(--febet-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--febet-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__card-title {
    font-size: 1.5rem;
    color: var(--febet-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__card-text {
    font-size: 1rem;
    color: var(--febet-text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__how-to-claim.dark-bg {
    background-color: var(--febet-deep-green);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__step-item {
    background-color: var(--febet-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--febet-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--febet-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--febet-text-main);
    margin: 0 auto 20px;
    box-shadow: 0 0 15px var(--febet-glow);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__step-title {
    font-size: 1.4rem;
    color: var(--febet-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__step-text {
    font-size: 1rem;
    color: var(--febet-text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__terms-list li {
    background-color: var(--febet-card-bg);
    border-left: 5px solid var(--febet-primary);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.05rem;
    color: var(--febet-text-secondary);
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__terms-list li strong {
    color: var(--febet-text-main);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__why-febet .page-blog-febet-chinh-thuc-latest-promotions-analysis__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__feature-item {
    background-color: var(--febet-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--febet-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__feature-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__feature-title {
    font-size: 1.4rem;
    color: var(--febet-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__feature-text {
    font-size: 1rem;
    color: var(--febet-text-secondary);
    line-height: 1.6;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-section {
    padding-bottom: 80px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-list {
    margin-top: 40px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-item {
    background-color: var(--febet-card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--febet-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--febet-text-main);
    cursor: pointer;
    background-color: var(--febet-card-bg);
    border-bottom: 1px solid var(--febet-divider);
    list-style: none; /* Remove default marker */
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
    text-align: left;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--febet-primary);
    transition: transform 0.3s ease;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-item[open] .page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-toggle {
    transform: rotate(45deg);
}

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

.page-blog-febet-chinh-thuc-latest-promotions-analysis__conclusion.dark-bg {
    background-color: var(--febet-deep-green);
    padding-bottom: 80px;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__conclusion .page-blog-febet-chinh-thuc-latest-promotions-analysis__text-block a.page-blog-febet-chinh-thuc-latest-promotions-analysis__text-link {
    color: var(--febet-gold);
    text-decoration: underline;
    font-weight: 600;
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__conclusion .page-blog-febet-chinh-thuc-latest-promotions-analysis__text-block a.page-blog-febet-chinh-thuc-latest-promotions-analysis__text-link:hover {
    color: var(--febet-glow);
}

.page-blog-febet-chinh-thuc-latest-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-content {
        margin-top: -80px;
        padding: 30px 20px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__section {
        padding: 40px 0;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-blog-febet-chinh-thuc-latest-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-content {
        margin-top: -60px;
        padding: 25px 15px;
        border-radius: 10px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__btn-primary,
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__section {
        padding: 30px 0;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 25px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__text-block {
        font-size: 1rem;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__card {
        padding: 20px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__card-image {
        height: 180px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__card-title {
        font-size: 1.3rem;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__step-item {
        padding: 25px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__step-title {
        font-size: 1.2rem;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__terms-list li {
        padding: 15px;
        font-size: 0.95rem;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__feature-icon {
        width: 150px;
        height: 150px;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__feature-title {
        font-size: 1.2rem;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1.05rem;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    /* Mobile image responsiveness */
    .page-blog-febet-chinh-thuc-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-image-wrapper,
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__card,
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__step-item,
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__feature-item,
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-febet-chinh-thuc-latest-promotions-analysis__hero-section {
        padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    }
}