/* style/games-lottery-complete-guide.css */
.page-games-lottery-complete-guide {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light text for dark backgrounds */
    line-height: 1.6;
    background-color: #1A2B4C;
}

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

.page-games-lottery-complete-guide__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #3A4B6C);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-games-lottery-complete-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-lottery-complete-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0;
}

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

.page-games-lottery-complete-guide__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2B4C; /* Dark blue */
}

.page-games-lottery-complete-guide__btn--primary:hover {
    background-color: #e5c400;
    transform: translateY(-2px);
}

.page-games-lottery-complete-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-games-lottery-complete-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-2px);
}

.page-games-lottery-complete-guide__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-games-lottery-complete-guide__section {
    padding: 60px 0;
    background-color: #1A2B4C;
}

.page-games-lottery-complete-guide__section:nth-of-type(even) {
    background-color: #2A3B5C;
}

.page-games-lottery-complete-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-games-lottery-complete-guide__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #F0F0F0;
}

.page-games-lottery-complete-guide__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-games-lottery-complete-guide__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-games-lottery-complete-guide__text-content {
    flex: 1;
}

.page-games-lottery-complete-guide__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #F0F0F0;
}

.page-games-lottery-complete-guide__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-games-lottery-complete-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-games-lottery-complete-guide__card {
    background-color: #2A3B5C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #3A4B6C;
}

.page-games-lottery-complete-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-games-lottery-complete-guide__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
}

.page-games-lottery-complete-guide__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-games-lottery-complete-guide__card-text {
    font-size: 1em;
    color: #F0F0F0;
}

.page-games-lottery-complete-guide__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-lottery-complete-guide__step-item {
    background-color: #2A3B5C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A4B6C;
}

.page-games-lottery-complete-guide__step-number {
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #1A2B4C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-complete-guide__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-games-lottery-complete-guide__step-text {
    font-size: 1em;
    color: #F0F0F0;
}

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

.page-games-lottery-complete-guide__tip-item {
    background-color: #2A3B5C;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-games-lottery-complete-guide__tip-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-games-lottery-complete-guide__tip-text {
    font-size: 1em;
    color: #F0F0F0;
}

.page-games-lottery-complete-guide__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-games-lottery-complete-guide__feature-list li {
    background-color: #2A3B5C;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
    color: #F0F0F0;
}

.page-games-lottery-complete-guide__feature-list li strong {
    color: #FFD700;
    margin-right: 8px;
}

.page-games-lottery-complete-guide__feature-list li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
}

.page-games-lottery-complete-guide__faq-list {
    margin-top: 40px;
}

.page-games-lottery-complete-guide__faq-item {
    background-color: #2A3B5C;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A4B6C;
}

.page-games-lottery-complete-guide__faq-question {
    padding: 20px;
    font-size: 1.3em;
    color: #FFD700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background-color: #2A3B5C;
    border-bottom: 1px solid #3A4B6C;
}

.page-games-lottery-complete-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-games-lottery-complete-guide__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-games-lottery-complete-guide__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #F0F0F0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-games-lottery-complete-guide__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding: 0 20px 20px 20px;
}

.page-games-lottery-complete-guide__cta-section {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #1A2B4C;
}

.page-games-lottery-complete-guide__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A2B4C;
    font-weight: bold;
}

.page-games-lottery-complete-guide__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #3A4B6C;
}

.page-games-lottery-complete-guide__cta-buttons .page-games-lottery-complete-guide__btn {
    margin: 0 15px;
}

.page-games-lottery-complete-guide .highlight {
    color: #FFD700;
}

.page-games-lottery-complete-guide__cta-section .highlight {
    color: #1A2B4C;
}

.page-games-lottery-complete-guide a {
    color: #FFD700;
    text-decoration: none;
}

.page-games-lottery-complete-guide a:hover {
    text-decoration: underline;
}

.page-games-lottery-complete-guide__action-center {
    text-align: center;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-games-lottery-complete-guide__hero-title {
        font-size: 2.8em;
    }

    .page-games-lottery-complete-guide__hero-subtitle {
        font-size: 1.1em;
    }

    .page-games-lottery-complete-guide__section-title {
        font-size: 2em;
    }

    .page-games-lottery-complete-guide__content-grid {
        flex-direction: column;
    }

    .page-games-lottery-complete-guide__content-grid--reverse {
        flex-direction: column-reverse;
    }

    .page-games-lottery-complete-guide__card-grid,
    .page-games-lottery-complete-guide__guide-steps,
    .page-games-lottery-complete-guide__tip-grid {
        grid-template-columns: 1fr;
    }

    .page-games-lottery-complete-guide__cta-title {
        font-size: 2.2em;
    }

    .page-games-lottery-complete-guide__cta-buttons .page-games-lottery-complete-guide__btn {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 576px) {
    .page-games-lottery-complete-guide__hero-title {
        font-size: 2em;
    }

    .page-games-lottery-complete-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-games-lottery-complete-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-games-lottery-complete-guide__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-games-lottery-complete-guide__section-title {
        font-size: 1.8em;
    }

    .page-games-lottery-complete-guide__card,
    .page-games-lottery-complete-guide__step-item,
    .page-games-lottery-complete-guide__tip-item {
        padding: 20px;
    }

    .page-games-lottery-complete-guide__cta-title {
        font-size: 1.8em;
    }
}