/* style/blog-how-to-participate-f168n-exclusive-promotions.css */
/* Base styles for the page */
.page-blog-how-to-participate-f168n-exclusive-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

/* Hero Section */
.page-blog-how-to-participate-f168n-exclusive-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding for this section */
    overflow: hidden;
    background-color: #0A4B2C; /* Deep Green */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-width: 1920px; /* Ensure image scales down */
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 8px;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold */
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

/* CTA Buttons */
.page-blog-how-to-participate-f168n-exclusive-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%; /* Ensure button container is full width */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__btn-primary,
.page-blog-how-to-participate-f168n-exclusive-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button itself is responsive */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    text-align: center;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-participate-f168n-exclusive-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-participate-f168n-exclusive-promotions__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Gold */
    border: 2px solid #F2C14E; /* Gold */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-participate-f168n-exclusive-promotions__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1); /* Slightly transparent gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-blog-how-to-participate-f168n-exclusive-promotions__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #1E3A2A; /* Divider */
    padding-bottom: 15px;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #57E38D; /* Glow */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-how-to-participate-f168n-exclusive-promotions p {
    margin-bottom: 1em;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #57E38D; /* Glow */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Steps section */
.page-blog-how-to-participate-f168n-exclusive-promotions__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__step-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #57E38D; /* Glow */
    color: #08160F; /* Background text */
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-blog-how-to-participate-f168n-exclusive-promotions__step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

/* FAQ Section */
.page-blog-how-to-participate-f168n-exclusive-promotions__faq-list {
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-participate-f168n-exclusive-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    font-size: 1.1rem;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-participate-f168n-exclusive-promotions__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

.page-blog-how-to-participate-f168n-exclusive-promotions__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95rem;
}

/* Bottom CTA buttons */
.page-blog-how-to-participate-f168n-exclusive-promotions__cta-buttons--bottom {
    margin-top: 50px;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-blog-how-to-participate-f168n-exclusive-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Small top padding for this section on mobile */
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__main-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__description {
        font-size: 1rem;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__btn-primary,
    .page-blog-how-to-participate-f168n-exclusive-promotions__btn-secondary {
        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;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__content-area {
        padding: 30px 15px;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__section-title {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__sub-title {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Images responsiveness */
    .page-blog-how-to-participate-f168n-exclusive-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-how-to-participate-f168n-exclusive-promotions__section,
    .page-blog-how-to-participate-f168n-exclusive-promotions__card,
    .page-blog-how-to-participate-f168n-exclusive-promotions__container,
    .page-blog-how-to-participate-f168n-exclusive-promotions__steps {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__steps {
        grid-template-columns: 1fr; /* Stack steps vertically */
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-how-to-participate-f168n-exclusive-promotions__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }
}