/* style/blog-lu88-promotions-analysis.css */

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

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-blog-lu88-promotions-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--lu88-text-main); /* Light text on dark body background */
    background-color: var(--lu88-background); /* Explicitly set for main content area if needed, but body background is handled by shared */
}

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

/* Hero Section */
.page-blog-lu88-promotions-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--lu88-deep-green); /* A darker green for the hero section background */
    overflow: hidden; /* Ensure no overflow from image */
}

.page-blog-lu88-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    max-width: 1200px; /* Max width for the image itself */
    display: block;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 8px;
}

.page-blog-lu88-promotions-analysis__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--lu88-text-main);
}

.page-blog-lu88-promotions-analysis__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--lu88-gold); /* Using gold for main title for prominence */
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-lu88-promotions-analysis__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--lu88-text-secondary);
}

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

.page-blog-lu88-promotions-analysis__btn-primary,
.page-blog-lu88-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-lu88-promotions-analysis__btn-primary {
    background: var(--lu88-button-gradient);
    color: #ffffff; /* White text for primary button */
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-lu88-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-lu88-promotions-analysis__btn-secondary {
    background-color: transparent;
    color: var(--lu88-gold); /* Gold text for secondary button */
    border: 2px solid var(--lu88-gold);
}

.page-blog-lu88-promotions-analysis__btn-secondary:hover {
    background-color: var(--lu88-gold);
    color: var(--lu88-deep-green); /* Dark text on gold hover */
    transform: translateY(-3px);
}

/* Section common styles */
.page-blog-lu88-promotions-analysis__intro-section,
.page-blog-lu88-promotions-analysis__how-to-claim,
.page-blog-lu88-promotions-analysis__responsible-gaming,
.page-blog-lu88-promotions-analysis__cta-bottom {
    padding: 60px 0;
}

.page-blog-lu88-promotions-analysis__promotions-overview,
.page-blog-lu88-promotions-analysis__tips-section,
.page-blog-lu88-promotions-analysis__faq-section {
    padding: 60px 0;
}

.page-blog-lu88-promotions-analysis__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--lu88-gold); /* Gold for section titles */
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-lu88-promotions-analysis__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--lu88-text-secondary);
}

/* Background color handling for sections */
.page-blog-lu88-promotions-analysis__light-bg {
    background-color: var(--lu88-text-main); /* Very light green as background */
    color: var(--lu88-deep-green); /* Dark text on light background */
}

.page-blog-lu88-promotions-analysis__light-bg .page-blog-lu88-promotions-analysis__section-title {
    color: var(--lu88-deep-green); /* Dark title on light background */
}
.page-blog-lu88-promotions-analysis__light-bg .page-blog-lu88-promotions-analysis__description,
.page-blog-lu88-promotions-analysis__light-bg .page-blog-lu88-promotions-analysis__text-block,
.page-blog-lu88-promotions-analysis__light-bg .page-blog-lu88-promotions-analysis__ordered-list li strong,
.page-blog-lu88-promotions-analysis__light-bg .page-blog-lu88-promotions-analysis__ordered-list li,
.page-blog-lu88-promotions-analysis__light-bg .page-blog-lu88-promotions-analysis__unordered-list li {
    color: var(--lu88-deep-green); /* Dark text on light background */
}
.page-blog-lu88-promotions-analysis__light-bg .page-blog-lu88-promotions-analysis__btn-secondary {
    color: var(--lu88-deep-green);
    border-color: var(--lu88-deep-green);
}
.page-blog-lu88-promotions-analysis__light-bg .page-blog-lu88-promotions-analysis__btn-secondary:hover {
    background-color: var(--lu88-deep-green);
    color: var(--lu88-text-main);
}


.page-blog-lu88-promotions-analysis__dark-section {
    background-color: var(--lu88-card-bg); /* Dark green for dark sections */
    color: var(--lu88-text-main); /* Light text on dark background */
}

/* Promotion Grid */
.page-blog-lu88-promotions-analysis__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-lu88-promotions-analysis__promo-card {
    background-color: var(--lu88-background); /* Darker background for cards */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--lu88-border);
}

