/* style/resources-58win1-latest-promotions-analysis.css */

/* General Styles for the Page Content */
.page-resources-58win1-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    background-color: #f4f4f4; /* Ensure consistent background */
}

.page-resources-58win1-latest-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-58win1-latest-promotions-analysis__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-58win1-latest-promotions-analysis__section:nth-of-type(even) {
    background-color: #fcfcfc; /* Slightly different background for visual separation */
}

.page-resources-58win1-latest-promotions-analysis__heading {
    font-size: 36px;
    color: #8B0000; /* Auxiliary color for headings */
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-resources-58win1-latest-promotions-analysis__sub-heading {
    font-size: 24px;
    color: #333333;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-resources-58win1-latest-promotions-analysis__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-resources-58win1-latest-promotions-analysis__paragraph strong {
    color: #8B0000;
}

.page-resources-58win1-latest-promotions-analysis__link {
    color: #8B0000;
    text-decoration: underline;
    font-weight: 600;
}

.page-resources-58win1-latest-promotions-analysis__link:hover {
    color: #FFD700;
}

/* Hero Section */
.page-resources-58win1-latest-promotions-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #FFD700, #8B0000); /* Brand colors for background */
    color: #ffffff; /* White text for dark gradient background */
    overflow: hidden;
}

.page-resources-58win1-latest-promotions-analysis__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-resources-58win1-latest-promotions-analysis__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-58win1-latest-promotions-analysis__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-58win1-latest-promotions-analysis__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent overlay for text readability */
    border-radius: 8px;
}

.page-resources-58win1-latest-promotions-analysis__hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-58win1-latest-promotions-analysis__hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-58win1-latest-promotions-analysis__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700; /* Primary brand color */
    color: #8B0000; /* Contrasting text color */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-resources-58win1-latest-promotions-analysis__cta-button:hover {
    background: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Promotions Types Section */
.page-resources-58win1-latest-promotions-analysis__promotions-types .page-resources-58win1-latest-promotions-analysis__heading {
    color: #333333;
}

.page-resources-58win1-latest-promotions-analysis__image-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.page-resources-58win1-latest-promotions-analysis__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
    min-width: 200px; /* Ensure minimum image size */
    min-height: 200px;
}

.page-resources-58win1-latest-promotions-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-resources-58win1-latest-promotions-analysis__card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #333333; /* Dark text for white card background */
}

