/* style/game-types-lottery-games.css */
.page-game-types-lottery-games {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-game-types-lottery-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-types-lottery-games__section {
    padding: 60px 0;
}

.page-game-types-lottery-games__section--bg-light {
    background-color: #e9ecef;
}

.page-game-types-lottery-games h1,
.page-game-types-lottery-games h2 {
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-game-types-lottery-games h3 {
    color: #28a745;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-game-types-lottery-games p {
    margin-bottom: 15px;
    color: #555;
}

.page-game-types-lottery-games ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-game-types-lottery-games ul li {
    margin-bottom: 8px;
}

/* Buttons */
.page-game-types-lottery-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-game-types-lottery-games__btn--primary {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.page-game-types-lottery-games__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-game-types-lottery-games__btn--secondary {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

.page-game-types-lottery-games__btn--secondary:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    transform: translateY(-2px);
}

.page-game-types-lottery-games__btn--outline-light {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-game-types-lottery-games__btn--outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.page-game-types-lottery-games__btn--lg {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-game-types-lottery-games__btn--xl {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-types-lottery-games__btn--link {
    background: none;
    border: none;
    color: #007bff;
    padding: 0;
    font-weight: normal;
    text-decoration: underline;
}

.page-game-types-lottery-games__btn--link:hover {
    color: #0056b3;
}

/* Hero Section */
.page-game-types-lottery-games__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.page-game-types-lottery-games__hero-content {
    max-width: 600px;
    padding: 0 20px;
}

.page-game-types-lottery-games__hero-content h1 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 20px;
    text-align: center;
}

.page-game-types-lottery-games__hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e2e6ea;
}

.page-game-types-lottery-games__hero-image {
    max-width: 500px;
    padding: 0 20px;
}

.page-game-types-lottery-games__img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Grid Layout */
.page-game-types-lottery-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-types-lottery-games__grid-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-lottery-games__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-types-lottery-games__img-thumbnail {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-types-lottery-games__grid-item h3 {
    color: #007bff;
    margin-top: 0;
}

.page-game-types-lottery-games__grid-item ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.page-game-types-lottery-games__grid-item ul li::before {
    content: '✅';
    margin-right: 10px;
}

/* CTA Card */
.page-game-types-lottery-games__cta-card {
    background-color: #007bff;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-types-lottery-games__cta-card--dark {
    background-color: #0056b3;
}

.page-game-types-lottery-games__cta-card p {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 500;
    color: #fff;
}

/* Steps Section */
.page-game-types-lottery-games__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-types-lottery-games__step-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-types-lottery-games__step-icon {
    width: 60px;
    height: 60px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
}

.page-game-types-lottery-games__icon {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
}

.page-game-types-lottery-games__step-item h3 {
    color: #007bff;
    margin-top: 0;
}

.page-game-types-lottery-games__step-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-game-types-lottery-games__step-item a:hover {
    text-decoration: underline;
}

/* Features Section (Tips & Strategies) */
.page-game-types-lottery-games__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-types-lottery-games__feature-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-game-types-lottery-games__img-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-game-types-lottery-games__feature-item h3 {
    color: #007bff;
    margin-top: 0;
}

/* Promotion List */
.page-game-types-lottery-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-game-types-lottery-games__promo-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #333;
}

.page-game-types-lottery-games__promo-list li::before {
    content: '🎁'; /* Using an emoji for visual appeal */
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

/* Reasons Section */
.page-game-types-lottery-games__reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-types-lottery-games__reason-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-game-types-lottery-games__reason-item h3 {
    color: #007bff;
    margin-top: 0;
}

/* FAQ Section */
.page-game-types-lottery-games__faq {
    background-color: #f0f4f7;
}

.page-game-types-lottery-games__accordion {
    margin-top: 40px;
}

.page-game-types-lottery-games__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.page-game-types-lottery-games__accordion-header {
    background-color: #fff;
    color: #333;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-game-types-lottery-games__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-types-lottery-games__accordion-header.active {
    background-color: #e9ecef;
    color: #007bff;
}

.page-game-types-lottery-games__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-types-lottery-games__accordion-body {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-types-lottery-games__accordion-body.show {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 15px 25px 25px;
}

.page-game-types-lottery-games__accordion-body p {
    margin-bottom: 10px;
}

/* Final CTA Section */
.page-game-types-lottery-games__cta-final {
    background: linear-gradient(45deg, #0056b3, #1e7e34);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-game-types-lottery-games__cta-final-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-game-types-lottery-games__cta-final h2 {
    color: #fff;
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-game-types-lottery-games__cta-final p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e2e6ea;
}

.page-game-types-lottery-games__cta-final .page-game-types-lottery-games__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-lottery-games__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-game-types-lottery-games__hero-content h1 {
        font-size: 2.5em;
    }

    .page-game-types-lottery-games__hero-image {
        margin-top: 30px;
    }

    .page-game-types-lottery-games__grid,
    .page-game-types-lottery-games__steps,
    .page-game-types-lottery-games__features,
    .page-game-types-lottery-games__reasons {
        grid-template-columns: 1fr;
    }

    .page-game-types-lottery-games__cta-card p {
        font-size: 1.2em;
    }

    .page-game-types-lottery-games__cta-final h2 {
        font-size: 2.2em;
    }

    .page-game-types-lottery-games__cta-final p {
        font-size: 1.1em;
    }

    .page-game-types-lottery-games__cta-final .page-game-types-lottery-games__btn {
        display: block;
        margin: 15px auto;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-game-types-lottery-games__section {
        padding: 40px 0;
    }

    .page-game-types-lottery-games h1,
    .page-game-types-lottery-games h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-game-types-lottery-games h3 {
        font-size: 1.3em;
    }

    .page-game-types-lottery-games__hero-content h1 {
        font-size: 2em;
    }

    .page-game-types-lottery-games__hero-content p {
        font-size: 1em;
    }

    .page-game-types-lottery-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-game-types-lottery-games__cta-card p {
        font-size: 1em;
    }

    .page-game-types-lottery-games__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-game-types-lottery-games__accordion-body {
        padding: 10px 20px 20px;
    }

    .page-game-types-lottery-games__cta-final h2 {
        font-size: 1.8em;
    }

    .page-game-types-lottery-games__cta-final p {
        font-size: 0.9em;
    }

    .page-game-types-lottery-games__promo-list li {
        font-size: 1em;
        padding: 15px;
    }
}