/* style/resources-promotion-analysis.css */

/* Base styles for the page content */
.page-resources-promotion-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on light background */
    background-color: #ffffff; /* Default light background */
}

/* Hero Section */
.page-resources-promotion-analysis__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff; /* White text for contrast */
    gap: 40px;
}

.page-resources-promotion-analysis__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-promotion-analysis__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-resources-promotion-analysis__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-promotion-analysis__hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-resources-promotion-analysis__hero-media {
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-promotion-analysis__video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* General Section Styles */
.page-resources-promotion-analysis__section {
    padding: 60px 20px;
    margin-bottom: 20px;
}

.page-resources-promotion-analysis__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand primary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-promotion-analysis__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-resources-promotion-analysis__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-resources-promotion-analysis__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-promotion-analysis__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.page-resources-promotion-analysis__btn-primary,
.page-resources-promotion-analysis__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-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-promotion-analysis__btn-primary {
    background-color: #EA7C07; /* Login/Primary CTA color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-resources-promotion-analysis__btn-primary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
    transform: translateY(-2px);
}

.page-resources-promotion-analysis__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-resources-promotion-analysis__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
    transform: translateY(-2px);
}

.page-resources-promotion-analysis__btn-centered {
    display: block;
    margin: 40px auto 20px auto;
    max-width: 350px; /* Limit width for centered buttons */
}

.page-resources-promotion-analysis__btn-large {
    padding: 18px 35px;
    font-size: 1.3em;
}

/* List Styles */
.page-resources-promotion-analysis__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.page-resources-promotion-analysis__list-item {
    background-color: #f9f9f9;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid #26A9E0;
    font-size: 1.05em;
    color: #333333;
}

.page-resources-promotion-analysis__list-item strong {
    color: #26A9E0;
}

/* Step-by-step Guide Styles */
.page-resources-promotion-analysis__steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-promotion-analysis__step-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 5px solid #26A9E0;
}

.page-resources-promotion-analysis__step-item:hover {
    transform: translateY(-5px);
}

.page-resources-promotion-analysis__step-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources-promotion-analysis__step-description {
    font-size: 1em;
    color: #555555;
}

/* Game List Styles */
.page-resources-promotion-analysis__game-list .page-resources-promotion-analysis__list-item {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-left-color: #EA7C07;
}

.page-resources-promotion-analysis__game-list .page-resources-promotion-analysis__list-item strong {
    color: #EA7C07;
}

/* Benefits Grid Styles */
.page-resources-promotion-analysis__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-promotion-analysis__benefit-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-resources-promotion-analysis__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-promotion-analysis__card-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources-promotion-analysis__card-description {
    font-size: 1em;
    color: #555555;
}

/* FAQ Section Styles */
.page-resources-promotion-analysis__faq-list {
    margin-top: 40px;
}

.page-resources-promotion-analysis__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-promotion-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-resources-promotion-analysis__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-promotion-analysis__faq-title {
    font-size: 1.2em;
    color: #26A9E0;
    margin: 0;
    flex-grow: 1;
}

.page-resources-promotion-analysis__faq-toggle {
    font-size: 1.8em;
    color: #26A9E0;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.page-resources-promotion-analysis__faq-item.active .page-resources-promotion-analysis__faq-toggle {
    transform: rotate(45deg); /* Changes '+' to 'x' visually */
}

.page-resources-promotion-analysis__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fdfdfd;
    color: #555555;
}

.page-resources-promotion-analysis__faq-item.active .page-resources-promotion-analysis__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-resources-promotion-analysis__faq-answer .page-resources-promotion-analysis__text-block {
    margin-bottom: 0; /* Remove extra margin for paragraphs inside FAQ answer */
}

/* Color Contrast Specifics */
.page-resources-promotion-analysis__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources-promotion-analysis__dark-section .page-resources-promotion-analysis__section-title {
    color: #ffffff;
}

.page-resources-promotion-analysis__dark-section .page-resources-promotion-analysis__section-title::after {
    background-color: #ffffff;
}

.page-resources-promotion-analysis__dark-section .page-resources-promotion-analysis__text-block {
    color: #f0f0f0;
}

.page-resources-promotion-analysis__light-bg {
    background-color: #f5f5f5; /* Light grey background */
    color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-promotion-analysis__hero-title {
        font-size: 2.5em;
    }

    .page-resources-promotion-analysis__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-promotion-analysis__hero-section {
        flex-direction: column;
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Specific mobile rule for hero/video section */
    }

    .page-resources-promotion-analysis__hero-title {
        font-size: 2em;
    }

    .page-resources-promotion-analysis__hero-description {
        font-size: 1em;
    }

    .page-resources-promotion-analysis__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Constrain buttons to prevent overflow */
        margin: 0 auto;
    }
}