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

.page-lottery-games-fast-3__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.page-lottery-games-fast-3__hero-content {
    max-width: 800px;
    text-align: center;
}

.page-lottery-games-fast-3__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffc107;
    line-height: 1.2;
}

.page-lottery-games-fast-3__hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-lottery-games-fast-3__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
}

.page-lottery-games-fast-3__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-fast-3__section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-lottery-games-fast-3__section:nth-of-type(even) {
    background-color: #fff;
}

.page-lottery-games-fast-3__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-lottery-games-fast-3__section h2 {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-lottery-games-fast-3__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-lottery-games-fast-3__about p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-lottery-games-fast-3__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-fast-3__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-lottery-games-fast-3__card-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-lottery-games-fast-3__card h3 {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-lottery-games-fast-3__card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
    text-align: left;
}

.page-lottery-games-fast-3__card ul {
    list-style: disc inside;
    text-align: left;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-lottery-games-fast-3__card ul li {
    margin-bottom: 5px;
    color: #555;
}

.page-lottery-games-fast-3__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.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-lottery-games-fast-3__btn--primary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

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

.page-lottery-games-fast-3__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-lottery-games-fast-3__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-lottery-games-fast-3__btn--link {
    background: none;
    color: #007bff;
    border: none;
    padding: 5px 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-lottery-games-fast-3__btn--link:hover {
    color: #0056b3;
    text-decoration: none;
    transform: none;
}

.page-lottery-games-fast-3__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-lottery-games-fast-3__btn--xl {
    padding: 20px 40px;
    font-size: 1.3em;
    margin: 15px 10px;
}

.page-lottery-games-fast-3__cta-banner {
    background-color: #007bff;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-fast-3__cta-banner p {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #fff;
}

.page-lottery-games-fast-3__why-92lottery .page-lottery-games-fast-3__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-lottery-games-fast-3__why-92lottery .page-lottery-games-fast-3__list li {
    background-color: #eaf6ff;
    border-left: 5px solid #007bff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-fast-3__why-92lottery .page-lottery-games-fast-3__list li strong {
    color: #0056b3;
}

.page-lottery-games-fast-3__tips .page-lottery-games-fast-3__tip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-lottery-games-fast-3__tips .page-lottery-games-fast-3__tip-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-lottery-games-fast-3__tips .page-lottery-games-fast-3__tip-item h3 {
    font-size: 1.5em;
    color: #ffc107;
    margin-bottom: 10px;
}

.page-lottery-games-fast-3__tips .page-lottery-games-fast-3__tip-item p {
    color: #555;
    font-size: 1em;
}

.page-lottery-games-fast-3__faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-fast-3__faq-item h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-lottery-games-fast-3__faq-item p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1em;
}

.page-lottery-games-fast-3__call-to-action {
    background: linear-gradient(to right, #0056b3, #007bff);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-lottery-games-fast-3__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-lottery-games-fast-3__cta-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-fast-3__call-to-action h2 {
    color: #ffc107;
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-lottery-games-fast-3__call-to-action p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-fast-3__hero {
        flex-direction: column;
        padding: 60px 15px;
    }

    .page-lottery-games-fast-3__hero h1 {
        font-size: 2.5em;
    }

    .page-lottery-games-fast-3__hero p {
        font-size: 1.1em;
    }

    .page-lottery-games-fast-3__section h2 {
        font-size: 2em;
    }

    .page-lottery-games-fast-3__grid {
        grid-template-columns: 1fr;
    }

    .page-lottery-games-fast-3__card {
        padding: 25px;
    }

    .page-lottery-games-fast-3__card h3 {
        font-size: 1.4em;
    }

    .page-lottery-games-fast-3__cta-banner p {
        font-size: 1.2em;
    }

    .page-lottery-games-fast-3__call-to-action h2 {
        font-size: 2.2em;
    }

    .page-lottery-games-fast-3__call-to-action p {
        font-size: 1.1em;
    }

    .page-lottery-games-fast-3__btn--xl {
        padding: 18px 35px;
        font-size: 1.2em;
        margin: 10px 5px;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-fast-3__hero h1 {
        font-size: 2em;
    }

    .page-lottery-games-fast-3__hero p {
        font-size: 1em;
    }

    .page-lottery-games-fast-3__section {
        padding: 40px 15px;
    }

    .page-lottery-games-fast-3__section h2 {
        font-size: 1.8em;
    }

    .page-lottery-games-fast-3__card h3 {
        font-size: 1.3em;
    }

    .page-lottery-games-fast-3__cta-banner p {
        font-size: 1em;
    }

    .page-lottery-games-fast-3__call-to-action h2 {
        font-size: 1.8em;
    }

    .page-lottery-games-fast-3__call-to-action p {
        font-size: 1em;
    }

    .page-lottery-games-fast-3__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-lottery-games-fast-3__btn--xl {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}