/* style/games-lottery-games-analysis.css */

.page-games-lottery-games-analysis {
    font-family: 'Arial', sans-serif;
    color: #F5F5DC; /* Light background for text */
    background-color: #0A2239; /* Main dark background */
    line-height: 1.6;
}

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

.page-games-lottery-games-analysis__hero {
    background: linear-gradient(135deg, #0A2239, #1a4d7e);
    padding: 100px 0;
    text-align: center;
    color: #F5F5DC;
}

.page-games-lottery-games-analysis__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-games-lottery-games-analysis__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #F5F5DC;
}

.page-games-lottery-games-analysis__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-games-lottery-games-analysis__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-games-lottery-games-analysis__btn--primary {
    background-color: #FFD700;
    color: #0A2239;
}

.page-games-lottery-games-analysis__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-games-lottery-games-analysis__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-games-lottery-games-analysis__section {
    padding: 80px 0;
    color: #F5F5DC;
}

.page-games-lottery-games-analysis__section--intro {
    background-color: #0A2239;
}

.page-games-lottery-games-analysis__section--types {
    background-color: #1a4d7e;
}

.page-games-lottery-games-analysis__section--strategy {
    background-color: #0A2239;
}

.page-games-lottery-games-analysis__section--cta {
    background-color: #1a4d7e;
    text-align: center;
}

.page-games-lottery-games-analysis__section--faq {
    background-color: #0A2239;
}

.page-games-lottery-games-analysis__section--conclusion {
    background-color: #1a4d7e;
    text-align: center;
}

.page-games-lottery-games-analysis__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

.page-games-lottery-games-analysis__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F5F5DC;
}

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

.page-games-lottery-games-analysis__card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-games-lottery-games-analysis__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-lottery-games-analysis__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #F5F5DC;
}

.page-games-lottery-games-analysis__list li {
    margin-bottom: 8px;
}

.page-games-lottery-games-analysis__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-games-lottery-games-analysis__strategy-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-games-lottery-games-analysis__strategy-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-lottery-games-analysis__numbered-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
    color: #F5F5DC;
}

.page-games-lottery-games-analysis__numbered-list li {
    counter-increment: my-awesome-counter;
    margin-bottom: 20px;
    font-size: 1.1em;
    padding-left: 40px;
    position: relative;
}

.page-games-lottery-games-analysis__numbered-list li::before {
    content: counter(my-awesome-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #0A2239;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-games-lottery-games-analysis__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-games-lottery-games-analysis__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-lottery-games-analysis__faq-answer {
    font-size: 1.05em;
    color: #F5F5DC;
}

.page-games-lottery-games-analysis__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.page-games-lottery-games-analysis__image--full-width {
    margin: 60px auto;
}

.page-games-lottery-games-analysis .highlight {
    color: #FFD700;
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-games-lottery-games-analysis__title {
        font-size: 2.5em;
    }

    .page-games-lottery-games-analysis__subtitle {
        font-size: 1.1em;
    }

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

    .page-games-lottery-games-analysis__grid, .page-games-lottery-games-analysis__strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-games-lottery-games-analysis__actions {
        flex-direction: column;
    }

    .page-games-lottery-games-analysis__btn {
        width: 100%;
        max-width: 300px;
    }
}

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

    .page-games-lottery-games-analysis__hero {
        padding: 60px 0;
    }

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

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

    .page-games-lottery-games-analysis__card, .page-games-lottery-games-analysis__strategy-item, .page-games-lottery-games-analysis__faq-item {
        padding: 20px;
    }
}