/* style/promotions-limited-time-events-rewards.css */
.page-promotions-limited-time-events-rewards {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light gray for general text on dark background */
    background-color: #001a33; /* Darker variant of main color for overall background */
}

.page-promotions-limited-time-events-rewards__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-limited-time-events-rewards__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Main color gradient */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-promotions-limited-time-events-rewards__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

.page-promotions-limited-time-events-rewards__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-limited-time-events-rewards__hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions-limited-time-events-rewards__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-promotions-limited-time-events-rewards__btn--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Main color for text */
    border: 2px solid #FFCC00;
}

.page-promotions-limited-time-events-rewards__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-promotions-limited-time-events-rewards__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Auxiliary color */
    border: 2px solid #FFCC00;
}

.page-promotions-limited-time-events-rewards__btn--secondary:hover {
    background-color: rgba(255, 204, 0, 0.1);
    transform: translateY(-3px);
}

.page-promotions-limited-time-events-rewards__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions-limited-time-events-rewards__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-promotions-limited-time-events-rewards__intro,
.page-promotions-limited-time-events-rewards__featured-events,
.page-promotions-limited-time-events-rewards__how-to-claim,
.page-promotions-limited-time-events-rewards__why-vn68,
.page-promotions-limited-time-events-rewards__faq,
.page-promotions-limited-time-events-rewards__cta-bottom {
    padding: 60px 0;
    background-color: #001a33;
}

.page-promotions-limited-time-events-rewards__intro {
    background-color: #002244; /* Slightly lighter dark blue */
    border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.page-promotions-limited-time-events-rewards__section-title {
    font-size: 2.8em;
    color: #FFCC00; /* Auxiliary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-limited-time-events-rewards__text {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-promotions-limited-time-events-rewards__text a {
    color: #FFCC00;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-limited-time-events-rewards__text a:hover {
    text-decoration: underline;
}

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

.page-promotions-limited-time-events-rewards__event-card {
    background-color: #003366; /* Main color for cards */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions-limited-time-events-rewards__event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions-limited-time-events-rewards__event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFCC00;
}

.page-promotions-limited-time-events-rewards__event-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions-limited-time-events-rewards__event-title {
    font-size: 1.6em;
    color: #FFCC00; /* Auxiliary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-limited-time-events-rewards__event-description {
    font-size: 1em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-limited-time-events-rewards__event-description a {
    color: #FFCC00;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-limited-time-events-rewards__event-description a:hover {
    text-decoration: underline;
}

.page-promotions-limited-time-events-rewards__how-to-claim {
    background-color: #002244;
}

.page-promotions-limited-time-events-rewards__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-limited-time-events-rewards__steps-list li {
    background-color: #003366;
    border-left: 5px solid #FFCC00;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-events-rewards__step-title {
    font-size: 1.4em;
    color: #FFCC00;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-limited-time-events-rewards__steps-list p {
    font-size: 1em;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-promotions-limited-time-events-rewards__why-vn68 {
    background-color: #001a33;
    border-top: 1px solid rgba(255, 204, 0, 0.1);
}

.page-promotions-limited-time-events-rewards__why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-promotions-limited-time-events-rewards__why-item {
    background-color: #003366;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-events-rewards__why-item:hover {
    transform: translateY(-8px);
}

.page-promotions-limited-time-events-rewards__why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-promotions-limited-time-events-rewards__why-title {
    font-size: 1.3em;
    color: #FFCC00;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-limited-time-events-rewards__why-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-promotions-limited-time-events-rewards__faq {
    background-color: #002244;
}

.page-promotions-limited-time-events-rewards__accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-limited-time-events-rewards__accordion-item {
    background-color: #003366;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-events-rewards__accordion-header {
    width: 100%;
    background-color: #003d73; /* Slightly lighter main color for header */
    color: #FFCC00;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-limited-time-events-rewards__accordion-header:hover {
    background-color: #004787;
}

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

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

.page-promotions-limited-time-events-rewards__accordion-content {
    padding: 0 25px;
    background-color: #003366;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-limited-time-events-rewards__accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-promotions-limited-time-events-rewards__accordion-content p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1em;
}

.page-promotions-limited-time-events-rewards__accordion-content a {
    color: #FFCC00;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-limited-time-events-rewards__accordion-content a:hover {
    text-decoration: underline;
}

.page-promotions-limited-time-events-rewards__cta-bottom {
    background-color: #003366; /* Main color for bottom CTA */
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 204, 0, 0.1);
}

.page-promotions-limited-time-events-rewards__cta-bottom .page-promotions-limited-time-events-rewards__section-title {
    color: #ffffff;
}

.page-promotions-limited-time-events-rewards__cta-bottom .page-promotions-limited-time-events-rewards__text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.highlight {
    color: #FFCC00;
}

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

@media (max-width: 768px) {
    .page-promotions-limited-time-events-rewards__hero {
        padding: 80px 0;
    }
    .page-promotions-limited-time-events-rewards__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-limited-time-events-rewards__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-limited-time-events-rewards__hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-limited-time-events-rewards__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-promotions-limited-time-events-rewards__section-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-events-rewards__intro,
    .page-promotions-limited-time-events-rewards__featured-events,
    .page-promotions-limited-time-events-rewards__how-to-claim,
    .page-promotions-limited-time-events-rewards__why-vn68,
    .page-promotions-limited-time-events-rewards__faq,
    .page-promotions-limited-time-events-rewards__cta-bottom {
        padding: 40px 0;
    }
    .page-promotions-limited-time-events-rewards__event-content,
    .page-promotions-limited-time-events-rewards__why-item,
    .page-promotions-limited-time-events-rewards__accordion-header,
    .page-promotions-limited-time-events-rewards__accordion-content {
        padding: 20px;
    }
    .page-promotions-limited-time-events-rewards__event-title {
        font-size: 1.4em;
    }
    .page-promotions-limited-time-events-rewards__step-title {
        font-size: 1.2em;
    }
    .page-promotions-limited-time-events-rewards__why-title {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-limited-time-events-rewards__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-events-rewards__section-title {
        font-size: 1.5em;
    }
    .page-promotions-limited-time-events-rewards__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-promotions-limited-time-events-rewards__event-grid,
    .page-promotions-limited-time-events-rewards__why-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-limited-time-events-rewards__event-content,
    .page-promotions-limited-time-events-rewards__why-item,
    .page-promotions-limited-time-events-rewards__accordion-header,
    .page-promotions-limited-time-events-rewards__accordion-content {
        padding: 15px;
    }
    .page-promotions-limited-time-events-rewards__accordion-header {
        font-size: 1em;
    }
    .page-promotions-limited-time-events-rewards__accordion-content.active {
        padding: 15px;
    }
}