/* style/promotions-limited-time-events.css */
.page-promotions-limited-time-events {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A2342; /* Main background color */
}

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

.page-promotions-limited-time-events .section-padding {
    padding: 80px 0;
}

.page-promotions-limited-time-events .bg-light {
    background-color: #1a3a60; /* Slightly lighter shade of main color */
}

.page-promotions-limited-time-events .bg-dark {
    background-color: #0A2342;
}

.page-promotions-limited-time-events .text-center {
    text-align: center;
}

.page-promotions-limited-time-events .mt-4 {
    margin-top: 40px;
}

/* Hero Section */
.page-promotions-limited-time-events .hero-section {
    background: linear-gradient(135deg, #0A2342, #1a3a60);
    color: #ffffff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-promotions-limited-time-events .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-promotions-limited-time-events .hero-content {
    max-width: 800px;
}

.page-promotions-limited-time-events .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-promotions-limited-time-events .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-promotions-limited-time-events .hero-image-wrapper {
    width: 100%;
    max-width: 600px;
}

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

/* Buttons */
.page-promotions-limited-time-events .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions-limited-time-events .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Dark blue text */
    font-size: 1.1em;
}

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

.page-promotions-limited-time-events .btn-secondary {
    background-color: #DC3545; /* Red for emphasis */
    color: #ffffff;
    font-size: 1.1em;
}

.page-promotions-limited-time-events .btn-secondary:hover {
    background-color: #c82333;
    transform: translateY(-3px);
}

.page-promotions-limited-time-events .btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    background-color: #FFD700;
    color: #0A2342;
}

.page-promotions-limited-time-events .btn-small:hover {
    background-color: #e6c200;
}

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

/* Section Titles */
.page-promotions-limited-time-events .section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions-limited-time-events .section-subtitle {
    font-size: 1.2em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 50px;
}

/* Promotions Overview Section */
.page-promotions-limited-time-events .promotions-overview-section {
    background-color: #0A2342;
}

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

.page-promotions-limited-time-events .overview-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

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

.page-promotions-limited-time-events .overview-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-limited-time-events .overview-item p {
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Current Events Section */
.page-promotions-limited-time-events .event-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions-limited-time-events .event-card {
    background-color: #0A2342;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-events .event-card:hover {
    transform: translateY(-10px);
}

.page-promotions-limited-time-events .event-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.page-promotions-limited-time-events .event-card-content h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-limited-time-events .event-card-content p {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-promotions-limited-time-events .event-card-content .event-time {
    font-size: 0.85em;
    color: #FFD700;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: 15px;
}

.page-promotions-limited-time-events .event-card-content .btn-small {
    align-self: flex-start;
}

/* Mission System Section */
.page-promotions-limited-time-events .mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-limited-time-events .mission-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-promotions-limited-time-events .mission-item .mission-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-promotions-limited-time-events .mission-item h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions-limited-time-events .mission-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-limited-time-events .mission-item ul li {
    background-color: #0A2342;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 0.95em;
    display: flex;
    align-items: center;
}

.page-promotions-limited-time-events .mission-item ul li::before {
    content: '✓';
    color: #FFD700;
    margin-right: 10px;
    font-weight: bold;
}

.page-promotions-limited-time-events .mission-item p {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
}

/* How to Join Section */
.page-promotions-limited-time-events .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-limited-time-events .step-item {
    background-color: #0A2342;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 70px; /* Space for number */
}

.page-promotions-limited-time-events .step-item .step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0A2342;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-limited-time-events .step-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-limited-time-events .step-item p {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-promotions-limited-time-events .faq-accordion {
    margin-top: 50px;
}

.page-promotions-limited-time-events .faq-item {
    background-color: #1a3a60;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-limited-time-events .faq-question {
    width: 100%;
    background-color: #0A2342;
    color: #FFD700;
    padding: 20px 25px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-limited-time-events .faq-question:hover, .page-promotions-limited-time-events .faq-question.active {
    background-color: #1a3a60;
}

.page-promotions-limited-time-events .faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-events .faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-promotions-limited-time-events .faq-answer {
    padding: 0 25px;
    background-color: #1a3a60;
    color: #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-limited-time-events .faq-answer p {
    padding: 15px 0;
    margin: 0;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.page-promotions-limited-time-events .cta-section {
    background: linear-gradient(45deg, #0A2342, #DC3545);
    color: #ffffff;
}

.page-promotions-limited-time-events .cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promotions-limited-time-events .cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-promotions-limited-time-events .hero-section .container {
        flex-direction: row;
        text-align: left;
    }

    .page-promotions-limited-time-events .hero-content {
        flex: 1;
    }

    .page-promotions-limited-time-events .hero-image-wrapper {
        flex: 1;
        text-align: right;
    }

    .page-promotions-limited-time-events .hero-title {
        font-size: 4em;
    }

    .page-promotions-limited-time-events .hero-description {
        font-size: 1.3em;
    }
}

@media (max-width: 767px) {
    .page-promotions-limited-time-events .section-padding {
        padding: 50px 0;
    }

    .page-promotions-limited-time-events .hero-title {
        font-size: 2.5em;
    }

    .page-promotions-limited-time-events .hero-description {
        font-size: 1em;
    }

    .page-promotions-limited-time-events .section-title {
        font-size: 2em;
    }

    .page-promotions-limited-time-events .section-subtitle {
        font-size: 1em;
    }

    .page-promotions-limited-time-events .cta-title {
        font-size: 2em;
    }

    .page-promotions-limited-time-events .cta-description {
        font-size: 1em;
    }

    .page-promotions-limited-time-events .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-limited-time-events .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promotions-limited-time-events .grid-3-col, .page-promotions-limited-time-events .event-cards-grid, .page-promotions-limited-time-events .mission-grid, .page-promotions-limited-time-events .steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-limited-time-events .hero-image-wrapper {
        order: -1; /* Move image above text on mobile */
    }
    .page-promotions-limited-time-events .faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
}