.page-resources-58win1-latest-promotions-analysis__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-58win1-latest-promotions-analysis__card-title {
    font-size: 22px;
    color: #8B0000; /* Auxiliary color for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-58win1-latest-promotions-analysis__card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.page-resources-58win1-latest-promotions-analysis__cta-buttons {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-resources-58win1-latest-promotions-analysis__btn-primary,
.page-resources-58win1-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-resources-58win1-latest-promotions-analysis__btn-primary {
    background: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-resources-58win1-latest-promotions-analysis__btn-primary:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-58win1-latest-promotions-analysis__btn-secondary {
    background: #8B0000;
    color: #ffffff;
    border: 2px solid #8B0000;
}

.page-resources-58win1-latest-promotions-analysis__btn-secondary:hover {
    background: #6a0000;
    border-color: #6a0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* How to Claim Section */
.page-resources-58win1-latest-promotions-analysis__how-to-claim .page-resources-58win1-latest-promotions-analysis__heading {
    color: #333333;
}

.page-resources-58win1-latest-promotions-analysis__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-58win1-latest-promotions-analysis__list-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
    color: #333333;
}

.page-resources-58win1-latest-promotions-analysis__list-title {
    font-size: 20px;
    color: #8B0000;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Terms and Conditions Section */
.page-resources-58win1-latest-promotions-analysis__terms .page-resources-58win1-latest-promotions-analysis__heading {
    color: #333333;
}

.page-resources-58win1-latest-promotions-analysis__terms .page-resources-58win1-latest-promotions-analysis__list {
    list-style: disc;
    padding-left: 20px;
}

.page-resources-58win1-latest-promotions-analysis__terms .page-resources-58win1-latest-promotions-analysis__list-item {
    background: none;
    box-shadow: none;
    padding: 10px 0;
    margin-bottom: 5px;
    color: #333333;
}

/* VIP Section */
.page-resources-58win1-latest-promotions-analysis__vip .page-resources-58win1-latest-promotions-analysis__heading {
    color: #333333;
}

.page-resources-58win1-latest-promotions-analysis__vip .page-resources-58win1-latest-promotions-analysis__list {
    list-style: disc;
    padding-left: 20px;
}

.page-resources-58win1-latest-promotions-analysis__vip .page-resources-58win1-latest-promotions-analysis__list-item {
    background: none;
    box-shadow: none;
    padding: 10px 0;
    margin-bottom: 5px;
    color: #333333;
}

/* FAQ Section */
.page-resources-58win1-latest-promotions-analysis__faq .page-resources-58win1-latest-promotions-analysis__heading {
    color: #333333;
}

.page-resources-58win1-latest-promotions-analysis__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* FAQ default state - answer hidden */
.page-resources-58win1-latest-promotions-analysis__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

/* FAQ expanded state - 🚨 Use !important and sufficiently large max-height */
.page-resources-58win1-latest-promotions-analysis__faq-item.active .page-resources-58win1-latest-promotions-analysis__faq-answer {
    max-height: 2000px !important; /* 🚨 Use !important to ensure priority, value large enough to contain any content */
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: #333333; /* Dark text for light background */
}

/* Question style */
.page-resources-58win1-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-resources-58win1-latest-promotions-analysis__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-resources-58win1-latest-promotions-analysis__faq-question:active {
    background: #eeeeee;
}

/* Question title style */
.page-resources-58win1-latest-promotions-analysis__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none; /* Prevent h3 tag from blocking click event */
    color: #333333; /* Dark text for question title */
}

/* Toggle icon */
.page-resources-58win1-latest-promotions-analysis__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from blocking click event */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-resources-58win1-latest-promotions-analysis__faq-item.active .page-resources-58win1-latest-promotions-analysis__faq-toggle {
    color: #333;
    transform: rotate(45deg); /* Rotate for 'x' effect, or just change text content */
}

/* Conclusion Section */
.page-resources-58win1-latest-promotions-analysis__conclusion .page-resources-58win1-latest-promotions-analysis__heading {
    color: #333333;
}

.page-resources-58win1-latest-promotions-analysis__cta-bottom {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-58win1-latest-promotions-analysis__hero-content h1 {
        font-size: 40px;
    }

    .page-resources-58win1-latest-promotions-analysis__hero-content p {
        font-size: 18px;
    }

    .page-resources-58win1-latest-promotions-analysis__heading {
        font-size: 32px;
    }

    .page-resources-58win1-latest-promotions-analysis__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-58win1-latest-promotions-analysis__section {
        padding: 40px 0;
    }

    .page-resources-58win1-latest-promotions-analysis__container {
        padding: 0 15px;
    }

    /* Mobile Hero Section */
    .page-resources-58win1-latest-promotions-analysis__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Mobile specific offset */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-58win1-latest-promotions-analysis__hero-image img {
        border-radius: 4px;
    }

    .page-resources-58win1-latest-promotions-analysis__hero-content h1 {
        font-size: 32px;
    }

    .page-resources-58win1-latest-promotions-analysis__hero-content p {
        font-size: 16px;
    }

    .page-resources-58win1-latest-promotions-analysis__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-58win1-latest-promotions-analysis__heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .page-resources-58win1-latest-promotions-analysis__paragraph {
        font-size: 16px;
    }

    .page-resources-58win1-latest-promotions-analysis__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources-58win1-latest-promotions-analysis__card {
        padding: 25px;
    }

    .page-resources-58win1-latest-promotions-analysis__card-title {
        font-size: 20px;
    }

    /* Mobile Button Adaptation */
    .page-resources-58win1-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to container */
    }
    
    .page-resources-58win1-latest-promotions-analysis__btn-primary,
    .page-resources-58win1-latest-promotions-analysis__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px; /* Ensure internal padding */
        padding-right: 15px; /* Ensure internal padding */
    }

    /* Mobile Image Adaptation */
    .page-resources-58win1-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}