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

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

.page-game-types-lottery__hero {
    background: linear-gradient(135deg, #4A2780, #8068a6);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-game-types-lottery__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-game-types-lottery__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-game-types-lottery__hero-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #4A2780; /* Violet */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__hero-cta:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-types-lottery__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    z-index: 1;
}

.page-game-types-lottery__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types-lottery__section-title {
    font-size: 2.5em;
    color: #4A2780; /* Violet */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-types-lottery__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-game-types-lottery__introduction,
.page-game-types-lottery__game-types,
.page-game-types-lottery__why-choose,
.page-game-types-lottery__how-to-play,
.page-game-types-lottery__promotions,
.page-game-types-lottery__mobile-app,
.page-game-types-lottery__responsible-gambling,
.page-game-types-lottery__faq,
.page-game-types-lottery__call-to-action {
    padding: 60px 0;
}

.page-game-types-lottery__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-types-lottery__highlight {
    color: #4A2780;
    font-weight: bold;
}

.page-game-types-lottery__game-types .page-game-types-lottery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-types-lottery__game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-lottery__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-types-lottery__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-game-types-lottery__card-title {
    font-size: 1.5em;
    color: #4A2780;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-game-types-lottery__card-description {
    font-size: 0.95em;
    color: #555;
    padding: 0 15px 20px;
}

.page-game-types-lottery__why-choose .page-game-types-lottery__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-game-types-lottery__why-choose .page-game-types-lottery__feature-list li {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    color: #333;
    position: relative;
    text-align: justify;
}

.page-game-types-lottery__why-choose .page-game-types-lottery__feature-list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-game-types-lottery__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-game-types-lottery__primary-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #4A2780; /* Violet */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__primary-cta:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-types-lottery__how-to-play .page-game-types-lottery__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 40px;
}

.page-game-types-lottery__how-to-play .page-game-types-lottery__step-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    position: relative;
    padding-left: 80px;
}

.page-game-types-lottery__how-to-play .page-game-types-lottery__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 30px;
    background-color: #4A2780; /* Violet */
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-game-types-lottery__step-title {
    color: #4A2780;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-types-lottery__secondary-cta {
    display: inline-block;
    background-color: #4A2780;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-types-lottery__secondary-cta:hover {
    background-color: #6a3eaf;
    transform: translateY(-2px);
}

.page-game-types-lottery__promotions .page-game-types-lottery__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-types-lottery__promotions .page-game-types-lottery__promo-list li {
    background-color: #f0f0f0;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
}

.page-game-types-lottery__mobile-app-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-game-types-lottery__mobile-app-content {
    flex: 1;
    min-width: 300px;
}

.page-game-types-lottery__mobile-app-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-game-types-lottery__mobile-app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery__app-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-game-types-lottery__app-features li {
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-game-types-lottery__app-features li::before {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.page-game-types-lottery__responsible-gambling {
    background-color: #ededed;
}

.page-game-types-lottery__responsible-tips {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
}

.page-game-types-lottery__responsible-tips li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
}

.page-game-types-lottery__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-types-lottery__faq-question {
    color: #4A2780;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-game-types-lottery__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
}

.page-game-types-lottery__text-link {
    color: #4A2780;
    text-decoration: underline;
    font-weight: bold;
}

.page-game-types-lottery__text-link:hover {
    color: #FFD700;
}

.page-game-types-lottery__call-to-action {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #4A2780;
    text-align: center;
    padding: 80px 0;
}

.page-game-types-lottery__call-to-action .page-game-types-lottery__section-title {
    color: #4A2780;
}

.page-game-types-lottery__call-to-action .page-game-types-lottery__section-title::after {
    background-color: #4A2780;
}

.page-game-types-lottery__call-to-action .page-game-types-lottery__text-content {
    color: #333;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-game-types-lottery__call-to-action .page-game-types-lottery__primary-cta {
    background-color: #4A2780;
    color: #FFD700;
}

.page-game-types-lottery__call-to-action .page-game-types-lottery__primary-cta:hover {
    background-color: #6a3eaf;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-lottery__hero-title {
        font-size: 2.5em;
    }
    .page-game-types-lottery__hero-description {
        font-size: 1.1em;
    }
    .page-game-types-lottery__section-title {
        font-size: 2em;
    }
    .page-game-types-lottery__game-types .page-game-types-lottery__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-game-types-lottery__mobile-app-flex {
        flex-direction: column-reverse; /* Image above text on mobile */
    }
    .page-game-types-lottery__mobile-app-content,
    .page-game-types-lottery__mobile-app-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-game-types-lottery__hero {
        padding: 60px 0;
    }
    .page-game-types-lottery__hero-title {
        font-size: 2em;
    }
    .page-game-types-lottery__hero-description {
        font-size: 1em;
    }
    .page-game-types-lottery__hero-cta,
    .page-game-types-lottery__primary-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-types-lottery__section-title {
        font-size: 1.8em;
    }
    .page-game-types-lottery__introduction,
    .page-game-types-lottery__game-types,
    .page-game-types-lottery__why-choose,
    .page-game-types-lottery__how-to-play,
    .page-game-types-lottery__promotions,
    .page-game-types-lottery__mobile-app,
    .page-game-types-lottery__responsible-gambling,
    .page-game-types-lottery__faq,
    .page-game-types-lottery__call-to-action {
        padding: 40px 0;
    }
    .page-game-types-lottery__text-content {
        font-size: 0.95em;
    }
    .page-game-types-lottery__how-to-play .page-game-types-lottery__step-list li {
        padding-left: 60px;
    }
    .page-game-types-lottery__how-to-play .page-game-types-lottery__step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        left: 15px;
        top: 25px;
    }
    .page-game-types-lottery__step-title {
        font-size: 1.4em;
    }
    .page-game-types-lottery__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-game-types-lottery__hero-title {
        font-size: 1.8em;
    }
    .page-game-types-lottery__section-title {
        font-size: 1.5em;
    }
    .page-game-types-lottery__game-types .page-game-types-lottery__grid {
        grid-template-columns: 1fr;
    }
    .page-game-types-lottery__why-choose .page-game-types-lottery__feature-list {
        grid-template-columns: 1fr;
    }
    .page-game-types-lottery__why-choose .page-game-types-lottery__feature-list li {
        font-size: 1em;
    }
    .page-game-types-lottery__how-to-play .page-game-types-lottery__step-list li {
        padding: 20px;
        padding-left: 20px; /* Remove fixed left padding on very small screens */
    }
    .page-game-types-lottery__how-to-play .page-game-types-lottery__step-list li::before {
        display: none; /* Hide step number on very small screens if space is tight */
    }
    .page-game-types-lottery__step-title {
        font-size: 1.2em;
    }
    .page-game-types-lottery__app-features li {
        font-size: 1em;
    }
    .page-game-types-lottery__faq-question {
        font-size: 1.1em;
    }
}