/* style/resources-win55-latest-promotions-analysis.css */

:root {
    --page-primary-color: #1A2B4C;
    --page-secondary-color: #FFD700;
    --page-text-light: #f8f8f8;
    --page-text-dark: #333333;
    --page-background-light: #ffffff;
    --page-background-dark: #122038;
    --page-accent-color: #e5d4b3; /* Complementary to primary */
    --page-highlight-color: #0028ff; /* Complementary to secondary */
}

.page-resources-win55-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.page-resources-win55-latest-promotions-analysis .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-win55-latest-promotions-analysis .hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, var(--page-background-dark) 100%);
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-win55-latest-promotions-analysis .hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--page-secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: floatEffect 10s ease-in-out infinite;
}

.page-resources-win55-latest-promotions-analysis .hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--page-accent-color) 0%, transparent 70%);
    opacity: 0.15;
    animation: floatEffect 12s reverse ease-in-out infinite;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
    100% { transform: translate(0, 0); }
}

.page-resources-win55-latest-promotions-analysis .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-win55-latest-promotions-analysis .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-text-light);
}

.page-resources-win55-latest-promotions-analysis .hero-ctas .btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    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);
}

.page-resources-win55-latest-promotions-analysis .hero-ctas .btn-primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-win55-latest-promotions-analysis .hero-ctas .btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
}

.page-resources-win55-latest-promotions-analysis .hero-ctas .btn-secondary {
    background-color: transparent;
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-win55-latest-promotions-analysis .hero-ctas .btn-secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-3px);
}

.page-resources-win55-latest-promotions-analysis .content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

.page-resources-win55-latest-promotions-analysis .content-section:last-of-type {
    border-bottom: none;
}

.page-resources-win55-latest-promotions-analysis .content-section h2 {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-win55-latest-promotions-analysis .content-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-resources-win55-latest-promotions-analysis .content-section h3 {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-secondary-color);
    padding-left: 15px;
}

.page-resources-win55-latest-promotions-analysis .content-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-text-dark);
}

.page-resources-win55-latest-promotions-analysis .content-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-resources-win55-latest-promotions-analysis .content-section ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--page-text-dark);
}

.page-resources-win55-latest-promotions-analysis .promotion-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-resources-win55-latest-promotions-analysis .promotion-img:hover {
    transform: translateY(-5px);
}

.page-resources-win55-latest-promotions-analysis .btn {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-resources-win55-latest-promotions-analysis .btn-primary {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
    border: 2px solid var(--page-primary-color);
}

.page-resources-win55-latest-promotions-analysis .btn-primary:hover {
    background-color: var(--page-background-dark);
    border-color: var(--page-background-dark);
    transform: translateY(-2px);
}

.page-resources-win55-latest-promotions-analysis .btn-secondary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-win55-latest-promotions-analysis .btn-secondary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-resources-win55-latest-promotions-analysis .faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-win55-latest-promotions-analysis .faq-item h3 {
    color: var(--page-primary-color);
    margin-top: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5em;
    border-left: none;
    padding-left: 0;
}

.page-resources-win55-latest-promotions-analysis .faq-item p {
    margin-top: 15px;
    padding-left: 0;
    font-size: 1em;
    color: var(--page-text-dark);
}

.page-resources-win55-latest-promotions-analysis .conclusion-section {
    text-align: center;
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
    padding: 80px 0;
}

.page-resources-win55-latest-promotions-analysis .conclusion-section h2 {
    color: var(--page-secondary-color);
}

.page-resources-win55-latest-promotions-analysis .conclusion-section p {
    color: var(--page-text-light);
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
}

.page-resources-win55-latest-promotions-analysis .conclusion-ctas .btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-win55-latest-promotions-analysis .hero-section h1 {
        font-size: 2.5em;
    }

    .page-resources-win55-latest-promotions-analysis .hero-section p {
        font-size: 1em;
    }

    .page-resources-win55-latest-promotions-analysis .hero-ctas .btn {
        padding: 12px 20px;
        font-size: 1em;
        margin: 10px 5px;
    }

    .page-resources-win55-latest-promotions-analysis .content-section h2 {
        font-size: 2em;
    }

    .page-resources-win55-latest-promotions-analysis .content-section h3 {
        font-size: 1.5em;
    }

    .page-resources-win55-latest-promotions-analysis .content-section p {
        font-size: 0.95em;
    }

    .page-resources-win55-latest-promotions-analysis .faq-item h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-win55-latest-promotions-analysis .hero-section h1 {
        font-size: 2em;
    }

    .page-resources-win55-latest-promotions-analysis .hero-ctas {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

    .page-resources-win55-latest-promotions-analysis .hero-ctas .btn {
        width: 90%;
        margin-bottom: 15px;
    }

    .page-resources-win55-latest-promotions-analysis .conclusion-ctas .btn {
        width: 90%;
        margin-bottom: 15px;
    }
}