/* style/promotions-limited-time-offers.css */

:root {
    --fb88-primary-color: #0A1931;
    --fb88-secondary-color: #E6B325;
    --fb88-text-light: #FFFFFF;
    --fb88-text-dark: #333333;
    --fb88-bg-dark: #0A1931;
    --fb88-bg-light: #F8F8F8;
    --fb88-accent-gold: #E6B325;
    --fb88-button-hover: #CC9900;
    --fb88-border-color: #334466;
}

.page-promotions-limited-time-offers {
    font-family: 'Arial', sans-serif;
    color: var(--fb88-text-dark);
    line-height: 1.6;
    background-color: var(--fb88-bg-light);
}

.page-promotions-limited-time-offers__hero {
    background: linear-gradient(135deg, var(--fb88-bg-dark), var(--fb88-secondary-color));
    color: var(--fb88-text-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.page-promotions-limited-time-offers__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-limited-time-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--fb88-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-offers__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.8;
}

.page-promotions-limited-time-offers__hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-top: 30px;
}

.page-promotions-limited-time-offers__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-limited-time-offers__section-title {
    font-size: 2.8em;
    color: var(--fb88-primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-promotions-limited-time-offers__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--fb88-secondary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-promotions-limited-time-offers__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--fb88-text-dark);
}

.page-promotions-limited-time-offers__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions-limited-time-offers__offer-card {
    background-color: var(--fb88-text-light);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

.page-promotions-limited-time-offers__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions-limited-time-offers__offer-title {
    font-size: 1.6em;
    color: var(--fb88-primary-color);
    margin: 0 20px 15px 20px;
    line-height: 1.4;
}

.page-promotions-limited-time-offers__offer-description {
    font-size: 1em;
    color: var(--fb88-text-dark);
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-promotions-limited-time-offers__countdown {
    font-weight: bold;
    color: var(--fb88-secondary-color);
    font-size: 1.1em;
    margin: 0 20px 20px 20px;
}

.page-promotions-limited-time-offers__button {
    display: inline-block;
    background-color: var(--fb88-secondary-color);
    color: var(--fb88-bg-dark);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin: 0 20px;
    text-align: center;
}

.page-promotions-limited-time-offers__button:hover {
    background-color: var(--fb88-button-hover);
    transform: translateY(-3px);
}

.page-promotions-limited-time-offers__button--primary {
    background-color: var(--fb88-secondary-color);
    color: var(--fb88-bg-dark);
    padding: 16px 40px;
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(230, 179, 37, 0.4);
}

.page-promotions-limited-time-offers__button--primary:hover {
    background-color: var(--fb88-button-hover);
}

.page-promotions-limited-time-offers__button--secondary {
    background-color: var(--fb88-primary-color);
    color: var(--fb88-text-light);
    border: 2px solid var(--fb88-secondary-color);
    padding: 14px 30px;
    font-size: 1.1em;
}

.page-promotions-limited-time-offers__button--secondary:hover {
    background-color: #1a2a47;
    border-color: var(--fb88-button-hover);
}

.page-promotions-limited-time-offers__how-to-participate {
    background-color: #f0f4f8;
    border-top: 1px solid #e0e0e0;
}

.page-promotions-limited-time-offers__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-limited-time-offers__steps-list li {
    background-color: var(--fb88-text-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    counter-increment: step-counter;
}

.page-promotions-limited-time-offers__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--fb88-secondary-color);
    color: var(--fb88-bg-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 3px solid var(--fb88-text-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__step-title {
    font-size: 1.4em;
    color: var(--fb88-primary-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

.page-promotions-limited-time-offers__steps-list li p a {
    color: var(--fb88-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-limited-time-offers__steps-list li p a:hover {
    text-decoration: underline;
    color: var(--fb88-secondary-color);
}

.page-promotions-limited-time-offers__why-fb88 {
    background-color: var(--fb88-bg-dark);
    color: var(--fb88-text-light);
    padding: 80px 20px;
}

.page-promotions-limited-time-offers__why-fb88 .page-promotions-limited-time-offers__section-title {
    color: var(--fb88-text-light);
}

.page-promotions-limited-time-offers__why-fb88 .page-promotions-limited-time-offers__section-intro {
    color: #cccccc;
}

.page-promotions-limited-time-offers__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-limited-time-offers__feature-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-promotions-limited-time-offers__feature-item:hover {
    background-color: #2a3d5c;
}

.page-promotions-limited-time-offers__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px var(--fb88-secondary-color));
}

.page-promotions-limited-time-offers__feature-title {
    font-size: 1.5em;
    color: var(--fb88-secondary-color);
    margin-bottom: 15px;
}

.page-promotions-limited-time-offers__feature-item p {
    color: #e0e0e0;
}

.page-promotions-limited-time-offers__faq {
    padding-bottom: 80px;
}

.page-promotions-limited-time-offers__accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--fb88-border-color);
    border-radius: 10px;
    overflow: hidden;
}

.page-promotions-limited-time-offers__accordion-header {
    background-color: var(--fb88-primary-color);
    color: var(--fb88-text-light);
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-limited-time-offers__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-limited-time-offers__accordion-header:hover {
    background-color: #1a2a47;
}

.page-promotions-limited-time-offers__accordion-content {
    padding: 0 25px;
    background-color: var(--fb88-bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-limited-time-offers__accordion-content.active {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 20px 25px;
}

.page-promotions-limited-time-offers__accordion-content p {
    color: var(--fb88-text-dark);
    margin-bottom: 0;
}

.page-promotions-limited-time-offers__cta-bottom {
    background: linear-gradient(135deg, var(--fb88-secondary-color), var(--fb88-primary-color));
    color: var(--fb88-text-light);
    padding: 80px 20px;
    text-align: center;
}

.page-promotions-limited-time-offers__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--fb88-bg-dark);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-promotions-limited-time-offers__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--fb88-bg-dark);
}

.page-promotions-limited-time-offers__cta-description a {
    color: var(--fb88-bg-dark);
    font-weight: bold;
    text-decoration: underline;
}

.page-promotions-limited-time-offers__cta-description a:hover {
    color: var(--fb88-text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-limited-time-offers__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-limited-time-offers__section-title {
        font-size: 2.2em;
    }
    .page-promotions-limited-time-offers__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-limited-time-offers__hero {
        flex-direction: column;
        padding: 60px 15px;
    }
    .page-promotions-limited-time-offers__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-limited-time-offers__hero-description {
        font-size: 1em;
    }
    .page-promotions-limited-time-offers__section {
        padding: 40px 15px;
    }
    .page-promotions-limited-time-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-offers__section-intro {
        font-size: 0.95em;
    }
    .page-promotions-limited-time-offers__offers-grid,
    .page-promotions-limited-time-offers__features-grid,
    .page-promotions-limited-time-offers__steps-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-limited-time-offers__offer-title {
        font-size: 1.4em;
    }
    .page-promotions-limited-time-offers__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-limited-time-offers__button--primary {
        padding: 14px 30px;
        font-size: 1.1em;
    }
    .page-promotions-limited-time-offers__cta-title {
        font-size: 2em;
    }
    .page-promotions-limited-time-offers__cta-description {
        font-size: 1em;
    }
    .page-promotions-limited-time-offers__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions-limited-time-offers__accordion-content {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-limited-time-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-offers__button--primary {
        width: 100%;
        margin: 0;
    }
    .page-promotions-limited-time-offers__offer-card .page-promotions-limited-time-offers__button {
        width: calc(100% - 40px);
    }
    .page-promotions-limited-time-offers__cta-title {
        font-size: 1.6em;
    }
}