/* style/game-guides-lottery-game-introduction.css */

:root {
    --page-primary-color: #003366;
    --page-accent-color: #FFD700;
    --page-text-light: #f8f8f8;
    --page-text-dark: #333333;
    --page-background-light: #ffffff;
    --page-background-dark: #002244;
    --page-button-hover-dark: #001a33;
    --page-button-hover-light: #e6c200;
}

.page-game-guides-lottery-game-introduction {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

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

.page-game-guides-lottery-game-introduction__container--center {
    text-align: center;
}

.page-game-guides-lottery-game-introduction__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, var(--page-accent-color) 100%);
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-lottery-game-introduction__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,subtle]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-guides-lottery-game-introduction__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-text-light);
    position: relative;
    z-index: 1;
}

.page-game-guides-lottery-game-introduction__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: var(--page-text-light);
    position: relative;
    z-index: 1;
}

.page-game-guides-lottery-game-introduction__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.page-game-guides-lottery-game-introduction__btn--primary {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    border: 2px solid var(--page-accent-color);
}

.page-game-guides-lottery-game-introduction__btn--primary:hover {
    background-color: var(--page-button-hover-light);
    transform: translateY(-3px);
}

.page-game-guides-lottery-game-introduction__btn--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-accent-color);
    border: 2px solid var(--page-accent-color);
}

.page-game-guides-lottery-game-introduction__btn--secondary:hover {
    background-color: var(--page-button-hover-dark);
    transform: translateY(-3px);
}

.page-game-guides-lottery-game-introduction__btn--outline {
    background-color: transparent;
    color: var(--page-accent-color);
    border: 2px solid var(--page-accent-color);
}

.page-game-guides-lottery-game-introduction__btn--outline:hover {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    transform: translateY(-3px);
}

.page-game-guides-lottery-game-introduction__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-guides-lottery-game-introduction__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-game-guides-lottery-game-introduction__section:last-of-type {
    border-bottom: none;
}

.page-game-guides-lottery-game-introduction__heading {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-guides-lottery-game-introduction__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-guides-lottery-game-introduction__introduction p,
.page-game-guides-lottery-game-introduction__types p,
.page-game-guides-lottery-game-introduction__how-to-play p,
.page-game-guides-lottery-game-introduction__tips p,
.page-game-guides-lottery-game-introduction__responsible-gaming p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-guides-lottery-game-introduction__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

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

.page-game-guides-lottery-game-introduction__game-card {
    background-color: var(--page-background-light);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-lottery-game-introduction__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-guides-lottery-game-introduction__game-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-game-guides-lottery-game-introduction__game-image {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-guides-lottery-game-introduction__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-game-guides-lottery-game-introduction__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
    color: var(--page-text-dark);
}

.page-game-guides-lottery-game-introduction__list li::before {
    content: '•';
    color: var(--page-accent-color);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-game-guides-lottery-game-introduction__list--bullet li::before {
    content: '\2022'; /* Unicode bullet */
    color: var(--page-accent-color);
    font-size: 1.5em;
    line-height: 1;
    top: 2px;
}

.page-game-guides-lottery-game-introduction__list--checked li::before {
    content: '\2713'; /* Unicode checkmark */
    color: #28a745; /* Green for success/check */
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
    top: 2px;
}

.page-game-guides-lottery-game-introduction__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-game-guides-lottery-game-introduction__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--page-text-dark);
}

.page-game-guides-lottery-game-introduction__cta-block {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides-lottery-game-introduction__cta-block p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-text-light);
}

.page-game-guides-lottery-game-introduction__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.page-game-guides-lottery-game-introduction__faq-item:hover {
    background-color: #f0f0f0;
}

.page-game-guides-lottery-game-introduction__faq-question {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-guides-lottery-game-introduction__faq-answer {
    font-size: 1.1em;
    color: var(--page-text-dark);
}

.page-game-guides-lottery-game-introduction__faq-answer a {
    color: var(--page-primary-color);
    text-decoration: underline;
}

.page-game-guides-lottery-game-introduction__faq-answer a:hover {
    color: var(--page-accent-color);
}

.page-game-guides-lottery-game-introduction__final-cta {
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
    padding: 80px 0;
}

.page-game-guides-lottery-game-introduction__final-cta .page-game-guides-lottery-game-introduction__heading {
    color: var(--page-text-light);
}

.page-game-guides-lottery-game-introduction__final-cta .page-game-guides-lottery-game-introduction__heading::after {
    background-color: var(--page-accent-color);
}

.page-game-guides-lottery-game-introduction__final-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--page-text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-guides-lottery-game-introduction__title {
        font-size: 2.5em;
    }

    .page-game-guides-lottery-game-introduction__subtitle {
        font-size: 1.2em;
    }

    .page-game-guides-lottery-game-introduction__heading {
        font-size: 2em;
    }

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

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

    .page-game-guides-lottery-game-introduction__game-card {
        padding: 20px;
    }

    .page-game-guides-lottery-game-introduction__game-title {
        font-size: 1.5em;
    }

    .page-game-guides-lottery-game-introduction__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-lottery-game-introduction__title {
        font-size: 2em;
    }

    .page-game-guides-lottery-game-introduction__subtitle {
        font-size: 1em;
    }

    .page-game-guides-lottery-game-introduction__hero {
        padding: 60px 0;
    }

    .page-game-guides-lottery-game-introduction__heading {
        font-size: 1.8em;
    }

    .page-game-guides-lottery-game-introduction__btn {
        display: block;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .page-game-guides-lottery-game-introduction__cta-block p,
    .page-game-guides-lottery-game-introduction__final-cta p {
        font-size: 1em;
    }
}