/* style/blog-manbet-latest-link-exclusive-promotions.css */

/* Variables for colors */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #26A9E0; /* Using primary color as dark background for contrast sections */
    --login-button-color: #EA7C07; /* Specific color for login button */
    --black-color: #000000;
}

.page-blog-manbet-latest-link-exclusive-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark); /* Default text color for light background */
    line-height: 1.6;
    background-color: var(--bg-light); /* Default body background is light */
}

/* Hero Section */
.page-blog-manbet-latest-link-exclusive-promotions__hero-section {
    background-color: var(--bg-dark); /* Dark background for hero */
    color: var(--text-light);
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-blog-manbet-latest-link-exclusive-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image container */
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-manbet-latest-link-exclusive-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    filter: none; /* Ensure no filter on images */
}

.page-blog-manbet-latest-link-exclusive-promotions__hero-content {
    max-width: 800px;
}

.page-blog-manbet-latest-link-exclusive-promotions__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

.page-blog-manbet-latest-link-exclusive-promotions__hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* General Section Styling */
.page-blog-manbet-latest-link-exclusive-promotions__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog-manbet-latest-link-exclusive-promotions__section--light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-blog-manbet-latest-link-exclusive-promotions__section--dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-blog-manbet-latest-link-exclusive-promotions__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.page-blog-manbet-latest-link-exclusive-promotions__section--dark .page-blog-manbet-latest-link-exclusive-promotions__section-title {
    color: var(--text-light);
}

.page-blog-manbet-latest-link-exclusive-promotions__section-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.page-blog-manbet-latest-link-exclusive-promotions__text-block {
    margin-bottom: 20px;
    font-size: 1rem;
}

.page-blog-manbet-latest-link-exclusive-promotions__text-block--light {
    color: var(--text-light);
}

.page-blog-manbet-latest-link-exclusive-promotions__list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-blog-manbet-latest-link-exclusive-promotions__list--light {
    color: var(--text-light);
}

.page-blog-manbet-latest-link-exclusive-promotions__list-item {
    margin-bottom: 10px;
}

/* Card Layout for Promotions */
.page-blog-manbet-latest-link-exclusive-promotions__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-manbet-latest-link-exclusive-promotions__card {
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #e0e0e0; /* Added for contrast */
    color: var(--text-dark);
}

.page-blog-manbet-latest-link-exclusive-promotions__card-image-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for consistent card image display */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-manbet-latest-link-exclusive-promotions__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none; /* Ensure no filter on images */
}

.page-blog-manbet-latest-link-exclusive-promotions__card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    padding: 0 15px;
}

.page-blog-manbet-latest-link-exclusive-promotions__card-description {
    font-size: 0.95rem;
    color: #555555;
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows description to take available space */
}

/* CTA Buttons */
.page-blog-manbet-latest-link-exclusive-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-manbet-latest-link-exclusive-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for button responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    max-width: 100%; /* Ensure button does not overflow */
    text-align: center;
}

.page-blog-manbet-latest-link-exclusive-promotions__btn--primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-blog-manbet-latest-link-exclusive-promotions__btn--primary:hover {
    background-color: #1f87b3; /* Darker shade of primary */
    border-color: #1f87b3;
    transform: translateY(-2px);
}

.page-blog-manbet-latest-link-exclusive-promotions__btn--secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-manbet-latest-link-exclusive-promotions__btn--secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.page-blog-manbet-latest-link-exclusive-promotions__btn--login {
    background-color: var(--login-button-color);
    color: var(--text-light);
    border: 2px solid var(--login-button-color);
}
.page-blog-manbet-latest-link-exclusive-promotions__btn--login:hover {
    background-color: #c96e06; /* Darker shade of login color */
    border-color: #c96e06;
    transform: translateY(-2px);
}

/* How to Guide / Numbered List */
.page-blog-manbet-latest-link-exclusive-promotions__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-manbet-latest-link-exclusive-promotions__step-item {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.page-blog-manbet-latest-link-exclusive-promotions__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid var(--secondary-color);
}

.page-blog-manbet-latest-link-exclusive-promotions__step-text {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* App Download Section */
.page-blog-manbet-latest-link-exclusive-promotions__app-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-blog-manbet-latest-link-exclusive-promotions__app-image {
    max-width: 400px; /* Adjust as needed */
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    filter: none; /* Ensure no filter on images */
}

/* FAQ Section */
.page-blog-manbet-latest-link-exclusive-promotions__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-blog-manbet-latest-link-exclusive-promotions__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-blog-manbet-latest-link-exclusive-promotions__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none; /* Hide default marker */
    user-select: none;
}

.page-blog-manbet-latest-link-exclusive-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-manbet-latest-link-exclusive-promotions__faq-qtext {
    flex-grow: 1;
}

.page-blog-manbet-latest-link-exclusive-promotions__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-manbet-latest-link-exclusive-promotions__faq-item[open] .page-blog-manbet-latest-link-exclusive-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-blog-manbet-latest-link-exclusive-promotions__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: #555555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-manbet-latest-link-exclusive-promotions__section {
        padding: 40px 15px;
    }
    .page-blog-manbet-latest-link-exclusive-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }
    .page-blog-manbet-latest-link-exclusive-promotions__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-manbet-latest-link-exclusive-promotions__hero-description {
        font-size: 1.1rem;
    }
    .page-blog-manbet-latest-link-exclusive-promotions__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-manbet-latest-link-exclusive-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-manbet-latest-link-exclusive-promotions__hero-section {
        padding: 30px 15px;
        padding-top: 10px !important; /* body already handles offset */
    }
    .page-blog-manbet-latest-link-exclusive-promotions__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-manbet-latest-link-exclusive-promotions__hero-description {
        font-size: 1rem;
    }

    /* Images responsiveness */
    .page-blog-manbet-latest-link-exclusive-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        filter: none !important; /* Ensure no filter on images */
    }
    .page-blog-manbet-latest-link-exclusive-promotions__hero-image-wrapper,
    .page-blog-manbet-latest-link-exclusive-promotions__card-image-wrapper,
    .page-blog-manbet-latest-link-exclusive-promotions__app-download {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-manbet-latest-link-exclusive-promotions__card-image-wrapper {
        height: auto; /* Allow height to adjust on mobile */
    }

    /* Buttons responsiveness */
    .page-blog-manbet-latest-link-exclusive-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-manbet-latest-link-exclusive-promotions__btn {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    /* Section padding for mobile */
    .page-blog-manbet-latest-link-exclusive-promotions__section,
    .page-blog-manbet-latest-link-exclusive-promotions__card,
    .page-blog-manbet-latest-link-exclusive-promotions__faq-item {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }

    /* Video responsiveness (if any, although not explicitly in this page's content plan, keep the rule) */
    .page-blog-manbet-latest-link-exclusive-promotions video,
    .page-blog-manbet-latest-link-exclusive-promotions__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-blog-manbet-latest-link-exclusive-promotions__video-section,
    .page-blog-manbet-latest-link-exclusive-promotions__video-container,
    .page-blog-manbet-latest-link-exclusive-promotions__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-blog-manbet-latest-link-exclusive-promotions__video-section {
        padding-top: 10px !important;
    }
}