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

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

.page-lottery-games__hero {
    background: linear-gradient(135deg, #0A244A 0%, #1A3F70 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-lottery-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-lottery-games__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-lottery-games__subtitle {
    font-size: 1.4em;
    color: #C0C0C0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-lottery-games__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A244A; /* Dark blue text on gold */
}

.page-lottery-games__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-games__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-lottery-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A244A; /* Dark blue text on gold */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-lottery-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(3px);
}

.page-lottery-games__section {
    padding: 60px 0;
    background-color: #0A244A;
}

.page-lottery-games__section:nth-of-type(even) {
    background-color: #1A3F70; /* Slightly lighter dark blue for alternating sections */
}

.page-lottery-games__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-lottery-games__section-description {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-lottery-games__feature-item,
.page-lottery-games__promo-card,
.page-lottery-games__step-item {
    background-color: #1A3F70;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games__feature-item:hover,
.page-lottery-games__promo-card:hover,
.page-lottery-games__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-games__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

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

.page-lottery-games__feature-text,
.page-lottery-games__promo-text {
    font-size: 1em;
    color: #E0E0E0;
}

.page-lottery-games__game-tabs {
    margin-top: 40px;
}

.page-lottery-games__tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.page-lottery-games__tab-btn {
    background-color: #1A3F70;
    color: #C0C0C0;
    border: 1px solid #FFD700;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.page-lottery-games__tab-btn:hover {
    background-color: #FFD700;
    color: #0A244A;
}

.page-lottery-games__tab-btn--active {
    background-color: #FFD700;
    color: #0A244A;
    border-color: #FFD700;
    font-weight: bold;
}

.page-lottery-games__tab-content {
    display: none;
    background-color: #1A3F70;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__tab-content--active {
    display: block;
}

.page-lottery-games__game-type-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
}

.page-lottery-games__game-type-detail {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-lottery-games__game-type-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__game-type-text {
    flex: 1;
    min-width: 300px;
    color: #E0E0E0;
}

.page-lottery-games__game-type-text p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-lottery-games__game-type-text ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-lottery-games__game-type-text ul li {
    margin-bottom: 8px;
}

.page-lottery-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-lottery-games__step-number {
    background-color: #FFD700;
    color: #0A244A;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.page-lottery-games__promo-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-lottery-games__app-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.page-lottery-games__app-text {
    flex: 1;
    min-width: 300px;
    color: #E0E0E0;
}

.page-lottery-games__app-text p {
    margin-bottom: 15px;
}

.page-lottery-games__app-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-lottery-games__app-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-lottery-games__app-text ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-lottery-games__download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.page-lottery-games__btn--download {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FFD700;
    color: #0A244A;
    padding: 12px 25px;
}

.page-lottery-games__btn--download img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.page-lottery-games__btn--download:hover {
    background-color: #E6C200;
}

.page-lottery-games__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.page-lottery-games__app-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-lottery-games__flex-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-lottery-games__support-card,
.page-lottery-games__responsible-card {
    background-color: #1A3F70;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    color: #E0E0E0;
}

.page-lottery-games__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.page-lottery-games__support-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 25px;
}

.page-lottery-games__support-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-lottery-games__support-card ul li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
}

.page-lottery-games__responsible-card p {
    margin-bottom: 15px;
}

.page-lottery-games__cta-final {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
}

.page-lottery-games__cta-final-content {
    color: #0A244A;
}

.page-lottery-games__cta-final .page-lottery-games__section-title {
    color: #0A244A;
    font-size: 3em;
    margin-bottom: 20px;
}

.page-lottery-games__cta-final .page-lottery-games__section-description {
    color: #333;
    margin-bottom: 40px;
}

.page-lottery-games__btn--large {
    padding: 18px 45px;
    font-size: 1.2em;
}

.page-lottery-games__cta-final .page-lottery-games__btn--primary {
    background-color: #0A244A;
    color: #FFD700;
    margin-right: 15px;
    border: 2px solid #0A244A;
}

.page-lottery-games__cta-final .page-lottery-games__btn--primary:hover {
    background-color: #1A3F70;
    color: #FFD700;
    border-color: #1A3F70;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__cta-final .page-lottery-games__btn--secondary {
    background-color: transparent;
    color: #0A244A;
    border: 2px solid #0A244A;
}

.page-lottery-games__cta-final .page-lottery-games__btn--secondary:hover {
    background-color: #0A244A;
    color: #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-lottery-games__title {
        font-size: 2.8em;
    }
    .page-lottery-games__section-title {
        font-size: 2em;
    }
    .page-lottery-games__hero {
        padding: 60px 0;
        min-height: 400px;
    }
    .page-lottery-games__game-type-detail {
        flex-direction: column;
        text-align: center;
    }
    .page-lottery-games__game-type-image {
        max-width: 100%;
    }
    .page-lottery-games__app-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    .page-lottery-games__download-buttons {
        justify-content: center;
    }
    .page-lottery-games__cta-final .page-lottery-games__section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-lottery-games__title {
        font-size: 2.2em;
    }
    .page-lottery-games__subtitle {
        font-size: 1.2em;
    }
    .page-lottery-games__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-lottery-games__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-lottery-games__features-grid,
    .page-lottery-games__promo-grid,
    .page-lottery-games__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games__tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-lottery-games__tab-btn {
        width: 80%;
        max-width: 250px;
    }
    .page-lottery-games__flex-wrapper {
        flex-direction: column;
    }
    .page-lottery-games__cta-final .page-lottery-games__btn--large {
        width: 90%;
        margin: 10px 0;
    }
    .page-lottery-games__cta-final .page-lottery-games__btn--primary {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .page-lottery-games__title {
        font-size: 1.8em;
    }
    .page-lottery-games__subtitle {
        font-size: 1em;
    }
    .page-lottery-games__section-title {
        font-size: 1.5em;
    }
    .page-lottery-games__hero {
        padding: 40px 0;
        min-height: 350px;
    }
    .page-lottery-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-lottery-games__cta-final .page-lottery-games__section-title {
        font-size: 2em;
    }
}