/* style/blog-88king-promotions-analysis.css */

/* Global styles for this page scope */
.page-blog-88king-promotions-analysis {
    background-color: #08160F; /* Background color from custom palette */
    color: #F2FFF6; /* Main text color for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

.page-blog-88king-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-88king-promotions-analysis__section {
    padding: 60px 0;
}

.page-blog-88king-promotions-analysis__section-title {
    font-size: 2.8em;
    color: #F2C14E; /* Gold color for main titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-blog-88king-promotions-analysis__sub-title {
    font-size: 1.8em;
    color: #57E38D; /* Glow color for sub titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-88king-promotions-analysis p {
    margin-bottom: 15px;
    color: #F2FFF6; /* Main text color */
}

.page-blog-88king-promotions-analysis a {
    color: #57E38D; /* Glow color for links */
    text-decoration: none;
}

.page-blog-88king-promotions-analysis a:hover {
    text-decoration: underline;
    color: #F2C14E; /* Gold on hover */
}

/* Buttons */
.page-blog-88king-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-88king-promotions-analysis__btn-primary,
.page-blog-88king-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-88king-promotions-analysis__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-88king-promotions-analysis__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
    transform: translateY(-2px);
}

.page-blog-88king-promotions-analysis__btn-secondary {
    background-color: transparent;
    color: #F2C14E; /* Gold text for secondary button */
    border: 2px solid #F2C14E; /* Gold border */
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-blog-88king-promotions-analysis__btn-secondary:hover {
    background-color: #F2C14E; /* Gold background on hover */
    color: #08160F; /* Dark text on gold */
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.page-blog-88king-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-top: 10px; /* Small padding top, body handles header offset */
    padding-bottom: 60px;
}

.page-blog-88king-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Max height for hero image */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-88king-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-88king-promotions-analysis__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-88king-promotions-analysis__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 font size */
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-blog-88king-promotions-analysis__hero-description {
    font-size: 1.2em;
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 30px;
}

/* Overview Section */
.page-blog-88king-promotions-analysis__overview-section {
    background-color: #0A4B2C; /* Deep Green for a subtle change */
    border-top: 1px solid #1E3A2A; /* Divider color */
    border-bottom: 1px solid #1E3A2A; /* Divider color */
}

.page-blog-88king-promotions-analysis__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-blog-88king-promotions-analysis__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-blog-88king-promotions-analysis__content-wrapper img {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.page-blog-88king-promotions-analysis__text-block {
    flex: 1;
    max-width: 50%;
}

/* Promotions List Section */
.page-blog-88king-promotions-analysis__promotions-list {
    background-color: #08160F; /* Main background color */
}

.page-blog-88king-promotions-analysis__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-88king-promotions-analysis__promo-card {
    background-color: #11271B; /* Card BG color */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-blog-88king-promotions-analysis__promo-card:hover {
    transform: translateY(-5px);
}

.page-blog-88king-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-88king-promotions-analysis__card-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-88king-promotions-analysis__card-description {
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-88king-promotions-analysis__promo-card .page-blog-88king-promotions-analysis__btn-primary,
.page-blog-88king-promotions-analysis__promo-card .page-blog-88king-promotions-analysis__btn-secondary {
    width: 100%;
    margin-top: auto; /* Push button to bottom */
}


/* How-to-Claim Section */
.page-blog-88king-promotions-analysis__how-to-claim {
    background-color: #0A4B2C; /* Deep Green */
    border-top: 1px solid #1E3A2A;
    border-bottom: 1px solid #1E3A2A;
}

/* Tips Section */
.page-blog-88king-promotions-analysis__tips-section {
    background-color: #08160F;
}

.page-blog-88king-promotions-analysis__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-88king-promotions-analysis__tip-item {
    background-color: #11271B;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-blog-88king-promotions-analysis__tip-title {
    font-size: 1.5em;
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: 600;
}

/* FAQ Section */
.page-blog-88king-promotions-analysis__faq-section {
    background-color: #0A4B2C;
    border-top: 1px solid #1E3A2A;
    border-bottom: 1px solid #1E3A2A;
}

.page-blog-88king-promotions-analysis__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-88king-promotions-analysis__faq-item {
    background-color: #11271B;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-88king-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #F2FFF6; /* Main text color */
    background-color: #11271B;
    border-bottom: 1px solid #2E7A4E; /* Border color */
    transition: background-color 0.3s ease;
}

.page-blog-88king-promotions-analysis__faq-question:hover {
    background-color: #1E3A2A; /* Slightly darker on hover */
}

.page-blog-88king-promotions-analysis__faq-item[open] .page-blog-88king-promotions-analysis__faq-question {
    border-bottom-color: transparent; /* No border when open */
}

.page-blog-88king-promotions-analysis__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-blog-88king-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #F2C14E; /* Gold color for toggle */
    transition: transform 0.3s ease;
}

.page-blog-88king-promotions-analysis__faq-item[open] .page-blog-88king-promotions-analysis__faq-toggle {
    transform: rotate(45deg); /* Rotate for minus sign */
}

.page-blog-88king-promotions-analysis__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Secondary text color */
}

/* Hide default details marker */
.page-blog-88king-promotions-analysis__faq-item > summary {
    list-style: none;
}
.page-blog-88king-promotions-analysis__faq-item > summary::-webkit-details-marker {
    display: none;
}


/* Conclusion Section */
.page-blog-88king-promotions-analysis__conclusion-section {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-blog-88king-promotions-analysis__conclusion-text {
    font-size: 1.1em;
    color: #F2FFF6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-blog-88king-promotions-analysis__section-title {
        font-size: 2.2em;
    }
    .page-blog-88king-promotions-analysis__sub-title {
        font-size: 1.5em;
    }
    .page-blog-88king-promotions-analysis__hero-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-blog-88king-promotions-analysis__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-blog-88king-promotions-analysis__content-wrapper img,
    .page-blog-88king-promotions-analysis__text-block {
        max-width: 100%;
    }
    .page-blog-88king-promotions-analysis__content-wrapper--reversed {
        flex-direction: column; /* Revert to column for mobile */
    }
}

@media (max-width: 768px) {
    .page-blog-88king-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-88king-promotions-analysis__section {
        padding: 40px 0;
    }
    .page-blog-88king-promotions-analysis__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-88king-promotions-analysis__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-88king-promotions-analysis__hero-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-blog-88king-promotions-analysis__hero-description {
        font-size: 1em;
    }
    .page-blog-88king-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-88king-promotions-analysis__btn-primary,
    .page-blog-88king-promotions-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Mobile image responsiveness */
    .page-blog-88king-promotions-analysis img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-blog-88king-promotions-analysis__section,
    .page-blog-88king-promotions-analysis__card,
    .page-blog-88king-promotions-analysis__container,
    .page-blog-88king-promotions-analysis__content-wrapper,
    .page-blog-88king-promotions-analysis__hero-image-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important; /* Prevent content overflow */
    }
    
    .page-blog-88king-promotions-analysis__hero-section {
        padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
    }

    .page-blog-88king-promotions-analysis__promo-cards,
    .page-blog-88king-promotions-analysis__tips-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-88king-promotions-analysis__promo-card {
        padding: 20px;
    }
    .page-blog-88king-promotions-analysis__card-image {
        height: 180px;
    }
    .page-blog-88king-promotions-analysis__faq-question {
        font-size: 1.05em;
        padding: 15px 20px;
    }
    .page-blog-88king-promotions-analysis__faq-answer {
        padding: 0 20px 15px 20px;
    }
}