/* style/blog-top-5-reasons-bingoplus.css */
.page-blog-top-5-reasons-bingoplus {
    color: #FFF6D6; /* Text Main */
    font-family: 'Poppins', sans-serif; /* Using Poppins for a modern look */
    line-height: 1.6;
    background-color: #0A0A0A; /* Background from shared.css, ensure text contrast */
}

.page-blog-top-5-reasons-bingoplus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-top-5-reasons-bingoplus__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden;
}

.page-blog-top-5-reasons-bingoplus__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height of hero image */
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog-top-5-reasons-bingoplus__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-top-5-reasons-bingoplus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-top-5-reasons-bingoplus__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
    font-weight: 700;
    color: #F2C14E; /* Main brand color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Glow color */
}

.page-blog-top-5-reasons-bingoplus__description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #FFF6D6; /* Text Main */
}

.page-blog-top-5-reasons-bingoplus__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-top-5-reasons-bingoplus__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-top-5-reasons-bingoplus__btn-download {
    margin-top: 30px;
}

.page-blog-top-5-reasons-bingoplus__btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
    margin-top: 40px;
}

.page-blog-top-5-reasons-bingoplus__introduction-section,
.page-blog-top-5-reasons-bingoplus__reason-section,
.page-blog-top-5-reasons-bingoplus__get-started-section,
.page-blog-top-5-reasons-bingoplus__conclusion-section,
.page-blog-top-5-reasons-bingoplus__faq-section {
    padding: 60px 0;
    border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-blog-top-5-reasons-bingoplus__introduction-section:last-of-type,
.page-blog-top-5-reasons-bingoplus__faq-section:last-of-type {
    border-bottom: none;
}

.page-blog-top-5-reasons-bingoplus__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2C14E; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.3); /* Glow color */
}

.page-blog-top-5-reasons-bingoplus__reason-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: #FFD36B; /* Auxiliary color */
    margin-bottom: 25px;
    text-align: center;
}

.page-blog-top-5-reasons-bingoplus__text-block {
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-top-5-reasons-bingoplus__text-block a {
    color: #F2C14E; /* Link color */
    text-decoration: none;
    font-weight: bold;
}

.page-blog-top-5-reasons-bingoplus__text-block a:hover {
    text-decoration: underline;
}

.page-blog-top-5-reasons-bingoplus__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border color */
    object-fit: cover;
}

.page-blog-top-5-reasons-bingoplus__steps-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-top-5-reasons-bingoplus__steps-list li {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.page-blog-top-5-reasons-bingoplus__steps-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-top-5-reasons-bingoplus__steps-list strong {
    color: #F2C14E; /* Main brand color */
}

/* FAQ Section */
.page-blog-top-5-reasons-bingoplus__faq-list {
    margin-top: 30px;
}

.page-blog-top-5-reasons-bingoplus__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-top-5-reasons-bingoplus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #111111; /* Card BG */
    color: #FFF6D6; /* Text Main */
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-blog-top-5-reasons-bingoplus__faq-question:hover {
    background-color: rgba(255, 211, 107, 0.1); /* Light hover effect with Glow color */
}

.page-blog-top-5-reasons-bingoplus__faq-question h3 {
    margin: 0;
    color: #FFF6D6; /* Text Main */
    font-size: 1.2rem;
}

.page-blog-top-5-reasons-bingoplus__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #F2C14E; /* Main brand color */
    transition: transform 0.3s ease;
}

.page-blog-top-5-reasons-bingoplus__faq-item.active .page-blog-top-5-reasons-bingoplus__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-top-5-reasons-bingoplus__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6; /* Text Main */
    background-color: #1a1a1a; /* Slightly lighter than Card BG for contrast */
}

.page-blog-top-5-reasons-bingoplus__faq-item.active .page-blog-top-5-reasons-bingoplus__faq-answer {
    max-height: 1000px !important; /* Important for JS to work */
    padding: 15px 25px;
}

.page-blog-top-5-reasons-bingoplus__faq-answer p {
    margin: 0;
    font-size: 1.05rem;
    color: #FFF6D6; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-top-5-reasons-bingoplus__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-top-5-reasons-bingoplus__description {
        font-size: 1.1rem;
    }
    .page-blog-top-5-reasons-bingoplus__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-blog-top-5-reasons-bingoplus__reason-title {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
    }
}

@media (max-width: 768px) {
    .page-blog-top-5-reasons-bingoplus {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-top-5-reasons-bingoplus__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-blog-top-5-reasons-bingoplus__hero-content {
        padding: 0 15px;
    }
    .page-blog-top-5-reasons-bingoplus__main-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 15px;
    }
    .page-blog-top-5-reasons-bingoplus__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-blog-top-5-reasons-bingoplus__btn-primary,
    .page-blog-top-5-reasons-bingoplus__btn-download,
    .page-blog-top-5-reasons-bingoplus__btn-large {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        margin-top: 20px;
    }
    .page-blog-top-5-reasons-bingoplus__introduction-section,
    .page-blog-top-5-reasons-bingoplus__reason-section,
    .page-blog-top-5-reasons-bingoplus__get-started-section,
    .page-blog-top-5-reasons-bingoplus__conclusion-section,
    .page-blog-top-5-reasons-bingoplus__faq-section {
        padding: 40px 0;
    }
    .page-blog-top-5-reasons-bingoplus__container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-top-5-reasons-bingoplus__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-blog-top-5-reasons-bingoplus__reason-title {
        font-size: clamp(1.4rem, 4.5vw, 2rem);
        margin-bottom: 20px;
    }
    .page-blog-top-5-reasons-bingoplus__text-block,
    .page-blog-top-5-reasons-bingoplus__steps-list li,
    .page-blog-top-5-reasons-bingoplus__faq-question h3,
    .page-blog-top-5-reasons-bingoplus__faq-answer p {
        font-size: 1rem;
    }
    .page-blog-top-5-reasons-bingoplus__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }
    .page-blog-top-5-reasons-bingoplus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    /* FAQ Specific Mobile Adjustments */
    .page-blog-top-5-reasons-bingoplus__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-blog-top-5-reasons-bingoplus__faq-question h3 {
        font-size: 1.1rem;
    }
    .page-blog-top-5-reasons-bingoplus__faq-toggle {
        font-size: 1.5rem;
    }
    .page-blog-top-5-reasons-bingoplus__faq-answer {
        padding: 10px 20px;
    }
    .page-blog-top-5-reasons-bingoplus__faq-item.active .page-blog-top-5-reasons-bingoplus__faq-answer {
        padding: 15px 20px;
    }
}