:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-btn-gradient-start: #2AD16F;
    --color-btn-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-blog-hello888-sports-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Default text color for the page, assuming dark body bg */
    background-color: var(--color-background); /* Specific background for main content if needed */
}

/* Hero Section */
.page-blog-hello888-sports-betting-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--color-deep-green); /* Background for the section itself */
}

.page-blog-hello888-sports-betting-guide__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for the actual image */
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and text */
}

.page-blog-hello888-sports-betting-guide__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    color: var(--color-text-main);
}

.page-blog-hello888-sports-betting-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for responsive H1 font size */
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-hello888-sports-betting-guide__hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* CTA Button Styles */
.page-blog-hello888-sports-betting-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, var(--color-btn-gradient-start) 0%, var(--color-btn-gradient-end) 100%);
    color: #ffffff; /* White text for contrast */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-hello888-sports-betting-guide__cta-button:hover {
    background: linear-gradient(180deg, var(--color-btn-gradient-end) 0%, var(--color-btn-gradient-start) 100%);
    transform: translateY(-2px);
}

.page-blog-hello888-sports-betting-guide__cta-button--small {
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 20px;
}

.page-blog-hello888-sports-betting-guide__cta-button--primary {
    background: linear-gradient(180deg, var(--color-btn-gradient-start) 0%, var(--color-btn-gradient-end) 100%);
    color: #ffffff;
}

.page-blog-hello888-sports-betting-guide__cta-button--secondary {
    background: var(--color-card-bg);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-blog-hello888-sports-betting-guide__cta-button--secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Content Area */
.page-blog-hello888-sports-betting-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--color-background);
    color: var(--color-text-main);
}

.page-blog-hello888-sports-betting-guide__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-hello888-sports-betting-guide__section-title {
    font-size: 2rem;
    color: var(--color-gold);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-hello888-sports-betting-guide__text-block {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.page-blog-hello888-sports-betting-guide__image-inline {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-blog-hello888-sports-betting-guide__ordered-list,
.page-blog-hello888-sports-betting-guide__unordered-list {
    margin-bottom: 20px;
    padding-left: 25px;
    color: var(--color-text-secondary);
}

.page-blog-hello888-sports-betting-guide__ordered-list li,
.page-blog-hello888-sports-betting-guide__unordered-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.page-blog-hello888-sports-betting-guide__ordered-list strong {
    color: var(--color-text-main);
}

.page-blog-hello888-sports-betting-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

/* FAQ Section */
.page-blog-hello888-sports-betting-guide__faq-list {
    margin-top: 30px;
}

.page-blog-hello888-sports-betting-guide__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
}

.page-blog-hello888-sports-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-text-main);
    user-select: none;
    list-style: none;
}

.page-blog-hello888-sports-betting-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-hello888-sports-betting-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-hello888-sports-betting-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--color-gold);
}

.page-blog-hello888-sports-betting-guide__faq-item[open] .page-blog-hello888-sports-betting-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-hello888-sports-betting-guide__faq-answer {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.page-blog-hello888-sports-betting-guide__faq-answer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-hello888-sports-betting-guide__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-hello888-sports-betting-guide__hero-description {
        font-size: 1.1rem;
    }
    .page-blog-hello888-sports-betting-guide__section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .page-blog-hello888-sports-betting-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-hello888-sports-betting-guide__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-blog-hello888-sports-betting-guide__hero-content {
        padding: 0 15px;
    }

    .page-blog-hello888-sports-betting-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-blog-hello888-sports-betting-guide__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Images responsiveness */
    .page-blog-hello888-sports-betting-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-blog-hello888-sports-betting-guide__content-area,
    .page-blog-hello888-sports-betting-guide__container,
    .page-blog-hello888-sports-betting-guide__section,
    .page-blog-hello888-sports-betting-guide__card,
    .page-blog-hello888-sports-betting-guide__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Buttons responsiveness */
    .page-blog-hello888-sports-betting-guide__cta-button,
    .page-blog-hello888-sports-betting-guide__btn-primary,
    .page-blog-hello888-sports-betting-guide__btn-secondary,
    .page-blog-hello888-sports-betting-guide a[class*="button"],
    .page-blog-hello888-sports-betting-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .page-blog-hello888-sports-betting-guide__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-blog-hello888-sports-betting-guide__section-title {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .page-blog-hello888-sports-betting-guide__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-blog-hello888-sports-betting-guide__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }
}