/* style/lottery-games-high-frequency-intro.css */
:root {
    --page-lottery-games-high-frequency-intro-primary-color: #4B0082;
    --page-lottery-games-high-frequency-intro-secondary-color: #FFD700;
    --page-lottery-games-high-frequency-intro-text-dark: #333;
    --page-lottery-games-high-frequency-intro-text-light: #fff;
    --page-lottery-games-high-frequency-intro-bg-light: #f9f9f9;
    --page-lottery-games-high-frequency-intro-bg-dark: #3a0063;
    --page-lottery-games-high-frequency-intro-accent-color: #b4ff7d; /* Complementary to primary */
}

.page-lottery-games-high-frequency-intro {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-lottery-games-high-frequency-intro-text-dark);
    background-color: var(--page-lottery-games-high-frequency-intro-bg-light);
}

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

.page-lottery-games-high-frequency-intro__hero {
    background: linear-gradient(135deg, var(--page-lottery-games-high-frequency-intro-primary-color), var(--page-lottery-games-high-frequency-intro-bg-dark));
    color: var(--page-lottery-games-high-frequency-intro-text-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-high-frequency-intro__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-lottery-games-high-frequency-intro__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-lottery-games-high-frequency-intro-text-light);
    line-height: 1.2;
}

.page-lottery-games-high-frequency-intro__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--page-lottery-games-high-frequency-intro-text-light);
}

.page-lottery-games-high-frequency-intro__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.page-lottery-games-high-frequency-intro__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

