/* style/blog-hl8-slots-jackpots-guide.css */

/* Base styles for the page */
.page-blog-hl8-slots-jackpots-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #ffffff;
}

/* Hero Section */
.page-blog-hl8-slots-jackpots-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    text-align: center;
    overflow: hidden;
    background-color: #26A9E0; /* Brand primary color for hero background */
    color: #ffffff;
}

.page-blog-hl8-slots-jackpots-guide__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
}

.page-blog-hl8-slots-jackpots-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-hl8-slots-jackpots-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
}

.page-blog-hl8-slots-jackpots-guide__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 20px;
    /* Using clamp for responsive font-size, as per requirement */
    font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
}

.page-blog-hl8-slots-jackpots-guide__intro-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Content Sections */
.page-blog-hl8-slots-jackpots-guide__content-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-blog-hl8-slots-jackpots-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-hl8-slots-jackpots-guide__section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 25px;
    text-align: center;
}

.page-blog-hl8-slots-jackpots-guide__text-block {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.page-blog-hl8-slots-jackpots-guide__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-blog-hl8-slots-jackpots-guide__list-item {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.page-blog-hl8-slots-jackpots-guide__list-item strong {
    color: #26A9E0;
}

/* Images in Content */
.page-blog-hl8-slots-jackpots-guide__image-container {
    margin: 40px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-hl8-slots-jackpots-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Buttons */
.page-blog-hl8-slots-jackpots-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-blog-hl8-slots-jackpots-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-hl8-slots-jackpots-guide__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-blog-hl8-slots-jackpots-guide__btn-primary:hover {
    background-color: #1a78b0;
    border-color: #1a78b0;
}

.page-blog-hl8-slots-jackpots-guide__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-blog-hl8-slots-jackpots-guide__btn-secondary:hover {
    background-color: #e0f4ff;
    color: #1a78b0;
    border-color: #1a78b0;
}

/* FAQ Section */
.page-blog-hl8-slots-jackpots-guide__faq-list {
    margin-top: 40px;
}

.page-blog-hl8-slots-jackpots-guide__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-hl8-slots-jackpots-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.page-blog-hl8-slots-jackpots-guide__faq-question:hover {
    background-color: #e5e5e5;
}

.page-blog-hl8-slots-jackpots-guide__faq-question::-webkit-details-marker, /* Hide default arrow for Chrome */
.page-blog-hl8-slots-jackpots-guide__faq-question::marker { /* Hide default arrow for Firefox */
    display: none;
}

.page-blog-hl8-slots-jackpots-guide__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #26A9E0;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-hl8-slots-jackpots-guide__faq-item[open] .page-blog-hl8-slots-jackpots-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-hl8-slots-jackpots-guide__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    text-align: justify;
}

.page-blog-hl8-slots-jackpots-guide__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Links */
.page-blog-hl8-slots-jackpots-guide a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-hl8-slots-jackpots-guide a:hover {
    color: #1a78b0;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-hl8-slots-jackpots-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-hl8-slots-jackpots-guide__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-hl8-slots-jackpots-guide__main-title {
        font-size: clamp(1.8rem, 6vw + 1rem, 2.5rem);
    }

    .page-blog-hl8-slots-jackpots-guide__intro-text {
        font-size: 1rem;
    }

    .page-blog-hl8-slots-jackpots-guide__section-title {
        font-size: 1.7rem;
    }

    .page-blog-hl8-slots-jackpots-guide__text-block,
    .page-blog-hl8-slots-jackpots-guide__list-item,
    .page-blog-hl8-slots-jackpots-guide__faq-question,
    .page-blog-hl8-slots-jackpots-guide__faq-answer {
        font-size: 0.95rem;
    }

    /* Mobile image and container responsiveness */
    .page-blog-hl8-slots-jackpots-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-hl8-slots-jackpots-guide__image-container,
    .page-blog-hl8-slots-jackpots-guide__container,
    .page-blog-hl8-slots-jackpots-guide__content-section,
    .page-blog-hl8-slots-jackpots-guide__hero-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Mobile button responsiveness */
    .page-blog-hl8-slots-jackpots-guide__cta-button,
    .page-blog-hl8-slots-jackpots-guide__btn-primary,
    .page-blog-hl8-slots-jackpots-guide__btn-secondary,
    .page-blog-hl8-slots-jackpots-guide a[class*="button"],
    .page-blog-hl8-slots-jackpots-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: 12px 20px;
    }
    
    .page-blog-hl8-slots-jackpots-guide__cta-buttons,
    .page-blog-hl8-slots-jackpots-guide__button-group,
    .page-blog-hl8-slots-jackpots-guide__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important; /* Stack buttons vertically on mobile */
        gap: 15px;
        overflow: hidden !important;
    }

    .page-blog-hl8-slots-jackpots-guide__faq-question {
        padding: 15px;
    }

    .page-blog-hl8-slots-jackpots-guide__faq-answer {
        padding: 0 15px 15px 15px;
    }

    .page-blog-hl8-slots-jackpots-guide__hero-image-wrapper {
        max-height: 300px;
    }

    .page-blog-hl8-slots-jackpots-guide__hero-content {
        margin-top: 20px;
    }
}