/* style/blog-vv88-promotion-strategy.css */

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

.page-blog-vv88-promotion-strategy {
    background-color: var(--vv88-background);
    color: var(--vv88-text-main);
    font-family: 'Arial', sans-serif;
}

.page-blog-vv88-promotion-strategy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body handles padding-top, this is for internal spacing */
    background-color: var(--vv88-deep-green);
    overflow: hidden;
}

.page-blog-vv88-promotion-strategy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-vv88-promotion-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-blog-vv88-promotion-strategy__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    margin-top: -100px; /* Pull content up over the image a bit for visual flow */
    background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-vv88-promotion-strategy__main-title {
    color: var(--vv88-gold);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
    /* No fixed font-size, rely on responsive scaling and line-height */
}

.page-blog-vv88-promotion-strategy__description {
    color: var(--vv88-text-main);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-blog-vv88-promotion-strategy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--vv88-button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-blog-vv88-promotion-strategy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-vv88-promotion-strategy__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-blog-vv88-promotion-strategy__section {
    padding: 60px 0;
    background-color: var(--vv88-background);
}

.page-blog-vv88-promotion-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-vv88-promotion-strategy__section-title {
    color: var(--vv88-gold);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-vv88-promotion-strategy__text-block {
    line-height: 1.7;
    font-size: 1.05em;
    color: var(--vv88-text-main);
}

.page-blog-vv88-promotion-strategy__text-block p {
    margin-bottom: 15px;
}

.page-blog-vv88-promotion-strategy__promotions-list {
    background-color: var(--vv88-deep-green);
}

.page-blog-vv88-promotion-strategy__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-vv88-promotion-strategy__card {
    background-color: var(--vv88-card-bg);
    border: 1px solid var(--vv88-border);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-blog-vv88-promotion-strategy__card:hover {
    transform: translateY(-5px);
}

.page-blog-vv88-promotion-strategy__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    display: block;
}

.page-blog-vv88-promotion-strategy__card-title {
    color: var(--vv88-gold);
    font-size: 1.4em;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-blog-vv88-promotion-strategy__card-text {
    color: var(--vv88-text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-blog-vv88-promotion-strategy__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--vv88-button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background 0.3s ease;
}

.page-blog-vv88-promotion-strategy__card-button:hover {
    opacity: 0.9;
}

.page-blog-vv88-promotion-strategy__strategy-section .page-blog-vv88-promotion-strategy__content-wrapper,
.page-blog-vv88-promotion-strategy__terms-section .page-blog-vv88-promotion-strategy__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-blog-vv88-promotion-strategy__strategy-section .page-blog-vv88-promotion-strategy__text-block,
.page-blog-vv88-promotion-strategy__terms-section .page-blog-vv88-promotion-strategy__text-block {
    flex: 2;
}

.page-blog-vv88-promotion-strategy__image-sidebar {
    flex: 1;
    min-width: 300px; /* Ensure image sidebar has a minimum width */
}

.page-blog-vv88-promotion-strategy__sidebar-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-vv88-promotion-strategy__sub-title {
    color: var(--vv88-primary-color);
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-vv88-promotion-strategy__faq-section {
    background-color: var(--vv88-card-bg);
}

.page-blog-vv88-promotion-strategy__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-vv88-promotion-strategy__faq-item {
    background-color: var(--vv88-background);
    border: 1px solid var(--vv88-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-vv88-promotion-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    color: var(--vv88-text-main);
    font-weight: bold;
    font-size: 1.1em;
    background-color: var(--vv88-card-bg);
    border-bottom: 1px solid var(--vv88-divider);
    list-style: none; /* For details/summary */
}

.page-blog-vv88-promotion-strategy__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-vv88-promotion-strategy__faq-item[open] .page-blog-vv88-promotion-strategy__faq-question {
    border-bottom: 1px solid var(--vv88-primary-color);
}

.page-blog-vv88-promotion-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--vv88-gold);
}

.page-blog-vv88-promotion-strategy__faq-answer {
    padding: 20px;
    color: var(--vv88-text-secondary);
    line-height: 1.6;
    font-size: 1em;
}

.page-blog-vv88-promotion-strategy__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-vv88-promotion-strategy__cta-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-vv88-promotion-strategy__hero-content {
        margin-top: -50px;
    }
    .page-blog-vv88-promotion-strategy__section-title {
        font-size: 2em;
    }
    .page-blog-vv88-promotion-strategy__strategy-section .page-blog-vv88-promotion-strategy__content-wrapper,
    .page-blog-vv88-promotion-strategy__terms-section .page-blog-vv88-promotion-strategy__content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-blog-vv88-promotion-strategy__image-sidebar {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-blog-vv88-promotion-strategy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-blog-vv88-promotion-strategy__hero-content {
        margin-top: -30px;
        padding: 15px;
    }
    .page-blog-vv88-promotion-strategy__main-title {
        font-size: 2em;
    }
    .page-blog-vv88-promotion-strategy__description {
        font-size: 1em;
    }
    .page-blog-vv88-promotion-strategy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-blog-vv88-promotion-strategy__section {
        padding: 40px 0;
    }
    .page-blog-vv88-promotion-strategy__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-vv88-promotion-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-vv88-promotion-strategy__card-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-vv88-promotion-strategy__sub-title {
        font-size: 1.4em;
    }
    .page-blog-vv88-promotion-strategy__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-blog-vv88-promotion-strategy__faq-answer {
        padding: 15px;
    }
    /* Image responsiveness */
    .page-blog-vv88-promotion-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-vv88-promotion-strategy__hero-image-wrapper,
    .page-blog-vv88-promotion-strategy__image-sidebar,
    .page-blog-vv88-promotion-strategy__cta-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    /* Button responsiveness */
    .page-blog-vv88-promotion-strategy__cta-button,
    .page-blog-vv88-promotion-strategy__card-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-blog-vv88-promotion-strategy__hero-content .page-blog-vv88-promotion-strategy__cta-button,
    .page-blog-vv88-promotion-strategy__cta-section .page-blog-vv88-promotion-strategy__cta-button {
        margin: 0 auto;
        display: block;
    }
    .page-blog-vv88-promotion-strategy__card-button {
        margin: 0 auto;
    }
}