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

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

.page-lottery-games-types-introduction__hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-types-introduction__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

.page-lottery-games-types-introduction__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-lottery-games-types-introduction__section {
    padding: 80px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

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

.page-lottery-games-types-introduction__section-title {
    font-size: 2.8em;
    color: #1A1A2E;
    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;
    border-radius: 2px;
}

.page-lottery-games-types-introduction__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-types-introduction__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-lottery-games-types-introduction__content-wrapper:nth-of-type(even) {
    flex-direction: row-reverse;
}

.page-lottery-games-types-introduction__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #444;
}

.page-lottery-games-types-introduction__text-content p {
    margin-bottom: 15px;
}

.page-lottery-games-types-introduction__image-box {
    flex: 1;
    text-align: center;
}

.page-lottery-games-types-introduction__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.page-lottery-games-types-introduction__grid-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-types-introduction__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.page-lottery-games-types-introduction__grid-item-title {
    font-size: 1.8em;
    color: #1A1A2E;
    margin-bottom: 15px;
}

.page-lottery-games-types-introduction__grid-item p {
    font-size: 1em;
    color: #666;
}

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

.page-lottery-games-types-introduction__btn--primary {
    background-color: #FFD700;
    color: #1A1A2E;
    border: 2px solid #FFD700;
}

.page-lottery-games-types-introduction__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #1A1A2E;
}

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

.page-lottery-games-types-introduction__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
}

.page-lottery-games-types-introduction__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    margin-top: 15px;
}

.page-lottery-games-types-introduction__cta-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed #ddd;
}

.page-lottery-games-types-introduction__cta-footer p {
    font-size: 1.3em;
    color: #1A1A2E;
    margin-bottom: 30px;
}

.page-lottery-games-types-introduction__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-lottery-games-types-introduction__step-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-types-introduction__step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #1A1A2E;
    color: #FFD700;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-lottery-games-types-introduction__step-title {
    font-size: 1.6em;
    color: #1A1A2E;
    margin-bottom: 10px;
}

.page-lottery-games-types-introduction__step-item p {
    color: #666;
    font-size: 1em;
}

.page-lottery-games-types-introduction__advantages {
    background-color: #1A1A2E;
    color: #ffffff;
}

.page-lottery-games-types-introduction__advantages .page-lottery-games-types-introduction__section-title {
    color: #ffffff;
}

.page-lottery-games-types-introduction__advantages .page-lottery-games-types-introduction__section-title::after {
    background-color: #FFD700;
}

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

.page-lottery-games-types-introduction__advantage-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-lottery-games-types-introduction__advantage-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-lottery-games-types-introduction__advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-lottery-games-types-introduction__advantage-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-lottery-games-types-introduction__advantage-item p {
    color: #e0e0e0;
    font-size: 1em;
}

.page-lottery-games-types-introduction__promotions .page-lottery-games-types-introduction__section-description {
    color: #555;
}

.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-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-types-introduction__promo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-lottery-games-types-introduction__promo-img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-lottery-games-types-introduction__promo-item h3 {
    font-size: 1.6em;
    color: #1A1A2E;
    margin-bottom: 10px;
}

.page-lottery-games-types-introduction__promo-item p {
    font-size: 1em;
    color: #666;
}

.page-lottery-games-types-introduction__faq-item {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-lottery-games-types-introduction__faq-question {
    font-size: 1.5em;
    color: #1A1A2E;
    margin-bottom: 10px;
}

.page-lottery-games-types-introduction__faq-answer {
    font-size: 1.1em;
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
}

.page-lottery-games-types-introduction__faq-item .page-lottery-games-types-introduction__btn {
    margin-left: 10px;
}

.page-lottery-games-types-introduction__conclusion {
    text-align: center;
    padding-bottom: 100px;
}

.page-lottery-games-types-introduction__conclusion .page-lottery-games-types-introduction__section-title {
    margin-bottom: 20px;
}

.page-lottery-games-types-introduction__conclusion .page-lottery-games-types-introduction__section-description {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    color: #444;
}

.highlight {
    color: #1A1A2E;
    font-weight: bold;
}

.page-lottery-games-types-introduction__advantages .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-types-introduction__hero-title {
        font-size: 2.8em;
    }
    .page-lottery-games-types-introduction__hero-subtitle {
        font-size: 1.1em;
    }
    .page-lottery-games-types-introduction__section-title {
        font-size: 2.2em;
    }
    .page-lottery-games-types-introduction__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-lottery-games-types-introduction__content-wrapper {
        flex-direction: column;
    }
    .page-lottery-games-types-introduction__content-wrapper:nth-of-type(even) {
        flex-direction: column;
    }
    .page-lottery-games-types-introduction__image-box {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-types-introduction__hero-section {
        padding: 80px 0;
    }
    .page-lottery-games-types-introduction__hero-title {
        font-size: 2.2em;
    }
    .page-lottery-games-types-introduction__hero-subtitle {
        font-size: 1em;
    }
    .page-lottery-games-types-introduction__section {
        padding: 60px 0;
    }
    .page-lottery-games-types-introduction__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games-types-introduction__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-lottery-games-types-introduction__grid-item-title {
        font-size: 1.5em;
    }
    .page-lottery-games-types-introduction__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-lottery-games-types-introduction__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-types-introduction__advantage-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-types-introduction__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-types-introduction__faq-question {
        font-size: 1.3em;
    }
    .page-lottery-games-types-introduction__faq-answer {
        font-size: 1em;
    }
}