/* style/lottery-games-lucky-airship-prediction.css */

.page-lottery-games-lucky-airship-prediction {
    font-family: 'Arial', sans-serif;
    color: #F7FAFC; /* Light text for dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

.page-lottery-games-lucky-airship-prediction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-lottery-games-lucky-airship-prediction__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-lucky-airship-prediction__section:nth-child(odd) {
    background-color: #2D3748; /* Slightly lighter dark background */
}

.page-lottery-games-lucky-airship-prediction__section-title {
    font-size: 2.8em;
    color: #F7FAFC;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.page-lottery-games-lucky-airship-prediction__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E53E3E;
    border-radius: 2px;
}

.page-lottery-games-lucky-airship-prediction__hero {
    background: linear-gradient(135deg, #1A202C 0%, #E53E3E 100%);
    padding: 100px 0;
    text-align: center;
    color: #F7FAFC;
}

.page-lottery-games-lucky-airship-prediction__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.page-lottery-games-lucky-airship-prediction__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-lottery-games-lucky-airship-prediction__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-lottery-games-lucky-airship-prediction__btn--primary {
    background-color: #E53E3E;
    color: #F7FAFC;
}

.page-lottery-games-lucky-airship-prediction__btn--primary:hover {
    background-color: #C53030;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-lucky-airship-prediction__btn--secondary {
    background-color: #4A5568;
    color: #F7FAFC;
    margin-top: 30px;
}

.page-lottery-games-lucky-airship-prediction__btn--secondary:hover {
    background-color: #2D3748;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-lucky-airship-prediction__btn--outline {
    background-color: transparent;
    color: #E53E3E;
    border: 2px solid #E53E3E;
    margin-left: 20px;
}

.page-lottery-games-lucky-airship-prediction__btn--outline:hover {
    background-color: #E53E3E;
    color: #F7FAFC;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-lucky-airship-prediction__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-lottery-games-lucky-airship-prediction__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-lottery-games-lucky-airship-prediction__text-content {
    flex: 1;
}

.page-lottery-games-lucky-airship-prediction__image-box {
    flex: 1;
    text-align: center;
}

.page-lottery-games-lucky-airship-prediction__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-lucky-airship-prediction__image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #CBD5E0;
    font-size: 0.95em;
}

.page-lottery-games-lucky-airship-prediction__sub-title {
    font-size: 2em;
    color: #F7FAFC;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-lottery-games-lucky-airship-prediction__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #CBD5E0;
}

.page-lottery-games-lucky-airship-prediction__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-lottery-games-lucky-airship-prediction__ordered-list {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #CBD5E0;
}

.page-lottery-games-lucky-airship-prediction__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-lottery-games-lucky-airship-prediction__text-link {
    color: #E53E3E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-lottery-games-lucky-airship-prediction__text-link:hover {
    color: #C53030;
    text-decoration: underline;
}

.page-lottery-games-lucky-airship-prediction__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-games-lucky-airship-prediction__strategy-card {
    background-color: #2D3748;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-lucky-airship-prediction__strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-lucky-airship-prediction__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(229, 62, 62, 0.7));
}

.page-lottery-games-lucky-airship-prediction__card-title {
    font-size: 1.8em;
    color: #E53E3E;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-lottery-games-lucky-airship-prediction__strategy-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
    color: #CBD5E0;
    font-style: italic;
}

.page-lottery-games-lucky-airship-prediction__promo-box {
    display: flex;
    align-items: center;
    background-color: #2D3748;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    gap: 40px;
}

.page-lottery-games-lucky-airship-prediction__promo-image {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-lucky-airship-prediction__promo-content {
    flex: 1;
}

.page-lottery-games-lucky-airship-prediction__promo-title {
    font-size: 2.5em;
    color: #E53E3E;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-lottery-games-lucky-airship-prediction__promo-description {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #CBD5E0;
}

.page-lottery-games-lucky-airship-prediction__promo-note {
    font-size: 0.95em;
    margin-top: 25px;
    font-style: italic;
    color: #A0AEC0;
}

.page-lottery-games-lucky-airship-prediction__faq-item {
    background-color: #2D3748;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-lucky-airship-prediction__faq-question {
    font-size: 1.5em;
    color: #E53E3E;
    margin-bottom: 10px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.page-lottery-games-lucky-airship-prediction__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-lottery-games-lucky-airship-prediction__faq-question.active::after {
    transform: rotate(45deg);
}

.page-lottery-games-lucky-airship-prediction__faq-answer {
    color: #CBD5E0;
    font-size: 1.1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-lottery-games-lucky-airship-prediction__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-lottery-games-lucky-airship-prediction__cta {
    text-align: center;
    background-color: #1A202C;
    padding: 80px 0;
}

.page-lottery-games-lucky-airship-prediction__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #CBD5E0;
}

.page-lottery-games-lucky-airship-prediction__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-lottery-games-lucky-airship-prediction .highlight {
    color: #E53E3E;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-lottery-games-lucky-airship-prediction__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-lottery-games-lucky-airship-prediction__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-lottery-games-lucky-airship-prediction__image-box {
        margin-top: 30px;
    }

    .page-lottery-games-lucky-airship-prediction__promo-box {
        flex-direction: column;
        text-align: center;
    }

    .page-lottery-games-lucky-airship-prediction__promo-image {
        margin-bottom: 20px;
    }

    .page-lottery-games-lucky-airship-prediction__hero-title {
        font-size: 2.8em;
    }

    .page-lottery-games-lucky-airship-prediction__hero-subtitle {
        font-size: 1.2em;
    }

    .page-lottery-games-lucky-airship-prediction__section-title {
        font-size: 2.2em;
    }

    .page-lottery-games-lucky-airship-prediction__sub-title {
        font-size: 1.8em;
    }

    .page-lottery-games-lucky-airship-prediction__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-lottery-games-lucky-airship-prediction__btn--outline {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-lucky-airship-prediction__hero {
        padding: 80px 0;
    }

    .page-lottery-games-lucky-airship-prediction__hero-title {
        font-size: 2.5em;
    }

    .page-lottery-games-lucky-airship-prediction__hero-subtitle {
        font-size: 1.1em;
    }

    .page-lottery-games-lucky-airship-prediction__section-title {
        font-size: 2em;
    }

    .page-lottery-games-lucky-airship-prediction__strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-lottery-games-lucky-airship-prediction__promo-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-lucky-airship-prediction__hero-title {
        font-size: 2em;
    }

    .page-lottery-games-lucky-airship-prediction__hero-subtitle {
        font-size: 1em;
    }

    .page-lottery-games-lucky-airship-prediction__section-title {
        font-size: 1.8em;
    }

    .page-lottery-games-lucky-airship-prediction__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-lottery-games-lucky-airship-prediction__promo-title {
        font-size: 1.8em;
    }
}