/* style/game-guides-lottery.css */
.page-game-guides-lottery {
    font-family: 'Arial', sans-serif;
    color: #1A202C; /* Main text color */
    line-height: 1.6;
    background-color: #F8F8F8;
}

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

.page-game-guides-lottery__hero-section {
    background: linear-gradient(135deg, #1A202C, #3A404C);
    color: #FFFFFF;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-lottery__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-lottery__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-game-guides-lottery__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 30px;
    border-radius: 8px;
    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-guides-lottery__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-guides-lottery__cta-button--secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-guides-lottery__cta-button--secondary:hover {
    background-color: #3A404C;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-game-guides-lottery__content-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-game-guides-lottery__text-block {
    margin-bottom: 50px;
    background-color: #FDFDFD;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-lottery__section-title {
    font-size: 2.2em;
    color: #1A202C;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-game-guides-lottery__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-game-guides-lottery__subsection-title {
    font-size: 1.6em;
    color: #1A202C;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-game-guides-lottery__text-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-game-guides-lottery__text-block ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-game-guides-lottery__text-block li {
    margin-bottom: 10px;
    color: #333333;
}

.page-game-guides-lottery__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-lottery__faq-item {
    background-color: #F0F2F5;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.page-game-guides-lottery__faq-question {
    font-size: 1.3em;
    color: #1A202C;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-guides-lottery__faq-answer {
    font-size: 1em;
    color: #444444;
}

.page-game-guides-lottery__faq-answer a {
    color: #1A202C;
    text-decoration: underline;
}

.page-game-guides-lottery__faq-answer a:hover {
    color: #FFD700;
}

.page-game-guides-lottery__final-cta {
    text-align: center;
    padding: 40px;
    background-color: #1A202C;
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides-lottery__final-cta .page-game-guides-lottery__section-title {
    color: #FFD700;
}

.page-game-guides-lottery__final-cta .page-game-guides-lottery__section-title::after {
    background-color: #FFFFFF;
}

.page-game-guides-lottery__final-cta p {
    color: #E0E0E0;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-game-guides-lottery__final-cta .page-game-guides-lottery__cta-button {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-guides-lottery__hero-title {
        font-size: 2.5em;
    }
    .page-game-guides-lottery__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-guides-lottery__section-title {
        font-size: 1.8em;
    }
    .page-game-guides-lottery__subsection-title {
        font-size: 1.4em;
    }
    .page-game-guides-lottery__text-block {
        padding: 20px;
    }
    .page-game-guides-lottery__text-block p {
        font-size: 1em;
    }
    .page-game-guides-lottery__faq-question {
        font-size: 1.1em;
    }
    .page-game-guides-lottery__faq-answer {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-lottery__hero-title {
        font-size: 2em;
    }
    .page-game-guides-lottery__hero-subtitle {
        font-size: 1em;
    }
    .page-game-guides-lottery__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-guides-lottery__section-title {
        font-size: 1.6em;
    }
    .page-game-guides-lottery__subsection-title {
        font-size: 1.2em;
    }
    .page-game-guides-lottery__text-block {
        padding: 15px;
    }
    .page-game-guides-lottery__final-cta p {
        font-size: 1em;
    }
}