/* style/blog-59win-promotions-guide.css */

/* Variables from custom palette */
:root {
    --page-bg-color: #08160F;
    --page-card-bg: #11271B;
    --page-text-main: #F2FFF6;
    --page-text-secondary: #A7D9B8;
    --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-border-color: #2E7A4E;
    --page-glow-color: #57E38D;
    --page-gold-color: #F2C14E;
    --page-divider-color: #1E3A2A;
    --page-deep-green-color: #0A4B2C;
}

.page-blog-59win-promotions-guide {
    background-color: var(--page-bg-color);
    color: var(--page-text-main); /* Ensure light text on dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-59win-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-59win-promotions-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-blog-59win-promotions-guide__hero-image {
    width: 100%;
    height: 675px;
    object-fit: cover;
    display: block;
}

.page-blog-59win-promotions-guide__hero-content {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    max-width: 900px;
    margin-top: -150px; /* Adjust to slightly overlap the image, but not cover the whole image */
    z-index: 1;
    border-radius: 10px;
}

.page-blog-59win-promotions-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--page-gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-59win-promotions-guide__intro-text {
    font-size: 1.2rem;
    color: var(--page-text-main);
    margin-bottom: 30px;
}

.page-blog-59win-promotions-guide__btn-primary,
.page-blog-59win-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-59win-promotions-guide__btn-primary {
    background: var(--page-button-gradient);
    color: var(--page-text-main);
    border: 2px solid transparent;
}

.page-blog-59win-promotions-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-59win-promotions-guide__btn-secondary {
    background: transparent;
    color: var(--page-gold-color);
    border: 2px solid var(--page-gold-color);
}

.page-blog-59win-promotions-guide__btn-secondary:hover {
    background: var(--page-gold-color);
    color: var(--page-bg-color);
    transform: translateY(-3px);
}

.page-blog-59win-promotions-guide__content-section,
.page-blog-59win-promotions-guide__registration-guide-section,
.page-blog-59win-promotions-guide__promotions-highlight-section,
.page-blog-59win-promotions-guide__maximize-benefits-section,
.page-blog-59win-promotions-guide__faq-section,
.page-blog-59win-promotions-guide__cta-section {
    padding: 60px 0;
}

.page-blog-59win-promotions-guide__dark-bg {
    background-color: var(--page-bg-color);
    color: var(--page-text-main);
}

.page-blog-59win-promotions-guide__section-title {
    font-size: 2.5rem;
    color: var(--page-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-59win-promotions-guide__text-block {
    font-size: 1.1rem;
    color: var(--page-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-59win-promotions-guide__steps-grid,
.page-blog-59win-promotions-guide__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-59win-promotions-guide__card {
    background-color: var(--page-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-border-color);
    color: var(--page-text-main);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-59win-promotions-guide__step-title,
.page-blog-59win-promotions-guide__card-title,
.page-blog-59win-promotions-guide__list-item-title {
    font-size: 1.5rem;
    color: var(--page-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-59win-promotions-guide__step-description,
.page-blog-59win-promotions-guide__card-description,
.page-blog-59win-promotions-guide__list-item-description {
    font-size: 1rem;
    color: var(--page-text-secondary);
    margin-bottom: 15px;
}

.page-blog-59win-promotions-guide__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 40px auto;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-59win-promotions-guide__cta-button {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-59win-promotions-guide__note-text {
    font-size: 0.95rem;
    color: var(--page-text-secondary);
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

.page-blog-59win-promotions-guide__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-59win-promotions-guide__list-item {
    background-color: var(--page-card-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-gold-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-59win-promotions-guide__faq-list {
    margin-top: 40px;
}

.page-blog-59win-promotions-guide__faq-item {
    background-color: var(--page-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--page-border-color);
    overflow: hidden;
}

.page-blog-59win-promotions-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--page-text-main);
    background-color: var(--page-deep-green-color);
    border-bottom: 1px solid var(--page-divider-color);
    list-style: none; /* For details/summary */
}

.page-blog-59win-promotions-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-59win-promotions-guide__faq-toggle {
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--page-gold-color);
    margin-left: 15px;
}

.page-blog-59win-promotions-guide__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--page-text-secondary);
    background-color: var(--page-card-bg);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-59win-promotions-guide__container {
        padding: 0 15px;
    }

    .page-blog-59win-promotions-guide__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-59win-promotions-guide__hero-content {
        margin-top: -100px;
        padding: 20px 15px;
    }

    .page-blog-59win-promotions-guide__main-title {
        font-size: 2rem;
    }

    .page-blog-59win-promotions-guide__intro-text {
        font-size: 1rem;
    }

    .page-blog-59win-promotions-guide__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-blog-59win-promotions-guide__text-block {
        font-size: 0.95rem;
    }

    .page-blog-59win-promotions-guide__steps-grid,
    .page-blog-59win-promotions-guide__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-59win-promotions-guide__step-title,
    .page-blog-59win-promotions-guide__card-title,
    .page-blog-59win-promotions-guide__list-item-title {
        font-size: 1.3rem;
    }

    .page-blog-59win-promotions-guide__step-description,
    .page-blog-59win-promotions-guide__card-description,
    .page-blog-59win-promotions-guide__list-item-description {
        font-size: 0.9rem;
    }

    .page-blog-59win-promotions-guide__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-blog-59win-promotions-guide__faq-toggle {
        font-size: 1.5rem;
    }

    .page-blog-59win-promotions-guide__faq-answer {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    /* Mobile image responsiveness */
    .page-blog-59win-promotions-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Ensure min size */
        min-height: 200px !important; /* Ensure min size */
    }

    .page-blog-59win-promotions-guide__hero-image {
        height: 250px; /* Adjust hero image height for mobile */
    }

    .page-blog-59win-promotions-guide__section,
    .page-blog-59win-promotions-guide__card,
    .page-blog-59win-promotions-guide__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile button responsiveness */
    .page-blog-59win-promotions-guide__btn-primary,
    .page-blog-59win-promotions-guide__btn-secondary,
    .page-blog-59win-promotions-guide a[class*="button"],
    .page-blog-59win-promotions-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;
    }

    .page-blog-59win-promotions-guide__cta-buttons,
    .page-blog-59win-promotions-guide__button-group,
    .page-blog-59win-promotions-guide__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }
}