/* style/blog-lucky88-new-features-updates.css */

/* Biến màu tùy chỉnh */
:root {
    --lucky88-primary-color: #11A84E;
    --lucky88-secondary-color: #22C768;
    --lucky88-button-gradient-start: #2AD16F;
    --lucky88-button-gradient-end: #13994A;
    --lucky88-card-bg: #11271B;
    --lucky88-background: #08160F;
    --lucky88-text-main: #F2FFF6;
    --lucky88-text-secondary: #A7D9B8;
    --lucky88-border-color: #2E7A4E;
    --lucky88-glow-color: #57E38D;
    --lucky88-gold-color: #F2C14E;
    --lucky88-divider-color: #1E3A2A;
    --lucky88-deep-green: #0A4B2C;
}

.page-blog-lucky88-new-features-updates {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--lucky88-text-main);
    background-color: var(--lucky88-background);
}

.page-blog-lucky88-new-features-updates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-lucky88-new-features-updates__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    background-color: var(--lucky88-background);
}

.page-blog-lucky88-new-features-updates__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.page-blog-lucky88-new-features-updates__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-blog-lucky88-new-features-updates__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: var(--lucky88-text-main);
}

.page-blog-lucky88-new-features-updates__main-title {
    font-size: clamp(2.2em, 4vw, 3.2em);
    font-weight: 700;
    color: var(--lucky88-gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.5);
}

.page-blog-lucky88-new-features-updates__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--lucky88-text-secondary);
}

.page-blog-lucky88-new-features-updates__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-lucky88-new-features-updates__btn-primary,
.page-blog-lucky88-new-features-updates__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-lucky88-new-features-updates__btn-primary {
    background: linear-gradient(180deg, var(--lucky88-button-gradient-start) 0%, var(--lucky88-button-gradient-end) 100%);
    color: #ffffff;
    border: 2px solid var(--lucky88-button-gradient-start);
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-lucky88-new-features-updates__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-lucky88-new-features-updates__btn-secondary {
    background: transparent;
    color: var(--lucky88-secondary-color);
    border: 2px solid var(--lucky88-secondary-color);
    box-shadow: 0 2px 10px rgba(34, 199, 104, 0.2);
}

.page-blog-lucky88-new-features-updates__btn-secondary:hover {
    background: var(--lucky88-secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

/* General Section Styling */
.page-blog-lucky88-new-features-updates__intro-section,
.page-blog-lucky88-new-features-updates__experience-section,
.page-blog-lucky88-new-features-updates__cta-section,
.page-blog-lucky88-new-features-updates__conclusion-section {
    padding: 60px 0;
    background-color: #ffffff; /* Default light background for contrast */
    color: #333333; /* Dark text for light background */
}

.page-blog-lucky88-new-features-updates__features-overview,
.page-blog-lucky88-new-features-updates__promotions-section,
.page-blog-lucky88-new-features-updates__faq-section {
    padding: 60px 0;
    background-color: var(--lucky88-background); /* Dark background */
    color: var(--lucky88-text-main); /* Light text for dark background */
}

.page-blog-lucky88-new-features-updates__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--lucky88-gold-color);
}

.page-blog-lucky88-new-features-updates__intro-section .page-blog-lucky88-new-features-updates__section-title,
.page-blog-lucky88-new-features-updates__experience-section .page-blog-lucky88-new-features-updates__section-title,
.page-blog-lucky88-new-features-updates__cta-section .page-blog-lucky88-new-features-updates__section-title,
.page-blog-lucky88-new-features-updates__conclusion-section .page-blog-lucky88-new-features-updates__section-title {
    color: var(--lucky88-primary-color); /* Darker green for light background */
}

.page-blog-lucky88-new-features-updates__text-secondary {
    text-align: center;
    font-size: 1.1em;
    color: var(--lucky88-text-secondary);
    margin-bottom: 40px;
}

/* Features Grid */
.page-blog-lucky88-new-features-updates__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-lucky88-new-features-updates__feature-card,
.page-blog-lucky88-new-features-updates__card {
    background-color: var(--lucky88-card-bg); /* Dark card background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--lucky88-text-main);
    border: 1px solid var(--lucky88-border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-lucky88-new-features-updates__feature-card:hover,
.page-blog-lucky88-new-features-updates__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-lucky88-new-features-updates__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-lucky88-new-features-updates__card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--lucky88-gold-color);
}

.page-blog-lucky88-new-features-updates__feature-card p,
.page-blog-lucky88-new-features-updates__card p {
    font-size: 1em;
    color: var(--lucky88-text-secondary);
    flex-grow: 1;
}

/* Experience Section List */
.page-blog-lucky88-new-features-updates__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-blog-lucky88-new-features-updates__list li {
    background-color: #f8f8f8;
    border-left: 5px solid var(--lucky88-primary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    color: #333333;
}

.page-blog-lucky88-new-features-updates__list li strong {
    color: var(--lucky88-deep-green);
}

/* Promotions Section */
.page-blog-lucky88-new-features-updates__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-lucky88-new-features-updates__promo-cards .page-blog-lucky88-new-features-updates__card {
    padding-bottom: 20px;
}

.page-blog-lucky88-new-features-updates__promo-cards .page-blog-lucky88-new-features-updates__card .page-blog-lucky88-new-features-updates__btn-primary,
.page-blog-lucky88-new-features-updates__promo-cards .page-blog-lucky88-new-features-updates__card .page-blog-lucky88-new-features-updates__btn-secondary {
    margin-top: 20px;
    width: calc(100% - 40px); /* Adjust for card padding */
    margin-left: 20px;
    margin-right: 20px;
}

/* FAQ Section */
.page-blog-lucky88-new-features-updates__faq-list {
    margin-top: 40px;
}

.page-blog-lucky88-new-features-updates__faq-item {
    background-color: var(--lucky88-card-bg);
    border: 1px solid var(--lucky88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--lucky88-text-main);
}

.page-blog-lucky88-new-features-updates__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    color: var(--lucky88-gold-color);
}

.page-blog-lucky88-new-features-updates__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--lucky88-secondary-color);
    transition: transform 0.3s ease;
}

