/* style/games-lottery-games-details.css */
.page-games-lottery-games-details {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

.page-games-lottery-games-details__hero-section {
    background: linear-gradient(135deg, #0A2463, #3B5998);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-games-lottery-games-details__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.page-games-lottery-games-details__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-games-lottery-games-details__hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-games-lottery-games-details__content-section {
    padding: 60px 0;
}

.page-games-lottery-games-details__section-title {
    font-size: 2.2em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-games-lottery-games-details__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-games-lottery-games-details__paragraph a {
    color: #0A2463;
    font-weight: bold;
    text-decoration: none;
}

.page-games-lottery-games-details__paragraph a:hover {
    text-decoration: underline;
    color: #E3B505;
}

.page-games-lottery-games-details__highlight-text {
    color: #E3B505;
}

.page-games-lottery-games-details__cta-button {
    display: inline-block;
    background-color: #E3B505;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 181, 5, 0.4);
}

.page-games-lottery-games-details__cta-button:hover {
    background-color: #f5cb42;
    transform: translateY(-3px);
    color: #0A2463;
}

.page-games-lottery-games-details__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-games-lottery-games-details__cta-button--centered {
    display: block;
    margin: 30px auto;
    width: fit-content;
}

.page-games-lottery-games-details__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

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

.page-games-lottery-games-details__card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-lottery-games-details__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-games-lottery-games-details__card-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-games-lottery-games-details__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-games-lottery-games-details__card-title a {
    color: #0A2463;
    text-decoration: none;
}

.page-games-lottery-games-details__card-title a:hover {
    color: #E3B505;
    text-decoration: underline;
}

.page-games-lottery-games-details__card-description {
    color: #666;
    font-size: 1em;
}

.page-games-lottery-games-details__steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-games-lottery-games-details__step-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
    position: relative;
    transition: transform 0.3s ease;
}

.page-games-lottery-games-details__step-item:hover {
    transform: translateY(-5px);
}

.page-games-lottery-games-details__step-number {
    background-color: #0A2463;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 20px auto;
    border: 4px solid #E3B505;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-games-details__step-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-games-lottery-games-details__full-width-image {
    width: 100%;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-games-lottery-games-details__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-games-lottery-games-details__list-item {
    background-color: #fff;
    border-left: 5px solid #E3B505;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #444;
    transition: transform 0.2s ease;
}

.page-games-lottery-games-details__list-item:hover {
    transform: translateX(5px);
}

.page-games-lottery-games-details__list-item strong {
    color: #0A2463;
}

.page-games-lottery-games-details__list-item a {
    color: #0A2463;
    font-weight: bold;
    text-decoration: none;
}

.page-games-lottery-games-details__list-item a:hover {
    text-decoration: underline;
    color: #E3B505;
}

.page-games-lottery-games-details__list--why-choose .page-games-lottery-games-details__list-item {
    border-left-color: #0A2463;
}

.page-games-lottery-games-details__faq-container {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-games-lottery-games-details__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-games-lottery-games-details__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-games-lottery-games-details__faq-question a {
    color: #0A2463;
    text-decoration: none;
}

.page-games-lottery-games-details__faq-question a:hover {
    color: #E3B505;
    text-decoration: underline;
}

.page-games-lottery-games-details__faq-answer {
    font-size: 1em;
    color: #666;
    display: none; /* Hidden by default, toggle with JS */
}

.page-games-lottery-games-details__faq-answer a {
    color: #0A2463;
    font-weight: bold;
    text-decoration: none;
}

.page-games-lottery-games-details__faq-answer a:hover {
    text-decoration: underline;
    color: #E3B505;
}

.page-games-lottery-games-details__faq-item.active .page-games-lottery-games-details__faq-answer {
    display: block;
}

.page-games-lottery-games-details__final-cta {
    text-align: center;
    background-color: #0A2463;
    color: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-games-details__final-cta-title {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-games-lottery-games-details__hero-title {
        font-size: 2.2em;
    }
    .page-games-lottery-games-details__section-title {
        font-size: 1.8em;
    }
    .page-games-lottery-games-details__grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-games-lottery-games-details__step-item {
        flex: 1 1 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    .page-games-lottery-games-details__final-cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-games-lottery-games-details__hero-title {
        font-size: 1.8em;
    }
    .page-games-lottery-games-details__hero-description {
        font-size: 1em;
    }
    .page-games-lottery-games-details__section-title {
        font-size: 1.6em;
    }
    .page-games-lottery-games-details__card {
        padding: 20px;
    }
    .page-games-lottery-games-details__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
        margin-top: -50px;
    }
    .page-games-lottery-games-details__step-item {
        padding-top: 40px;
    }
    .page-games-lottery-games-details__final-cta-title {
        font-size: 1.8em;
    }
    .page-games-lottery-games-details__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-games-lottery-games-details__hero-title {
        font-size: 1.5em;
    }
    .page-games-lottery-games-details__section-title {
        font-size: 1.4em;
    }
    .page-games-lottery-games-details__paragraph {
        font-size: 0.95em;
    }
    .page-games-lottery-games-details__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-lottery-games-details__card-title {
        font-size: 1.3em;
    }
    .page-games-lottery-games-details__final-cta-title {
        font-size: 1.5em;
    }
    .page-games-lottery-games-details__list-item {
        font-size: 0.95em;
    }
    .page-games-lottery-games-details__faq-question {
        font-size: 1.1em;
    }
    .page-games-lottery-games-details__faq-answer {
        font-size: 0.9em;
    }
}