/* style/blog-f8bet365-latest-promotions.css */

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

/* Base Styles */
.page-blog-f8bet365-latest-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-secondary); /* Default text color for main content, light for dark background */
    background-color: var(--background); /* Body background, dark */
    padding-bottom: 40px; /* Add some padding at the bottom */
}

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

/* Hero Section */
.page-blog-f8bet365-latest-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.page-blog-f8bet365-latest-promotions__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-f8bet365-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-f8bet365-latest-promotions__hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    color: var(--text-main);
}

.page-blog-f8bet365-latest-promotions__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Using clamp for responsive H1 */
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.2;
}

.page-blog-f8bet365-latest-promotions__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* CTA Button */
.page-blog-f8bet365-latest-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient); /* Button gradient */
    color: #ffffff; /* White text for button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-blog-f8bet365-latest-promotions__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-green) 0%, var(--accent-color) 100%);
}

.page-blog-f8bet365-latest-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-blog-f8bet365-latest-promotions__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-blog-f8bet365-latest-promotions__cta-button--secondary {
    background: var(--card-bg); /* Card BG color */
    border: 2px solid var(--border); /* Border color */
    color: var(--text-main);
    margin-left: 15px;
}

.page-blog-f8bet365-latest-promotions__cta-button--secondary:hover {
    background: var(--deep-green); /* Deep Green hover */
    border-color: var(--glow); /* Glow border hover */
}

.page-blog-f8bet365-latest-promotions__cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* General Section Styling */
.page-blog-f8bet365-latest-promotions__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-blog-f8bet365-latest-promotions__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-main);
}

.page-blog-f8bet365-latest-promotions__sub-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--glow); /* Glow color for sub-titles */
}

.page-blog-f8bet365-latest-promotions__section p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-blog-f8bet365-latest-promotions__section ul,
.page-blog-f8bet365-latest-promotions__section ol {
    margin-bottom: 15px;
    padding-left: 25px;
    color: var(--text-secondary);
}

.page-blog-f8bet365-latest-promotions__section li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.page-blog-f8bet365-latest-promotions__section a {
    color: var(--gold); /* Gold color for links */
    text-decoration: underline;
}

.page-blog-f8bet365-latest-promotions__section a:hover {
    color: var(--glow);
}

/* Image and Content Wrapper */
.page-blog-f8bet365-latest-promotions__image-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-f8bet365-latest-promotions__image-content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-blog-f8bet365-latest-promotions__content-image {
    flex: 1;
    min-width: 300px; /* Minimum width before wrapping */
    max-width: 50%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-f8bet365-latest-promotions__text-block {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

/* Comparison Grid */
.page-blog-f8bet365-latest-promotions__comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-blog-f8bet365-latest-promotions__comparison-item {
    background: var(--card-bg); /* Card BG color */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--text-secondary);
    border: 1px solid var(--divider); /* Divider color for border */
}

.page-blog-f8bet365-latest-promotions__comparison-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-main);
}

/* FAQ Section */
.page-blog-f8bet365-latest-promotions__faq-list {
    margin-top: 30px;
}

.page-blog-f8bet365-latest-promotions__faq-item {
    background: var(--card-bg); /* Card BG color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--divider); /* Divider color for border */
}

.page-blog-f8bet365-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background: var(--deep-green); /* Deep Green for FAQ question background */
    border-bottom: 1px solid var(--divider);
    transition: background 0.3s ease;
}

.page-blog-f8bet365-latest-promotions__faq-question:hover {
    background: var(--main-color); /* Main color on hover */
}

.page-blog-f8bet365-latest-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold); /* Gold color for toggle */
}

.page-blog-f8bet365-latest-promotions__faq-item[open] .page-blog-f8bet365-latest-promotions__faq-toggle {
    content: "−"; /* Minus sign when open */
}

.page-blog-f8bet365-latest-promotions__faq-answer {
    padding: 15px 25px;
    font-size: 1em;
    color: var(--text-secondary);
    background: var(--card-bg); /* Card BG for answer background */
}

.page-blog-f8bet365-latest-promotions__faq-answer p {
    margin-bottom: 0;
}

/* Ensure all images are responsive */
.page-blog-f8bet365-latest-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure images fill their space without distortion */
}

/* Content area images should not be too small, as per rules */
.page-blog-f8bet365-latest-promotions__content-area img,
.page-blog-f8bet365-latest-promotions__text-block img {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-f8bet365-latest-promotions__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-blog-f8bet365-latest-promotions__image-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-blog-f8bet365-latest-promotions__content-image,
    .page-blog-f8bet365-latest-promotions__text-block {
        max-width: 100%;
        min-width: unset;
    }
    .page-blog-f8bet365-latest-promotions__image-content-wrapper--reverse {
        flex-direction: column; /* Reset to column for reverse on mobile */
    }
}

@media (max-width: 768px) {
    .page-blog-f8bet365-latest-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-f8bet365-latest-promotions__hero-section {
        padding-bottom: 30px;
        padding-top: 10px !important; /* body handles --header-offset, small decorative padding */
    }

    .page-blog-f8bet365-latest-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-f8bet365-latest-promotions__description {
        font-size: 1em;
    }

    .page-blog-f8bet365-latest-promotions__cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-f8bet365-latest-promotions__cta-button--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-blog-f8bet365-latest-promotions__cta-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-f8bet365-latest-promotions__section-title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-blog-f8bet365-latest-promotions__sub-title {
        font-size: 1.5em;
    }

    .page-blog-f8bet365-latest-promotions__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-f8bet365-latest-promotions__section,
    .page-blog-f8bet365-latest-promotions__card,
    .page-blog-f8bet365-latest-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-f8bet365-latest-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-blog-f8bet365-latest-promotions__faq-answer {
        padding: 10px 20px;
    }
}