.page-blog-lucky88-new-features-updates__faq-item[open] .page-blog-lucky88-new-features-updates__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-lucky88-new-features-updates__faq-answer {
    padding: 0 20px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: var(--lucky88-text-secondary);
}

.page-blog-lucky88-new-features-updates__faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Conclusion Section */
.page-blog-lucky88-new-features-updates__conclusion-section {
    text-align: center;
    background-color: #ffffff;
    color: #333333;
}

.page-blog-lucky88-new-features-updates__conclusion-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-lucky88-new-features-updates__hero-content {
        max-width: 700px;
    }
    .page-blog-lucky88-new-features-updates__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }
    .page-blog-lucky88-new-features-updates__section-title {
        font-size: 2em;
    }
    .page-blog-lucky88-new-features-updates__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-blog-lucky88-new-features-updates__promo-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-lucky88-new-features-updates {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-lucky88-new-features-updates__hero-section {
        padding: 40px 0;
        padding-top: 10px !important;
    }
    .page-blog-lucky88-new-features-updates__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-blog-lucky88-new-features-updates__description {
        font-size: 1em;
    }
    .page-blog-lucky88-new-features-updates__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box !important;
    }
    .page-blog-lucky88-new-features-updates__btn-primary,
    .page-blog-lucky88-new-features-updates__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-blog-lucky88-new-features-updates__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-lucky88-new-features-updates__text-secondary {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-blog-lucky88-new-features-updates__features-grid,
    .page-blog-lucky88-new-features-updates__promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    .page-blog-lucky88-new-features-updates__feature-card,
    .page-blog-lucky88-new-features-updates__card {
        padding: 20px;
    }
    .page-blog-lucky88-new-features-updates__card-image {
        height: 180px;
    }
    .page-blog-lucky88-new-features-updates__card-title {
        font-size: 1.3em;
    }
    .page-blog-lucky88-new-features-updates__list li {
        font-size: 1em;
        padding: 15px;
    }
    .page-blog-lucky88-new-features-updates__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-blog-lucky88-new-features-updates__faq-answer {
        padding: 0 15px 15px;
    }

    /* Image, Video, Container responsiveness */
    .page-blog-lucky88-new-features-updates img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-blog-lucky88-new-features-updates__section,
    .page-blog-lucky88-new-features-updates__card,
    .page-blog-lucky88-new-features-updates__container,
    .page-blog-lucky88-new-features-updates__hero-image-wrapper,
    .page-blog-lucky88-new-features-updates__cta-buttons,
    .page-blog-lucky88-new-features-updates__promo-cards,
    .page-blog-lucky88-new-features-updates__features-grid,
    .page-blog-lucky88-new-features-updates__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-lucky88-new-features-updates__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-blog-lucky88-new-features-updates__list {
        padding-left: 15px;
        padding-right: 15px;
    }
}