.page-blog-lu88-promotions-analysis__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-lu88-promotions-analysis__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card images */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--lu88-divider);
}

.page-blog-lu88-promotions-analysis__promo-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 20px 10px 20px;
    color: var(--lu88-gold); /* Gold for card titles */
}

.page-blog-lu88-promotions-analysis__promo-card p {
    font-size: 1rem;
    margin: 0 20px 20px 20px;
    flex-grow: 1; /* Allow text to grow */
    color: var(--lu88-text-secondary);
}

.page-blog-lu88-promotions-analysis__card-button {
    display: inline-block;
    background: var(--lu88-button-gradient);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 20px 20px 20px;
    align-self: flex-start; /* Align button to start */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    max-width: calc(100% - 40px);
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-lu88-promotions-analysis__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(42, 209, 111, 0.4);
}

/* Ordered/Unordered Lists */
.page-blog-lu88-promotions-analysis__ordered-list,
.page-blog-lu88-promotions-analysis__unordered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-blog-lu88-promotions-analysis__ordered-list li,
.page-blog-lu88-promotions-analysis__unordered-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: var(--lu88-text-secondary);
}

.page-blog-lu88-promotions-analysis__ordered-list li::before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--lu88-gold);
}

.page-blog-lu88-promotions-analysis__unordered-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--lu88-gold);
    font-size: 1.5rem;
    line-height: 1;
    top: 0;
}

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

.page-blog-lu88-promotions-analysis__faq-item {
    background-color: var(--lu88-background); /* Dark background for FAQ items */
    border: 1px solid var(--lu88-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-lu88-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--lu88-text-main); /* Light text for questions */
    transition: background-color 0.3s ease;
    list-style: none; /* Remove default marker for summary */
}
.page-blog-lu88-promotions-analysis__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-lu88-promotions-analysis__faq-question:hover {
    background-color: var(--lu88-deep-green); /* Slightly lighter dark green on hover */
}

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

.page-blog-lu88-promotions-analysis__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--lu88-text-secondary); /* Secondary light text for answers */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-blog-lu88-promotions-analysis__faq-item[open] .page-blog-lu88-promotions-analysis__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-blog-lu88-promotions-analysis__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-blog-lu88-promotions-analysis__section-title {
        font-size: 2rem;
    }

    .page-blog-lu88-promotions-analysis__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* General container padding */
    .page-blog-lu88-promotions-analysis__container {
        padding: 0 15px !important;
    }

    /* Hero Section */
    .page-blog-lu88-promotions-analysis__hero-section {
        padding: 10px 0 40px 0; /* Adjust padding for mobile */
    }
    .page-blog-lu88-promotions-analysis__hero-content {
        padding: 0 15px;
    }
    .page-blog-lu88-promotions-analysis__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-blog-lu88-promotions-analysis__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-blog-lu88-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-blog-lu88-promotions-analysis__btn-primary,
    .page-blog-lu88-promotions-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        min-width: unset;
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Section titles */
    .page-blog-lu88-promotions-analysis__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* Images responsiveness */
    .page-blog-lu88-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-lu88-promotions-analysis__section,
    .page-blog-lu88-promotions-analysis__card,
    .page-blog-lu88-promotions-analysis__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-lu88-promotions-analysis__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-lu88-promotions-analysis__card-image {
        height: 180px; /* Adjust card image height for mobile */
    }

    /* Lists */
    .page-blog-lu88-promotions-analysis__ordered-list li,
    .page-blog-lu88-promotions-analysis__unordered-list li {
        font-size: 1rem;
        padding-left: 25px;
    }
    .page-blog-lu88-promotions-analysis__ordered-list li::before,
    .page-blog-lu88-promotions-analysis__unordered-list li::before {
        font-size: 1.2rem;
    }

    /* FAQ */
    .page-blog-lu88-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-blog-lu88-promotions-analysis__faq-toggle {
        font-size: 1.5rem;
    }
    .page-blog-lu88-promotions-analysis__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95rem;
    }
}