/* style/resources-90ok-latest-promotions.css */

.page-resources-90ok-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-resources-90ok-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-90ok-latest-promotions__hero-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-90ok-latest-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-resources-90ok-latest-promotions__hero-section .page-resources-90ok-latest-promotions__container {
    position: relative;
    z-index: 2;
}

.page-resources-90ok-latest-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-resources-90ok-latest-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-90ok-latest-promotions__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-resources-90ok-latest-promotions__content-area {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-90ok-latest-promotions__section-title {
    font-size: 2.5em;
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #28a745;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-resources-90ok-latest-promotions__sub-section-title {
    font-size: 1.8em;
    color: #28a745;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-90ok-latest-promotions p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-resources-90ok-latest-promotions__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

.page-resources-90ok-latest-promotions__list li {
    margin-bottom: 8px;
}

.page-resources-90ok-latest-promotions__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
}

.page-resources-90ok-latest-promotions__btn--primary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-resources-90ok-latest-promotions__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.page-resources-90ok-latest-promotions__btn--secondary {
    background-color: #28a745;
    color: #fff;
    border: 2px solid #28a745;
    margin-right: 15px;
}

.page-resources-90ok-latest-promotions__btn--secondary:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.page-resources-90ok-latest-promotions__btn--large {
    padding: 18px 35px;
    font-size: 1.3em;
    margin-top: 40px;
}

.page-resources-90ok-latest-promotions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-90ok-latest-promotions__image--full-width {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-90ok-latest-promotions__image--left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    width: 40%;
}

.page-resources-90ok-latest-promotions__image--right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
    width: 40%;
}

/* Floating Ad */
.page-resources-90ok-latest-promotions__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.page-resources-90ok-latest-promotions__floating-ad.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-resources-90ok-latest-promotions__close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    line-height: 1;
}

.page-resources-90ok-latest-promotions__ad-text {
    margin: 0;
    font-size: 1.1em;
    font-weight: 500;
    color: #fff;
}

.page-resources-90ok-latest-promotions__btn--ad {
    background-color: #28a745;
    color: #fff;
    border: 1px solid #28a745;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-90ok-latest-promotions__btn--ad:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-90ok-latest-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-resources-90ok-latest-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-90ok-latest-promotions__section-title {
        font-size: 2em;
    }
    .page-resources-90ok-latest-promotions__sub-section-title {
        font-size: 1.6em;
    }
    .page-resources-90ok-latest-promotions__image--left,
    .page-resources-90ok-latest-promotions__image--right {
        width: 100%;
        float: none;
        margin: 20px 0;
    }
    .page-resources-90ok-latest-promotions__floating-ad {
        flex-direction: column;
        text-align: center;
        right: 10px;
        left: 10px;
        bottom: 10px;
        padding: 15px;
    }
    .page-resources-90ok-latest-promotions__btn--ad {
        width: 100%;
        box-sizing: border-box;
    }
    .page-resources-90ok-latest-promotions__close-btn {
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 768px) {
    .page-resources-90ok-latest-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-resources-90ok-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-90ok-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-resources-90ok-latest-promotions__sub-section-title {
        font-size: 1.4em;
    }
    .page-resources-90ok-latest-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-90ok-latest-promotions__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-resources-90ok-latest-promotions__content-area {
        padding: 20px;
    }
}