/* style/lottery-games-fast-lottery.css */
.page-lottery-games-fast-lottery {
    font-family: 'Arial', sans-serif;
    color: #e5e5d1; /* Light text for dark background */
    background-color: #1A1A2E;
}

.page-lottery-games-fast-lottery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-lottery-games-fast-lottery__hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Dark gradient for premium feel */
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-lottery-games-fast-lottery__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-lottery-games-fast-lottery__hero .page-lottery-games-fast-lottery__container {
    position: relative;
    z-index: 1;
}

.page-lottery-games-fast-lottery__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-fast-lottery__subtitle {
    font-size: 1.5em;
    color: #e5e5d1;
    margin-bottom: 40px;
}

.page-lottery-games-fast-lottery__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-lottery-games-fast-lottery__btn {
    display: inline-block;
    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;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-lottery-games-fast-lottery__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A1A2E; /* Dark text for contrast */
}

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

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

.page-lottery-games-fast-lottery__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-lottery-games-fast-lottery__btn--read-more {
    background-color: #3a3a5e;
    color: #e5e5d1;
    padding: 10px 25px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 20px;
}

.page-lottery-games-fast-lottery__btn--read-more:hover {
    background-color: #4c4c7a;
}

.page-lottery-games-fast-lottery__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #FFD700;
    color: #1A1A2E;
    margin-top: 10px;
}

.page-lottery-games-fast-lottery__btn--small:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-lottery-games-fast-lottery__section {
    padding: 60px 0;
    text-align: center;
}

.page-lottery-games-fast-lottery__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

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

.page-lottery-games-fast-lottery__introduction p,
.page-lottery-games-fast-lottery__tips-strategies p,
.page-lottery-games-fast-lottery__offers p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e5e5d1;
    text-align: justify;
}

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

.page-lottery-games-fast-lottery__card {
    background-color: #2a2a4a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-fast-lottery__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-fast-lottery__card-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

.page-lottery-games-fast-lottery__card-description {
    font-size: 1em;
    color: #e5e5d1;
    line-height: 1.7;
    text-align: justify;
}

.page-lottery-games-fast-lottery__how-to-play .page-lottery-games-fast-lottery__section-title {
    margin-bottom: 40px;
}

.page-lottery-games-fast-lottery__steps-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-lottery-games-fast-lottery__steps-list li {
    background-color: #2a2a4a;
    border-left: 5px solid #FFD700;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-fast-lottery__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-lottery-games-fast-lottery__steps-list p {
    font-size: 1.05em;
    color: #e5e5d1;
    line-height: 1.6;
    text-align: justify;
}

.page-lottery-games-fast-lottery__steps-list a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-lottery-games-fast-lottery__steps-list a:hover {
    text-decoration: underline;
}

.page-lottery-games-fast-lottery__how-to-play-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

.page-lottery-games-fast-lottery__list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.page-lottery-games-fast-lottery__list li {
    background-color: #2a2a4a;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    line-height: 1.7;
    color: #e5e5d1;
}

.page-lottery-games-fast-lottery__list li strong {
    color: #FFD700;
}

.page-lottery-games-fast-lottery__list a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-lottery-games-fast-lottery__list a:hover {
    text-decoration: underline;
}

.page-lottery-games-fast-lottery__grid--features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-lottery-games-fast-lottery__feature-item {
    background-color: #2a2a4a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-fast-lottery__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-fast-lottery__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

.page-lottery-games-fast-lottery__feature-item p {
    font-size: 1em;
    color: #e5e5d1;
    line-height: 1.7;
    text-align: justify;
}

.page-lottery-games-fast-lottery__accordion {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-lottery-games-fast-lottery__accordion-item {
    background-color: #2a2a4a;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-fast-lottery__accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.3em;
    color: #FFD700;
    position: relative;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-lottery-games-fast-lottery__accordion-header:hover {
    background-color: #3a3a5e;
}

.page-lottery-games-fast-lottery__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
}

.page-lottery-games-fast-lottery__accordion-item.active .page-lottery-games-fast-lottery__accordion-header::after {
    content: '-';
}

.page-lottery-games-fast-lottery__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-lottery-games-fast-lottery__accordion-item.active .page-lottery-games-fast-lottery__accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding-bottom: 20px;
}

.page-lottery-games-fast-lottery__accordion-content p {
    font-size: 1em;
    color: #e5e5d1;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
}

.page-lottery-games-fast-lottery__accordion-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-lottery-games-fast-lottery__accordion-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-fast-lottery__title {
        font-size: 2.8em;
    }
    .page-lottery-games-fast-lottery__subtitle {
        font-size: 1.3em;
    }
    .page-lottery-games-fast-lottery__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-fast-lottery__hero {
        padding: 80px 0;
    }
    .page-lottery-games-fast-lottery__title {
        font-size: 2.2em;
    }
    .page-lottery-games-fast-lottery__subtitle {
        font-size: 1.1em;
    }
    .page-lottery-games-fast-lottery__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-lottery-games-fast-lottery__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-lottery-games-fast-lottery__section {
        padding: 40px 0;
    }
    .page-lottery-games-fast-lottery__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games-fast-lottery__card {
        padding: 20px;
    }
    .page-lottery-games-fast-lottery__card-title {
        font-size: 1.5em;
    }
    .page-lottery-games-fast-lottery__steps-list li {
        padding: 20px;
    }
    .page-lottery-games-fast-lottery__step-title {
        font-size: 1.3em;
    }
    .page-lottery-games-fast-lottery__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-lottery-games-fast-lottery__accordion-header::after {
        right: 20px;
    }
    .page-lottery-games-fast-lottery__accordion-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-fast-lottery__hero {
        padding: 60px 0;
    }
    .page-lottery-games-fast-lottery__title {
        font-size: 1.8em;
    }
    .page-lottery-games-fast-lottery__subtitle {
        font-size: 1em;
    }
    .page-lottery-games-fast-lottery__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-lottery-games-fast-lottery__section-title {
        font-size: 1.5em;
    }
    .page-lottery-games-fast-lottery__introduction p,
    .page-lottery-games-fast-lottery__tips-strategies p,
    .page-lottery-games-fast-lottery__offers p,
    .page-lottery-games-fast-lottery__card-description,
    .page-lottery-games-fast-lottery__steps-list p,
    .page-lottery-games-fast-lottery__list li,
    .page-lottery-games-fast-lottery__feature-item p,
    .page-lottery-games-fast-lottery__accordion-content p {
        font-size: 0.95em;
    }
    .page-lottery-games-fast-lottery__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-lottery-games-fast-lottery__feature-title {
        font-size: 1.4em;
    }
}