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

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

/* Base styles for the page content */
.page-blog-kt88-latest-promotions-analysis {
    background-color: var(--kt88-background); /* Body background is dark */
    color: var(--kt88-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-blog-kt88-latest-promotions-analysis__section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--kt88-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

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

.page-blog-kt88-latest-promotions-analysis__paragraph {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--kt88-text-secondary);
    text-align: justify;
}

/* Hero Section */
.page-blog-kt88-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
}

.page-blog-kt88-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

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

.page-blog-kt88-latest-promotions-analysis__hero-content {
    padding: 20px;
    text-align: center;
    max-width: 900px;
    margin-top: 20px;
}

.page-blog-kt88-latest-promotions-analysis__hero-title {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--kt88-gold-color);
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-blog-kt88-latest-promotions-analysis__hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--kt88-text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.page-blog-kt88-latest-promotions-analysis__cta-button {
    display: inline-block;
    background: var(--kt88-button-gradient);
    color: var(--kt88-text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-kt88-latest-promotions-analysis__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-kt88-latest-promotions-analysis__cta-button--large {
    padding: 18px 35px;
    font-size: 20px;
}

.page-blog-kt88-latest-promotions-analysis__cta-button--final {
    margin-top: 30px;
}

/* Introduction Section */
.page-blog-kt88-latest-promotions-analysis__introduction-section {
    padding: 60px 0;
    background-color: var(--kt88-card-bg);
}

/* Promotions Analysis Section */
.page-blog-kt88-latest-promotions-analysis__promotions-analysis-section {
    padding: 60px 0;
}

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

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

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

.page-blog-kt88-latest-promotions-analysis__card-title {
    font-size: 22px;
    color: var(--kt88-gold-color);
    margin-bottom: 15px;
    text-align: center;
    padding: 0 15px;
}

.page-blog-kt88-latest-promotions-analysis__card-text {
    font-size: 15px;
    color: var(--kt88-text-secondary);
    text-align: center;
    padding: 0 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-blog-kt88-latest-promotions-analysis__card-button {
    background: var(--kt88-button-gradient);
    color: var(--kt88-text-main);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* How To Claim Section */
.page-blog-kt88-latest-promotions-analysis__how-to-claim-section {
    padding: 60px 0;
    background-color: var(--kt88-card-bg);
}

.page-blog-kt88-latest-promotions-analysis__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-kt88-latest-promotions-analysis__step-item {
    background-color: var(--kt88-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--kt88-border-color);
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-kt88-latest-promotions-analysis__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--kt88-button-gradient);
    color: var(--kt88-text-main);
    font-size: 30px;
    font-weight: bold;
    border-radius: 50%;
    margin: -60px auto 20px auto; /* Position number above card */
    border: 3px solid var(--kt88-primary-color);
}

.page-blog-kt88-latest-promotions-analysis__step-item:nth-child(1) .page-blog-kt88-latest-promotions-analysis__step-number { margin-top: 0; }

.page-blog-kt88-latest-promotions-analysis__step-title {
    font-size: 22px;
    color: var(--kt88-gold-color);
    margin-bottom: 10px;
}

.page-blog-kt88-latest-promotions-analysis__step-text {
    font-size: 15px;
    color: var(--kt88-text-secondary);
}

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

/* Benefits Section */
.page-blog-kt88-latest-promotions-analysis__benefits-section {
    padding: 60px 0;
}

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

.page-blog-kt88-latest-promotions-analysis__benefit-item {
    background-color: var(--kt88-card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--kt88-border-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-kt88-latest-promotions-analysis__benefit-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-blog-kt88-latest-promotions-analysis__benefit-title {
    font-size: 22px;
    color: var(--kt88-gold-color);
    margin-bottom: 10px;
}

.page-blog-kt88-latest-promotions-analysis__benefit-text {
    font-size: 15px;
    color: var(--kt88-text-secondary);
}

/* Important Notes Section */
.page-blog-kt88-latest-promotions-analysis__important-notes-section {
    padding: 60px 0;
    background-color: var(--kt88-card-bg);
}

.page-blog-kt88-latest-promotions-analysis__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-kt88-latest-promotions-analysis__list-item {
    background-color: var(--kt88-background);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--kt88-border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-kt88-latest-promotions-analysis__list-title {
    font-size: 20px;
    color: var(--kt88-gold-color);
    margin-bottom: 10px;
}

.page-blog-kt88-latest-promotions-analysis__list-text {
    font-size: 15px;
    color: var(--kt88-text-secondary);
}

/* FAQ Section */
.page-blog-kt88-latest-promotions-analysis__faq-section {
    padding: 60px 0;
}

.page-blog-kt88-latest-promotions-analysis__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-blog-kt88-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--kt88-text-main);
    background-color: var(--kt88-deep-green);
    border-bottom: 1px solid var(--kt88-divider-color);
    list-style: none; /* For details/summary */
}

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

.page-blog-kt88-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
    color: var(--kt88-text-main);
}

.page-blog-kt88-latest-promotions-analysis__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    margin-left: 15px;
    color: var(--kt88-gold-color);
}

.page-blog-kt88-latest-promotions-analysis__faq-answer {
    padding: 15px 25px;
    font-size: 16px;
    color: var(--kt88-text-secondary);
    background-color: var(--kt88-card-bg);
    border-top: none;
}

/* Conclusion Section */
.page-blog-kt88-latest-promotions-analysis__conclusion-section {
    padding: 60px 0;
    background-color: var(--kt88-card-bg);
    text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-kt88-latest-promotions-analysis__hero-title {
        font-size: clamp(30px, 4.5vw, 50px);
    }
    .page-blog-kt88-latest-promotions-analysis__hero-description {
        font-size: clamp(15px, 1.8vw, 18px);
    }
}

@media (max-width: 768px) {
    .page-blog-kt88-latest-promotions-analysis__container {
        padding: 0 15px;
    }

    .page-blog-kt88-latest-promotions-analysis__section-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 30px;
    }

    .page-blog-kt88-latest-promotions-analysis__paragraph {
        font-size: 16px;
    }

    /* Hero Section */
    .page-blog-kt88-latest-promotions-analysis__hero-section {
        padding-bottom: 30px;
    }
    .page-blog-kt88-latest-promotions-analysis__hero-image-wrapper {
        max-height: 400px;
    }
    .page-blog-kt88-latest-promotions-analysis__hero-content {
        padding: 15px;
        margin-top: 15px;
    }
    .page-blog-kt88-latest-promotions-analysis__hero-title {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 10px;
    }
    .page-blog-kt88-latest-promotions-analysis__hero-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .page-blog-kt88-latest-promotions-analysis__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-kt88-latest-promotions-analysis__cta-button--large {
        padding: 15px 30px;
        font-size: 18px;
    }

    /* Sections padding */
    .page-blog-kt88-latest-promotions-analysis__introduction-section,
    .page-blog-kt88-latest-promotions-analysis__promotions-analysis-section,
    .page-blog-kt88-latest-promotions-analysis__how-to-claim-section,
    .page-blog-kt88-latest-promotions-analysis__benefits-section,
    .page-blog-kt88-latest-promotions-analysis__important-notes-section,
    .page-blog-kt88-latest-promotions-analysis__faq-section,
    .page-blog-kt88-latest-promotions-analysis__conclusion-section {
        padding: 40px 0;
    }

    /* Grid layouts */
    .page-blog-kt88-latest-promotions-analysis__grid,
    .page-blog-kt88-latest-promotions-analysis__steps-grid,
    .page-blog-kt88-latest-promotions-analysis__benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Cards */
    .page-blog-kt88-latest-promotions-analysis__card,
    .page-blog-kt88-latest-promotions-analysis__step-item,
    .page-blog-kt88-latest-promotions-analysis__benefit-item {
        padding: 25px;
    }

    .page-blog-kt88-latest-promotions-analysis__card-image {
        height: 180px;
    }
    .page-blog-kt88-latest-promotions-analysis__card-title,
    .page-blog-kt88-latest-promotions-analysis__step-title,
    .page-blog-kt88-latest-promotions-analysis__benefit-title,
    .page-blog-kt88-latest-promotions-analysis__list-title {
        font-size: 20px;
    }
    .page-blog-kt88-latest-promotions-analysis__card-text,
    .page-blog-kt88-latest-promotions-analysis__step-text,
    .page-blog-kt88-latest-promotions-analysis__benefit-text,
    .page-blog-kt88-latest-promotions-analysis__list-text {
        font-size: 14px;
    }

    /* Step number adjustment for mobile */
    .page-blog-kt88-latest-promotions-analysis__step-item:nth-child(1) .page-blog-kt88-latest-promotions-analysis__step-number { margin-top: -60px; }

    /* FAQ */
    .page-blog-kt88-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-blog-kt88-latest-promotions-analysis__faq-answer {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Image responsive */
    .page-blog-kt88-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-kt88-latest-promotions-analysis__section,
    .page-blog-kt88-latest-promotions-analysis__card,
    .page-blog-kt88-latest-promotions-analysis__container,
    .page-blog-kt88-latest-promotions-analysis__hero-section,
    .page-blog-kt88-latest-promotions-analysis__how-to-claim-section,
    .page-blog-kt88-latest-promotions-analysis__benefits-section,
    .page-blog-kt88-latest-promotions-analysis__important-notes-section,
    .page-blog-kt88-latest-promotions-analysis__faq-section,
    .page-blog-kt88-latest-promotions-analysis__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-kt88-latest-promotions-analysis__hero-section { padding-left: 0; padding-right: 0; }
    .page-blog-kt88-latest-promotions-analysis__hero-content { padding-left: 15px; padding-right: 15px; }

    .page-blog-kt88-latest-promotions-analysis__video-section {
        padding-top: 10px !important; /* body đã có --header-offset, đây chỉ là khoảng cách nhỏ */
    }
    .page-blog-kt88-latest-promotions-analysis__cta-buttons,
    .page-blog-kt88-latest-promotions-analysis__button-group,
    .page-blog-kt88-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;
        display: flex;
        flex-direction: column;
    }
}