/* style/lottery-games.css */
.page-lottery-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for readability on dark background */
    line-height: 1.6;
    background-color: #0A192F; /* Main background color */
}

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

.page-lottery-games__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a5a 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-lottery-games__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-games__hero-title .highlight {
    color: #FFD700; /* Auxiliary gold color */
}

.page-lottery-games__hero-description {
    font-size: 1.2em;
    color: #B0B0B0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

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

.page-lottery-games__btn--primary {
    background-color: #FFD700; /* Auxiliary gold for primary CTA */
    color: #0A192F; /* Dark text for contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-lottery-games__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-lottery-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-lottery-games__hero-image-wrapper {
    margin-top: 50px;
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-lottery-games__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-lottery-games__section:last-of-type {
    border-bottom: none;
}

.page-lottery-games__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__section-subtitle {
    font-size: 1.3em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 40px;
}

.page-lottery-games__text-content {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-lottery-games__game-card {
    background-color: #1a2f4a; /* Slightly lighter dark blue */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.page-lottery-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-lottery-games__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-lottery-games__game-card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 25px 15px 15px 15px;
    font-weight: bold;
}

.page-lottery-games__game-card-description {
    font-size: 1em;
    color: #C0C0C0;
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-lottery-games__btn--card {
    background-color: #FFD700;
    color: #0A192F;
    padding: 12px 25px;
    border-radius: 0 0 10px 10px;
    margin-top: auto;
    width: 100%;
    box-shadow: none;
}

.page-lottery-games__btn--card:hover {
    background-color: #e6c200;
    transform: none;
}

.page-lottery-games__why-choose-us {
    background-color: #0A192F;
}

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

.page-lottery-games__feature-item {
    background-color: #1a2f4a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-lottery-games__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-lottery-games__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-lottery-games__feature-description {
    font-size: 1em;
    color: #C0C0C0;
}

.page-lottery-games__getting-started {
    background-color: #0A192F;
}

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

.page-lottery-games__step-item {
    background-color: #1a2f4a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-lottery-games__step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #0A192F;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

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

.page-lottery-games__step-description {
    font-size: 1em;
    color: #C0C0C0;
}

.page-lottery-games__call-to-action {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(90deg, #0A192F, #1a2f4a);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-games__call-to-action-text {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-lottery-games__faq {
    background-color: #0A192F;
}

.page-lottery-games__faq-list {
    margin-top: 40px;
}

.page-lottery-games__faq-item {
    background-color: #1a2f4a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-games__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-lottery-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-lottery-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-lottery-games__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #C0C0C0;
    font-size: 1em;
}

.page-lottery-games__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 20px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-lottery-games__hero-title {
        font-size: 3em;
    }
    .page-lottery-games__section-title {
        font-size: 2.2em;
    }
    .page-lottery-games__hero-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-lottery-games__hero {
        padding: 60px 0;
    }
    .page-lottery-games__hero-title {
        font-size: 2.5em;
    }
    .page-lottery-games__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .page-lottery-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-lottery-games__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-lottery-games__section {
        padding: 40px 0;
    }
    .page-lottery-games__section-title {
        font-size: 2em;
    }
    .page-lottery-games__game-grid, .page-lottery-games__features-grid, .page-lottery-games__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games__game-card-image {
        height: 180px;
    }
    .page-lottery-games__game-card-title {
        font-size: 1.6em;
    }
    .page-lottery-games__call-to-action {
        padding: 30px;
    }
    .page-lottery-games__call-to-action-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-lottery-games__hero-title {
        font-size: 2em;
    }
    .page-lottery-games__hero-description {
        font-size: 1em;
    }
    .page-lottery-games__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-lottery-games__game-card-title {
        font-size: 1.4em;
    }
    .page-lottery-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-lottery-games__faq-answer.open {
        padding: 10px 20px 15px 20px;
    }
}