/* style/blog-winvn-no-hu-promotions.css */

/* Base styles for the page content */
.page-blog-winvn-no-hu-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* Use custom color for main text */
    background-color: var(--background-color-page); /* Use custom background color */
}

/* Custom CSS Variables from the provided color scheme */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --background-color-page: #08160F; /* Specific page background */
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

/* General section styling */
.page-blog-winvn-no-hu-promotions__section-title {
    font-size: 2.5em;
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.page-blog-winvn-no-hu-promotions__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-winvn-no-hu-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-winvn-no-hu-promotions__dark-bg {
    background-color: var(--background-color-page);
    color: var(--text-main-color);
}

.page-blog-winvn-no-hu-promotions__light-bg {
    background-color: #1a362a; /* A lighter shade of green for contrast on dark text */
    color: var(--text-main-color);
}

/* Hero Section */
.page-blog-winvn-no-hu-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding */
    background-color: var(--background-color-page);
    color: var(--text-main-color);
    text-align: center;
}

.page-blog-winvn-no-hu-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 70vh; /* Limit hero image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-winvn-no-hu-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-winvn-no-hu-promotions__hero-content {
    max-width: 900px;
    padding: 40px 20px;
    z-index: 1;
    position: relative;
}

.page-blog-winvn-no-hu-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* H1 font size with clamp */
    color: var(--gold-color); /* Use gold for H1 for emphasis */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-winvn-no-hu-promotions__subtitle {
    font-size: 1.2em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-blog-winvn-no-hu-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-winvn-no-hu-promotions__btn-primary,
.page-blog-winvn-no-hu-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Ensure padding doesn't overflow */
    max-width: 100%; /* Ensure button doesn't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-blog-winvn-no-hu-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-winvn-no-hu-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

.page-blog-winvn-no-hu-promotions__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-winvn-no-hu-promotions__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.3);
}

/* Introduction Section */
.page-blog-winvn-no-hu-promotions__introduction-section {
    padding: 60px 0;
    text-align: center;
}

/* Promo Types Section */
.page-blog-winvn-no-hu-promotions__promo-types-section {
    padding: 60px 0;
    background-color: var(--background-color-page); /* Consistent dark background */
}

.page-blog-winvn-no-hu-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-winvn-no-hu-promotions__card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main-color); /* Ensure text is main color on card bg */
}

.page-blog-winvn-no-hu-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-blog-winvn-no-hu-promotions__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-winvn-no-hu-promotions__card p {
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    flex-grow: 1; /* Allow paragraph to take available space */
}

/* Maximize Bonus Section */
.page-blog-winvn-no-hu-promotions__maximize-bonus-section {
    padding: 80px 0;
    background-color: #1a362a; /* Lighter green for contrast */
    color: var(--text-main-color);
    text-align: left;
}

.page-blog-winvn-no-hu-promotions__maximize-bonus-section .page-blog-winvn-no-hu-promotions__container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.page-blog-winvn-no-hu-promotions__text-block {
    flex: 2;
    min-width: 300px;
}

.page-blog-winvn-no-hu-promotions__content-image {
    flex: 1;
    min-width: 200px;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Tips Section */
.page-blog-winvn-no-hu-promotions__tips-section {
    padding: 80px 0;
    text-align: left;
}

/* FAQ Section */
.page-blog-winvn-no-hu-promotions__faq-section {
    padding: 60px 0;
    background-color: #1a362a; /* Lighter green for contrast */
    color: var(--text-main-color);
}

.page-blog-winvn-no-hu-promotions__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-winvn-no-hu-promotions__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main-color);
}

.page-blog-winvn-no-hu-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.15em;
    color: var(--primary-color);
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-blog-winvn-no-hu-promotions__faq-question:hover {
    background-color: var(--deep-green-color);
}

.page-blog-winvn-no-hu-promotions__faq-qtext {
    flex-grow: 1;
}

.page-blog-winvn-no-hu-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-blog-winvn-no-hu-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--text-secondary-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-winvn-no-hu-promotions__faq-item[open] .page-blog-winvn-no-hu-promotions__faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding-top: 10px;
}

.page-blog-winvn-no-hu-promotions__faq-item[open] .page-blog-winvn-no-hu-promotions__faq-question .page-blog-winvn-no-hu-promotions__faq-toggle {
    content: "−";
}

/* For details tag, hide default marker */
.page-blog-winvn-no-hu-promotions__faq-item summary {
    list-style: none;
}
.page-blog-winvn-no-hu-promotions__faq-item summary::-webkit-details-marker {
    display: none;
}


/* Conclusion Section */
.page-blog-winvn-no-hu-promotions__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-winvn-no-hu-promotions__section-title {
        font-size: 2em;
    }
    .page-blog-winvn-no-hu-promotions__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-blog-winvn-no-hu-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-winvn-no-hu-promotions__hero-section {
        padding-top: 10px !important; /* Ensure small top padding, body handles header offset */
    }
    .page-blog-winvn-no-hu-promotions__hero-content {
        padding: 30px 15px;
    }
    .page-blog-winvn-no-hu-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-blog-winvn-no-hu-promotions__subtitle {
        font-size: 1em;
    }
    .page-blog-winvn-no-hu-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-winvn-no-hu-promotions__btn-primary,
    .page-blog-winvn-no-hu-promotions__btn-secondary {
        width: 100% !important; /* Mobile button full width */
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-winvn-no-hu-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-winvn-no-hu-promotions__sub-title {
        font-size: 1.3em;
    }
    .page-blog-winvn-no-hu-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-winvn-no-hu-promotions__card {
        padding: 20px;
    }
    .page-blog-winvn-no-hu-promotions__card-image {
        height: auto; /* Allow image height to adjust */
        min-height: 200px; /* Maintain min height */
    }
    .page-blog-winvn-no-hu-promotions__maximize-bonus-section .page-blog-winvn-no-hu-promotions__container,
    .page-blog-winvn-no-hu-promotions__tips-section .page-blog-winvn-no-hu-promotions__container {
        flex-direction: column;
        gap: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-winvn-no-hu-promotions__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px !important; /* Ensure min height for content images */
        order: -1; /* Image appears above text on mobile */
    }

    /* All images responsive for mobile */
    .page-blog-winvn-no-hu-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-winvn-no-hu-promotions__section,
    .page-blog-winvn-no-hu-promotions__card,
    .page-blog-winvn-no-hu-promotions__container,
    .page-blog-winvn-no-hu-promotions__hero-section,
    .page-blog-winvn-no-hu-promotions__promo-types-section,
    .page-blog-winvn-no-hu-promotions__maximize-bonus-section,
    .page-blog-winvn-no-hu-promotions__tips-section,
    .page-blog-winvn-no-hu-promotions__faq-section,
    .page-blog-winvn-no-hu-promotions__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    .page-blog-winvn-no-hu-promotions__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-blog-winvn-no-hu-promotions__faq-answer {
        padding: 0 20px 15px;
    }
}

/* Ensure desktop video container width */
.page-blog-winvn-no-hu-promotions__video-container {
    width: 100%; /* Explicitly set width 100% for desktop */
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}