/* style/promotions-limited-time-offer-announcement.css */
.page-promotions-limited-time-offer-announcement {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for main text */
    background-color: #1A2A3A; /* Main dark background */
    line-height: 1.6;
}

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

.page-promotions-limited-time-offer-announcement__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #FFFFFF;
}

.page-promotions-limited-time-offer-announcement__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-promotions-limited-time-offer-announcement__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 42, 58, 0.7), rgba(26, 42, 58, 0.9));
    z-index: 2;
}

.page-promotions-limited-time-offer-announcement__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.page-promotions-limited-time-offer-announcement__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-offer-announcement__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-promotions-limited-time-offer-announcement__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2A3A;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-limited-time-offer-announcement__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-limited-time-offer-announcement__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    position: relative;
}

.page-promotions-limited-time-offer-announcement__section-title .highlight {
    color: #FFD700;
}

.page-promotions-limited-time-offer-announcement__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-promotions-limited-time-offer-announcement__intro {
    padding: 60px 0;
    background-color: #1A2A3A;
}

.page-promotions-limited-time-offer-announcement__text-content {
    font-size: 1.1em;
    color: #E0E0E0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.page-promotions-limited-time-offer-announcement__offers-grid {
    padding: 60px 0;
    background-color: #0F1A24; /* Slightly lighter dark for contrast */
}

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

.page-promotions-limited-time-offer-announcement__offer-card {
    background-color: #1A2A3A;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions-limited-time-offer-announcement__offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    object-fit: contain;
}

.page-promotions-limited-time-offer-announcement__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-limited-time-offer-announcement__card-description {
    color: #C0C0C0;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-limited-time-offer-announcement__card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.page-promotions-limited-time-offer-announcement__card-features li {
    color: #E0E0E0;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.page-promotions-limited-time-offer-announcement__card-features li i {
    color: #FFD700;
    margin-right: 10px;
}

.page-promotions-limited-time-offer-announcement__card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2A3A;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: auto; /* Pushes button to bottom */
}

.page-promotions-limited-time-offer-announcement__card-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-limited-time-offer-announcement__why-99win {
    padding: 80px 0;
    background-color: #1A2A3A;
}

.page-promotions-limited-time-offer-announcement__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.page-promotions-limited-time-offer-announcement__feature-item {
    background-color: #0F1A24;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-offer-announcement__feature-item:hover {
    transform: translateY(-5px);
}

.page-promotions-limited-time-offer-announcement__feature-icon {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promotions-limited-time-offer-announcement__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-limited-time-offer-announcement__feature-description {
    color: #C0C0C0;
    font-size: 1em;
}

.page-promotions-limited-time-offer-announcement__faq {
    padding: 80px 0;
    background-color: #0F1A24;
}

.page-promotions-limited-time-offer-announcement__faq-item {
    background-color: #1A2A3A;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offer-announcement__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-limited-time-offer-announcement__faq-question::after {
    content: '\25B6'; /* Right arrow */
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-offer-announcement__faq-question.active::after {
    content: '\25BC'; /* Down arrow */
    transform: rotate(90deg);
}

.page-promotions-limited-time-offer-announcement__faq-answer {
    color: #C0C0C0;
    font-size: 1em;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 15px;
}

.page-promotions-limited-time-offer-announcement__faq-answer.active {
    display: block;
}

.page-promotions-limited-time-offer-announcement__cta-bottom {
    padding: 80px 0;
    background-color: #1A2A3A;
    text-align: center;
}

.page-promotions-limited-time-offer-announcement__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-promotions-limited-time-offer-announcement__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions-limited-time-offer-announcement__button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.page-promotions-limited-time-offer-announcement__button--primary {
    background-color: #FFD700;
    color: #1A2A3A;
    border: 2px solid #FFD700;
}

.page-promotions-limited-time-offer-announcement__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-limited-time-offer-announcement__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-limited-time-offer-announcement__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2A3A;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-limited-time-offer-announcement__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-limited-time-offer-announcement__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-limited-time-offer-announcement__section-title {
        font-size: 2.2em;
    }
    .page-promotions-limited-time-offer-announcement__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-limited-time-offer-announcement__hero {
        height: 500px;
    }
    .page-promotions-limited-time-offer-announcement__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-limited-time-offer-announcement__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-limited-time-offer-announcement__hero-button,
    .page-promotions-limited-time-offer-announcement__button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-promotions-limited-time-offer-announcement__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-promotions-limited-time-offer-announcement__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-limited-time-offer-announcement__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-limited-time-offer-announcement__hero {
        height: 400px;
    }
    .page-promotions-limited-time-offer-announcement__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-offer-announcement__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-limited-time-offer-announcement__hero-button,
    .page-promotions-limited-time-offer-announcement__button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-promotions-limited-time-offer-announcement__section-title {
        font-size: 1.5em;
        padding-top: 40px;
    }
    .page-promotions-limited-time-offer-announcement__intro,
    .page-promotions-limited-time-offer-announcement__offers-grid,
    .page-promotions-limited-time-offer-announcement__why-99win,
    .page-promotions-limited-time-offer-announcement__faq,
    .page-promotions-limited-time-offer-announcement__cta-bottom {
        padding: 40px 0;
    }
    .page-promotions-limited-time-offer-announcement__grid,
    .page-promotions-limited-time-offer-announcement__features {
        gap: 20px;
    }
    .page-promotions-limited-time-offer-announcement__offer-card,
    .page-promotions-limited-time-offer-announcement__feature-item,
    .page-promotions-limited-time-offer-announcement__faq-item {
        padding: 20px;
    }
    .page-promotions-limited-time-offer-announcement__card-title {
        font-size: 1.5em;
    }
    .page-promotions-limited-time-offer-announcement__feature-title {
        font-size: 1.3em;
    }
    .page-promotions-limited-time-offer-announcement__faq-question {
        font-size: 1em;
    }
}