.page-lottery-games-high-frequency-intro__section {
    padding: 60px 0;
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) {
    background-color: var(--page-lottery-games-high-frequency-intro-bg-dark);
    color: var(--page-lottery-games-high-frequency-intro-text-light);
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__section-title {
    color: var(--page-lottery-games-high-frequency-intro-secondary-color);
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__text {
    color: var(--page-lottery-games-high-frequency-intro-text-light);
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__link {
    color: var(--page-lottery-games-high-frequency-intro-secondary-color);
}

.page-lottery-games-high-frequency-intro__section-title {
    font-size: 2.8em;
    color: var(--page-lottery-games-high-frequency-intro-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-lottery-games-high-frequency-intro__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-lottery-games-high-frequency-intro__text--center {
    text-align: center;
}

.page-lottery-games-high-frequency-intro__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.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-lottery-games-high-frequency-intro__btn--primary {
    background-color: var(--page-lottery-games-high-frequency-intro-secondary-color);
    color: var(--page-lottery-games-high-frequency-intro-primary-color);
}

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

.page-lottery-games-high-frequency-intro__btn--secondary {
    background-color: transparent;
    border: 2px solid var(--page-lottery-games-high-frequency-intro-secondary-color);
    color: var(--page-lottery-games-high-frequency-intro-secondary-color);
    margin-left: 20px;
}

.page-lottery-games-high-frequency-intro__btn--secondary:hover {
    background-color: var(--page-lottery-games-high-frequency-intro-secondary-color);
    color: var(--page-lottery-games-high-frequency-intro-primary-color);
    transform: translateY(-3px);
}

.page-lottery-games-high-frequency-intro__btn--lg {
    padding: 18px 40px;
    font-size: 1.3em;
}

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

.page-lottery-games-high-frequency-intro__feature-item {
    background-color: var(--page-lottery-games-high-frequency-intro-text-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-lottery-games-high-frequency-intro__feature-item:hover {
    transform: translateY(-10px);
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__feature-item {
    background-color: var(--page-lottery-games-high-frequency-intro-bg-light);
}

.page-lottery-games-high-frequency-intro__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-lottery-games-high-frequency-intro__feature-title {
    font-size: 1.6em;
    color: var(--page-lottery-games-high-frequency-intro-primary-color);
    margin-bottom: 15px;
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__feature-title {
    color: var(--page-lottery-games-high-frequency-intro-bg-dark);
}

.page-lottery-games-high-frequency-intro__feature-description {
    font-size: 1em;
    color: var(--page-lottery-games-high-frequency-intro-text-dark);
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__feature-description {
    color: var(--page-lottery-games-high-frequency-intro-text-dark);
}

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

.page-lottery-games-high-frequency-intro__game-item {
    background-color: var(--page-lottery-games-high-frequency-intro-text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-lottery-games-high-frequency-intro__game-item:hover {
    transform: translateY(-10px);
}

.page-lottery-games-high-frequency-intro__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-lottery-games-high-frequency-intro__game-title {
    font-size: 1.8em;
    color: var(--page-lottery-games-high-frequency-intro-primary-color);
    margin: 20px 0 10px;
}

.page-lottery-games-high-frequency-intro__game-description {
    padding: 0 20px 20px;
    font-size: 1em;
    color: var(--page-lottery-games-high-frequency-intro-text-dark);
}

.page-lottery-games-high-frequency-intro__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-lottery-games-high-frequency-intro__step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--page-lottery-games-high-frequency-intro-text-light);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__step-item {
    background-color: var(--page-lottery-games-high-frequency-intro-bg-light);
}

.page-lottery-games-high-frequency-intro__step-number {
    background-color: var(--page-lottery-games-high-frequency-intro-secondary-color);
    color: var(--page-lottery-games-high-frequency-intro-primary-color);
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-high-frequency-intro__step-title {
    font-size: 1.5em;
    color: var(--page-lottery-games-high-frequency-intro-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__step-title {
    color: var(--page-lottery-games-high-frequency-intro-bg-dark);
}

.page-lottery-games-high-frequency-intro__step-description {
    font-size: 1em;
    color: var(--page-lottery-games-high-frequency-intro-text-dark);
}

.page-lottery-games-high-frequency-intro__section:nth-of-type(even) .page-lottery-games-high-frequency-intro__step-description {
    color: var(--page-lottery-games-high-frequency-intro-text-dark);
}

.page-lottery-games-high-frequency-intro__xsmb-content, .page-lottery-games-high-frequency-intro__app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-lottery-games-high-frequency-intro__xsmb-image, .page-lottery-games-high-frequency-intro__app-image {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    height: auto;
    object-fit: cover;
}

.page-lottery-games-high-frequency-intro__xsmb-text, .page-lottery-games-high-frequency-intro__app-text {
    width: 50%;
}

.page-lottery-games-high-frequency-intro__app-download .page-lottery-games-high-frequency-intro__app-image {
    order: 2; /* Move image to the right on desktop */
}

.page-lottery-games-high-frequency-intro__app-download .page-lottery-games-high-frequency-intro__app-text {
    order: 1; /* Move text to the left on desktop */
}

.page-lottery-games-high-frequency-intro__cta {
    text-align: center;
    background-color: var(--page-lottery-games-high-frequency-intro-bg-dark);
    color: var(--page-lottery-games-high-frequency-intro-text-light);
    padding: 80px 20px;
}

.page-lottery-games-high-frequency-intro__cta .page-lottery-games-high-frequency-intro__section-title {
    color: var(--page-lottery-games-high-frequency-intro-secondary-color);
}

.page-lottery-games-high-frequency-intro__cta .page-lottery-games-high-frequency-intro__text {
    color: var(--page-lottery-games-high-frequency-intro-text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-high-frequency-intro__link {
    color: var(--page-lottery-games-high-frequency-intro-secondary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-lottery-games-high-frequency-intro__link:hover {
    color: #e6c200;
}

.page-lottery-games-high-frequency-intro .highlight {
    color: var(--page-lottery-games-high-frequency-intro-secondary-color);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-lottery-games-high-frequency-intro__hero-title {
        font-size: 2.8em;
    }
    .page-lottery-games-high-frequency-intro__hero-subtitle {
        font-size: 1.3em;
    }
    .page-lottery-games-high-frequency-intro__section-title {
        font-size: 2.2em;
    }
    .page-lottery-games-high-frequency-intro__xsmb-content, .page-lottery-games-high-frequency-intro__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-lottery-games-high-frequency-intro__xsmb-image, .page-lottery-games-high-frequency-intro__app-image,
    .page-lottery-games-high-frequency-intro__xsmb-text, .page-lottery-games-high-frequency-intro__app-text {
        width: 100%;
    }
    .page-lottery-games-high-frequency-intro__app-download .page-lottery-games-high-frequency-intro__app-image {
        order: 1; /* Image first on mobile */
    }
    .page-lottery-games-high-frequency-intro__app-download .page-lottery-games-high-frequency-intro__app-text {
        order: 2; /* Text after image on mobile */
    }
}

@media (max-width: 768px) {
    .page-lottery-games-high-frequency-intro__hero {
        padding: 60px 15px;
    }
    .page-lottery-games-high-frequency-intro__hero-title {
        font-size: 2.2em;
    }
    .page-lottery-games-high-frequency-intro__hero-subtitle {
        font-size: 1.1em;
    }
    .page-lottery-games-high-frequency-intro__section {
        padding: 40px 0;
    }
    .page-lottery-games-high-frequency-intro__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games-high-frequency-intro__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-lottery-games-high-frequency-intro__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-lottery-games-high-frequency-intro__feature-grid, .page-lottery-games-high-frequency-intro__game-list {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-high-frequency-intro__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-lottery-games-high-frequency-intro__step-number {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-high-frequency-intro__hero-title {
        font-size: 1.8em;
    }
    .page-lottery-games-high-frequency-intro__hero-subtitle {
        font-size: 0.9em;
    }
    .page-lottery-games-high-frequency-intro__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-lottery-games-high-frequency-intro__hero-content .page-lottery-games-high-frequency-intro__btn {
        width: 100%;
        margin-bottom: 15px;
    }
}