/* style/lottery-games-popular-lotteries.css */
.page-lottery-games-popular-lotteries {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light grey for general text on dark background */
    line-height: 1.6;
    background-color: #1A1A2E;
}

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

.page-lottery-games-popular-lotteries__section {
    padding: 60px 0;
    text-align: center;
}

.page-lottery-games-popular-lotteries__section-title {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #FFD700; /* Gold for titles */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-lottery-games-popular-lotteries__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D0D0D0;
}

.page-lottery-games-popular-lotteries__text--highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-lottery-games-popular-lotteries__hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Darker gradient */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-lottery-games-popular-lotteries__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-lottery-games-popular-lotteries__hero-section .page-lottery-games-popular-lotteries__container {
    position: relative;
    z-index: 1;
}

.page-lottery-games-popular-lotteries__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-popular-lotteries__hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-lottery-games-popular-lottery-games-popular-lotteries__btn--primary {
    background-color: #FFD700;
    color: #1A1A2E; /* Dark text on gold button */
    border: 2px solid #FFD700;
}

.page-lottery-games-popular-lottery-games-popular-lotteries__btn--primary:hover {
    background-color: #e5c100;
    border-color: #e5c100;
    transform: translateY(-3px);
}

.page-lottery-games-popular-lottery-games-popular-lotteries__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-lottery-games-popular-lottery-games-popular-lotteries__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-lottery-games-popular-lottery-games-popular-lotteries__btn--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-lottery-games-popular-lottery-games-popular-lotteries__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Intro Section */
.page-lottery-games-popular-lotteries__intro-section {
    background-color: #282844; /* Slightly lighter dark background */
}

.page-lottery-games-popular-lotteries__features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-lottery-games-popular-lotteries__features-list li {
    background-color: #1A1A2E;
    color: #D0D0D0;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid #FFD700;
    text-align: left;
    flex-basis: calc(33% - 20px); /* 3 items per row */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-popular-lotteries__icon {
    color: #FFD700;
    font-size: 1.2em;
}

.page-lottery-games-popular-lotteries__image-small {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Games Section */
.page-lottery-games-popular-lotteries__games-section {
    background-color: #1A1A2E;
}

.page-lottery-games-popular-lotteries__game-card {
    background-color: #282844;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-lottery-games-popular-lotteries__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-popular-lotteries__game-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-lottery-games-popular-lotteries__game-description {
    color: #D0D0D0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Play Section */
.page-lottery-games-popular-lotteries__how-to-play-section {
    background-color: #282844;
}

.page-lottery-games-popular-lotteries__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    counter-reset: step-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-lottery-games-popular-lotteries__steps-list li {
    background-color: #1A1A2E;
    color: #D0D0D0;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-top: 4px solid #FFD700;
}

.page-lottery-games-popular-lotteries__steps-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-lottery-games-popular-lotteries__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #FFD700;
    color: #1A1A2E;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-popular-lotteries__steps-list li a {
    color: #FFD700;
    text-decoration: underline;
}

.page-lottery-games-popular-lotteries__steps-list li a:hover {
    color: #e5c100;
}

/* Offers Section */
.page-lottery-games-popular-lotteries__offers-section {
    background-color: #1A1A2E;
}

.page-lottery-games-popular-lotteries__offers-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-lottery-games-popular-lotteries__offers-list li {
    background-color: #282844;
    color: #D0D0D0;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-popular-lotteries__offers-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

/* Tips Section */
.page-lottery-games-popular-lotteries__tips-section {
    background-color: #282844;
}

.page-lottery-games-popular-lotteries__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-lottery-games-popular-lotteries__tips-list li {
    background-color: #1A1A2E;
    color: #D0D0D0;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 50px;
}

.page-lottery-games-popular-lotteries__tips-list li::before {
    content: '💡'; /* Lightbulb icon */
    position: absolute;
    left: 15px;
    top: 20px;
    font-size: 1.5em;
}

/* FAQ Section */
.page-lottery-games-popular-lotteries__faq-section {
    background-color: #1A1A2E;
}

.page-lottery-games-popular-lotteries__faq-item {
    background-color: #282844;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-popular-lotteries__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-lottery-games-popular-lotteries__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-lottery-games-popular-lotteries__faq-answer {
    color: #D0D0D0;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

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

.page-lottery-games-popular-lotteries__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-lottery-games-popular-lotteries__faq-answer a:hover {
    color: #e5c100;
}

/* CTA Section */
.page-lottery-games-popular-lotteries__cta-section {
    background: linear-gradient(90deg, #1A1A2E, #3a3a5e); /* Gradient for emphasis */
    padding: 80px 0;
    color: #F0F0F0;
}

.page-lottery-games-popular-lotteries__cta-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-lottery-games-popular-lotteries__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-popular-lotteries__hero-title {
        font-size: 3em;
    }
    .page-lottery-games-popular-lotteries__hero-subtitle {
        font-size: 1.3em;
    }
    .page-lottery-games-popular-lotteries__section-title {
        font-size: 2.2em;
    }
    .page-lottery-games-popular-lotteries__features-list li {
        flex-basis: calc(50% - 20px); /* 2 items per row */
    }
}

@media (max-width: 768px) {
    .page-lottery-games-popular-lotteries__hero-title {
        font-size: 2.5em;
    }
    .page-lottery-games-popular-lotteries__hero-subtitle {
        font-size: 1.1em;
    }
    .page-lottery-games-popular-lottery-games-popular-lotteries__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-lottery-games-popular-lottery-games-popular-lotteries__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-lottery-games-popular-lotteries__section {
        padding: 40px 0;
    }
    .page-lottery-games-popular-lotteries__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games-popular-lotteries__game-card {
        padding: 20px;
    }
    .page-lottery-games-popular-lotteries__features-list li {
        flex-basis: 100%; /* 1 item per row */
    }
    .page-lottery-games-popular-lotteries__steps-list {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-popular-lotteries__offers-list {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-popular-lotteries__tips-list {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-popular-lotteries__cta-title {
        font-size: 2.5em;
    }
    .page-lottery-games-popular-lotteries__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-popular-lotteries__hero-title {
        font-size: 2em;
    }
    .page-lottery-games-popular-lotteries__hero-subtitle {
        font-size: 1em;
    }
    .page-lottery-games-popular-lottery-games-popular-lotteries__btn {
        margin: 8px 0;
        width: 100%;
    }
    .page-lottery-games-popular-lottery-games-popular-lotteries__btn--large {
        width: 100%;
    }
    .page-lottery-games-popular-lotteries__section-title {
        font-size: 1.6em;
    }
    .page-lottery-games-popular-lotteries__game-title {
        font-size: 1.6em;
    }
    .page-lottery-games-popular-lotteries__faq-question {
        font-size: 1.2em;
    }
    .page-lottery-games-popular-lotteries__cta-title {
        font-size: 2em;
    }
    .page-lottery-games-popular-lotteries__cta-text {
        font-size: 1em;
    }
}