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

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

.page-lottery-games-types-introduction__section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-types-introduction__section:nth-of-type(odd) {
    background-color: #fdfdfd;
}

.page-lottery-games-types-introduction__hero {
    background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%); /* Gold to Dodger Blue */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    border-radius: 0 0 15px 15px;
}

.page-lottery-games-types-introduction__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-lottery-games-types-introduction__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-types-introduction__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
}

.page-lottery-games-types-introduction__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

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

.page-lottery-games-types-introduction__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1E90FF; /* Dodger Blue */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-games-types-introduction__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-lottery-games-types-introduction__btn--secondary {
    background-color: #1E90FF; /* Dodger Blue */
    color: #fff;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.page-lottery-games-types-introduction__btn--secondary:hover {
    background-color: #1565b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
}

.page-lottery-games-types-introduction__btn--link {
    background: none;
    color: #1E90FF;
    padding: 0;
    border-radius: 0;
    text-decoration: underline;
    font-size: 1em;
}

.page-lottery-games-types-introduction__btn--link:hover {
    color: #0056b3;
}

.page-lottery-games-types-introduction__section-title {
    font-size: 2.8em;
    color: #1E90FF; /* Dodger Blue */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-lottery-games-types-introduction__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.page-lottery-games-types-introduction__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-lottery-games-types-introduction__feature-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-lottery-games-types-introduction__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-lottery-games-types-introduction__feature-title {
    font-size: 1.6em;
    color: #1E90FF; /* Dodger Blue */
    margin-bottom: 15px;
}

.page-lottery-games-types-introduction__feature-item p {
    color: #666;
}

.page-lottery-games-types-introduction__lottery-types .page-lottery-games-types-introduction__type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-lottery-games-types-introduction__type-card {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-lottery-games-types-introduction__type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-lottery-games-types-introduction__type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-lottery-games-types-introduction__type-card h3 {
    font-size: 1.8em;
    color: #1E90FF; /* Dodger Blue */
    padding: 20px 20px 10px;
}

.page-lottery-games-types-introduction__type-card p {
    padding: 0 20px 15px;
    color: #666;
}

.page-lottery-games-types-introduction__type-card ul {
    list-style: none;
    padding: 0 20px 15px;
    margin: 0;
}

.page-lottery-games-types-introduction__type-card ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.page-lottery-games-types-introduction__type-card ul li::before {
    content: '✓';
    color: #FFD700; /* Gold */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-lottery-games-types-introduction__how-to-play .page-lottery-games-types-introduction__step-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-lottery-games-types-introduction__step-list li {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-left: 5px solid #1E90FF;
    position: relative;
}

.page-lottery-games-types-introduction__step-list li::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #1E90FF;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-lottery-games-types-introduction__step-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
}

.page-lottery-games-types-introduction__step-list p {
    color: #666;
}

.page-lottery-games-types-introduction__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-lottery-games-types-introduction__list li {
    background-color: #fdfdfd;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.02);
    border-left: 4px solid #FFD700;
    font-size: 1.05em;
    color: #444;
}

.page-lottery-games-types-introduction__list li strong {
    color: #1E90FF;
}

.page-lottery-games-types-introduction__responsible-gaming .page-lottery-games-types-introduction__content-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.page-lottery-games-types-introduction__image-left {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-lottery-games-types-introduction__promotions .page-lottery-games-types-introduction__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-lottery-games-types-introduction__promo-card {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-lottery-games-types-introduction__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-lottery-games-types-introduction__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #1E90FF;
}

.page-lottery-games-types-introduction__promo-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    padding: 20px 20px 10px;
}

.page-lottery-games-types-introduction__promo-card p {
    padding: 0 20px 20px;
    color: #666;
}

.page-lottery-games-types-introduction__promo-action {
    text-align: center;
    margin-top: 40px;
}

.page-lottery-games-types-introduction__faq-item {
    background-color: #fdfdfd;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.02);
    border-left: 4px solid #FFD700;
}

.page-lottery-games-types-introduction__faq-question {
    font-size: 1.3em;
    color: #1E90FF; /* Dodger Blue */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-lottery-games-types-introduction__faq-answer {
    font-size: 1em;
    color: #555;
    display: none; /* Hidden by default, JS will toggle */
}

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

.page-lottery-games-types-introduction__cta-bottom {
    background: linear-gradient(135deg, #1E90FF 0%, #0028ff 100%); /* Dodger Blue to a darker blue */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px 15px 0 0;
    margin-top: 40px;
}

.page-lottery-games-types-introduction__cta-content {
    max-width: 900px;
}

.page-lottery-games-types-introduction__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-lottery-games-types-introduction__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-lottery-games-types-introduction__hero-title {
        font-size: 3em;
    }

    .page-lottery-games-types-introduction__section-title {
        font-size: 2.5em;
    }

    .page-lottery-games-types-introduction__responsible-gaming .page-lottery-games-types-introduction__content-with-image {
        flex-direction: column;
        text-align: center;
    }

    .page-lottery-games-types-introduction__image-left {
        margin-bottom: 20px;
    }
}

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

    .page-lottery-games-types-introduction__hero-title {
        font-size: 2.5em;
    }

    .page-lottery-games-types-introduction__hero-description {
        font-size: 1em;
    }

    .page-lottery-games-types-introduction__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-lottery-games-types-introduction__section {
        padding: 40px 0;
    }

    .page-lottery-games-types-introduction__section-title {
        font-size: 2em;
    }

    .page-lottery-games-types-introduction__section-intro {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .page-lottery-games-types-introduction__feature-item, 
    .page-lottery-games-types-introduction__type-card, 
    .page-lottery-games-types-introduction__promo-card, 
    .page-lottery-games-types-introduction__step-list li {
        padding: 25px;
    }

    .page-lottery-games-types-introduction__feature-title, 
    .page-lottery-games-types-introduction__type-card h3, 
    .page-lottery-games-types-introduction__promo-title {
        font-size: 1.4em;
    }

    .page-lottery-games-types-introduction__cta-title {
        font-size: 2em;
    }

    .page-lottery-games-types-introduction__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-types-introduction__hero {
        padding: 60px 0;
    }

    .page-lottery-games-types-introduction__hero-title {
        font-size: 2em;
    }

    .page-lottery-games-types-introduction__section-title {
        font-size: 1.8em;
    }

    .page-lottery-games-types-introduction__cta-title {
        font-size: 1.8em;
    }
}