/* style/blog-fv88-win-latest-promotions-analysis.css */

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

/* body 已 padding-top: var(--header-offset)；页面禁止再写该变量 */
.page-blog-fv88-win-latest-promotions-analysis {
    background-color: var(--fv88-background);
    color: var(--fv88-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-blog-fv88-win-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px 60px;
    background-color: var(--fv88-deep-green); /* Example background for hero */
    box-sizing: border-box;
}

.page-blog-fv88-win-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image wrapper */
    margin-bottom: 30px;
    position: relative;
}

.page-blog-fv88-win-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-fv88-win-latest-promotions-analysis__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-fv88-win-latest-promotions-analysis__hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
    color: var(--fv88-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-fv88-win-latest-promotions-analysis__hero-content p {
    font-size: 1.1rem;
    color: var(--fv88-text-secondary);
    margin-bottom: 30px;
}

.page-blog-fv88-win-latest-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-blog-fv88-win-latest-promotions-analysis__btn-primary,
.page-blog-fv88-win-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Ensure long words break */
    text-align: center;
}

.page-blog-fv88-win-latest-promotions-analysis__btn-primary {
    background: var(--fv88-button-gradient);
    color: var(--fv88-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-fv88-win-latest-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-fv88-win-latest-promotions-analysis__btn-secondary {
    background: transparent;
    color: var(--fv88-gold);
    border: 2px solid var(--fv88-gold);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-blog-fv88-win-latest-promotions-analysis__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-blog-fv88-win-latest-promotions-analysis__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-fv88-win-latest-promotions-analysis__section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--fv88-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-fv88-win-latest-promotions-analysis__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--fv88-gold);
    border-radius: 2px;
}

.page-blog-fv88-win-latest-promotions-analysis__section h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--fv88-secondary);
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    border-left: 5px solid var(--fv88-gold);
    padding-left: 15px;
}

.page-blog-fv88-win-latest-promotions-analysis__section h4 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--fv88-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-fv88-win-latest-promotions-analysis__text-block {
    color: var(--fv88-text-main);
    font-size: 1rem;
    margin-bottom: 20px;
}

.page-blog-fv88-win-latest-promotions-analysis__text-block p {
    margin-bottom: 15px;
}

.page-blog-fv88-win-latest-promotions-analysis__image-container {
    text-align: center;
    margin: 40px 0;
}

.page-blog-fv88-win-latest-promotions-analysis__image-container img {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

/* Card styles for promotions */
.page-blog-fv88-win-latest-promotions-analysis__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-fv88-win-latest-promotions-analysis__card {
    background-color: var(--fv88-card-bg);
    border: 1px solid var(--fv88-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--fv88-text-main);
}

.page-blog-fv88-win-latest-promotions-analysis__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-fv88-win-latest-promotions-analysis__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-fv88-win-latest-promotions-analysis__card-title {
    font-size: 1.4rem;
    color: var(--fv88-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-fv88-win-latest-promotions-analysis__card-description {
    font-size: 0.95rem;
    color: var(--fv88-text-secondary);
    flex-grow: 1;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-fv88-win-latest-promotions-analysis__faq-list {
    margin-top: 30px;
}

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

.page-blog-fv88-win-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--fv88-gold);
    background-color: var(--fv88-deep-green);
    border-bottom: 1px solid var(--fv88-border);
}

.page-blog-fv88-win-latest-promotions-analysis__faq-question:hover {
    background-color: var(--fv88-primary);
}

.page-blog-fv88-win-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-fv88-win-latest-promotions-analysis__faq-item[open] .page-blog-fv88-win-latest-promotions-analysis__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-fv88-win-latest-promotions-analysis__faq-answer {
    padding: 15px 25px;
    font-size: 0.95rem;
    color: var(--fv88-text-secondary);
    line-height: 1.7;
}

/* Terms and Conditions Section */
.page-blog-fv88-win-latest-promotions-analysis__terms-conditions-content {
    background-color: var(--fv88-card-bg);
    border: 1px solid var(--fv88-border);
    border-radius: 12px;
    padding: 30px;
    color: var(--fv88-text-secondary);
    font-size: 0.95rem;
}

.page-blog-fv88-win-latest-promotions-analysis__terms-conditions-content ul {
    list-style: disc;
    margin-left: 20px;
}

.page-blog-fv88-win-latest-promotions-analysis__terms-conditions-content li {
    margin-bottom: 10px;
}

/* Call to Action Section */
.page-blog-fv88-win-latest-promotions-analysis__call-to-action {
    text-align: center;
    background-color: var(--fv88-deep-green);
    padding: 60px 20px;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 1200px;
    box-sizing: border-box;
}

.page-blog-fv88-win-latest-promotions-analysis__call-to-action h2 {
    color: var(--fv88-gold);
    margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-blog-fv88-win-latest-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-fv88-win-latest-promotions-analysis__hero-section {
        padding: 60px 15px 40px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__hero-content h1 {
        font-size: 2.2rem;
    }

    .page-blog-fv88-win-latest-promotions-analysis__hero-content p {
        font-size: 1rem;
    }

    .page-blog-fv88-win-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__btn-primary,
    .page-blog-fv88-win-latest-promotions-analysis__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-blog-fv88-win-latest-promotions-analysis__section {
        padding: 40px 15px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__section h3 {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__section h4 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Images */
    .page-blog-fv88-win-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-fv88-win-latest-promotions-analysis__image-container,
    .page-blog-fv88-win-latest-promotions-analysis__promotions-overview,
    .page-blog-fv88-win-latest-promotions-analysis__offer-section,
    .page-blog-fv88-win-latest-promotions-analysis__how-to-claim,
    .page-blog-fv88-win-latest-promotions-analysis__faq-section,
    .page-blog-fv88-win-latest-promotions-analysis__terms-conditions,
    .page-blog-fv88-win-latest-promotions-analysis__call-to-action {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    .page-blog-fv88-win-latest-promotions-analysis__card {
        padding: 20px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__card-image {
        height: 180px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__card-title {
        font-size: 1.2rem;
    }

    .page-blog-fv88-win-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-fv88-win-latest-promotions-analysis__faq-answer {
        padding: 10px 20px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__terms-conditions-content {
        padding: 20px;
    }

    .page-blog-fv88-win-latest-promotions-analysis__call-to-action {
        padding: 40px 15px;
        margin: 40px auto;
    }

    /* Video responsiveness (template, not used on this page) */
    .page-blog-fv88-win-latest-promotions-analysis video,
    .page-blog-fv88-win-latest-promotions-analysis__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-blog-fv88-win-latest-promotions-analysis__video-section,
    .page-blog-fv88-win-latest-promotions-analysis__video-container,
    .page-blog-fv88-win-latest-promotions-analysis__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    
    .page-blog-fv88-win-latest-promotions-analysis__video-section {
      padding-top: 10px !important;
    }
    
    .page-blog-fv88-win-latest-promotions-analysis__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }
}