/* style/lottery-games-high-frequency-lottery.css */
.page-lottery-games-high-frequency-lottery {
    font-family: 'Arial', sans-serif;
    color: #f7fafc; /* Light text for dark background */
    line-height: 1.6;
    background-color: #1A202C;
}

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

.page-lottery-games-high-frequency-lottery__hero {
    background: linear-gradient(135deg, #1A202C 0%, #303642 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-high-frequency-lottery__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-lottery-games-high-frequency-lottery__hero-title {
    font-size: 3.5em;
    color: #E53E3E;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-lottery-games-high-frequency-lottery__hero-description {
    font-size: 1.3em;
    color: #cbd5e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-lottery-games-high-frequency-lottery__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-lottery-games-high-frequency-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;
    white-space: nowrap;
}

.page-lottery-games-high-frequency-lottery__btn--primary {
    background-color: #E53E3E;
    color: #fff;
    border: 2px solid #E53E3E;
}

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

.page-lottery-games-high-frequency-lottery__btn--secondary {
    background-color: transparent;
    color: #E53E3E;
    border: 2px solid #E53E3E;
}

.page-lottery-games-high-frequency-lottery__btn--secondary:hover {
    background-color: #E53E3E;
    color: #fff;
    transform: translateY(-3px);
}

.page-lottery-games-high-frequency-lottery__section-title {
    font-size: 2.8em;
    color: #E53E3E;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-lottery-games-high-frequency-lottery__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E53E3E;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-lottery-games-high-frequency-lottery__section-subtitle {
    font-size: 1.2em;
    color: #cbd5e0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-high-frequency-lottery__intro-section,
.page-lottery-games-high-frequency-lottery__features-section,
.page-lottery-games-high-frequency-lottery__game-types-section,
.page-lottery-games-high-frequency-lottery__guide-section,
.page-lottery-games-high-frequency-lottery__tips-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-lottery-games-high-frequency-lottery__intro-section {
    background-color: #2D3748;
}

.page-lottery-games-high-frequency-lottery__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-lottery-games-high-frequency-lottery__content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-lottery-games-high-frequency-lottery__text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #e2e8f0;
}

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

.page-lottery-games-high-frequency-lottery__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-lottery-games-high-frequency-lottery__feature-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-lottery-games-high-frequency-lottery__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3b4556;
}

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

.page-lottery-games-high-frequency-lottery__feature-item p {
    color: #cbd5e0;
    font-size: 1em;
}

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

.page-lottery-games-high-frequency-lottery__game-item {
    background-color: #2D3748;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-lottery-games-high-frequency-lottery__game-item:hover {
    transform: translateY(-5px);
    background-color: #3b4556;
}

.page-lottery-games-high-frequency-lottery__game-image {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #4a5568;
}

.page-lottery-games-high-frequency-lottery__game-title {
    color: #E53E3E;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-lottery-games-high-frequency-lottery__game-item p {
    color: #cbd5e0;
    font-size: 0.95em;
}

.page-lottery-games-high-frequency-lottery__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-lottery-games-high-frequency-lottery__steps-list li {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 70px;
}

.page-lottery-games-high-frequency-lottery__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 25px;
    background-color: #E53E3E;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-lottery-games-high-frequency-lottery__steps-list h3 {
    color: #E53E3E;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-lottery-games-high-frequency-lottery__steps-list p {
    color: #e2e8f0;
    font-size: 1.05em;
}

.page-lottery-games-high-frequency-lottery__cta-block {
    text-align: center;
    background-color: #3b4556;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-high-frequency-lottery__cta-text {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-lottery-games-high-frequency-lottery__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-lottery-games-high-frequency-lottery__tips-list li {
    background-color: #2D3748;
    padding: 25px;
    border-left: 5px solid #E53E3E;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-lottery-games-high-frequency-lottery__tips-list h3 {
    color: #E53E3E;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-lottery-games-high-frequency-lottery__tips-list p {
    color: #e2e8f0;
    font-size: 1em;
}

.page-lottery-games-high-frequency-lottery__image-wrapper--bottom {
    margin-top: 60px;
}

.page-lottery-games-high-frequency-lottery__cta-full-width {
    background-color: #E53E3E;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-lottery-games-high-frequency-lottery__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-high-frequency-lottery__cta-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-high-frequency-lottery__cta-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.page-lottery-games-high-frequency-lottery__cta-actions .page-lottery-games-high-frequency-lottery__btn--primary {
    background-color: #1A202C;
    border-color: #1A202C;
    color: #fff;
}

.page-lottery-games-high-frequency-lottery__cta-actions .page-lottery-games-high-frequency-lottery__btn--primary:hover {
    background-color: #3b4556;
    border-color: #3b4556;
}

.page-lottery-games-high-frequency-lottery__cta-actions .page-lottery-games-high-frequency-lottery__btn--secondary {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.page-lottery-games-high-frequency-lottery__cta-actions .page-lottery-games-high-frequency-lottery__btn--secondary:hover {
    background-color: #fff;
    color: #E53E3E;
}

.page-lottery-games-high-frequency-lottery__highlight-text {
    color: #ffeb3b; /* A contrasting color for highlights */
    font-weight: bold;
}

.page-lottery-games-high-frequency-lottery__inline-link {
    color: #E53E3E;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-lottery-games-high-frequency-lottery__inline-link:hover {
    color: #c53030;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-lottery-games-high-frequency-lottery__hero-title {
        font-size: 3em;
    }
    .page-lottery-games-high-frequency-lottery__section-title {
        font-size: 2.5em;
    }
    .page-lottery-games-high-frequency-lottery__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-high-frequency-lottery__hero {
        padding: 80px 0;
    }
    .page-lottery-games-high-frequency-lottery__hero-title {
        font-size: 2.5em;
    }
    .page-lottery-games-high-frequency-lottery__hero-description {
        font-size: 1.1em;
    }
    .page-lottery-games-high-frequency-lottery__hero-actions,
    .page-lottery-games-high-frequency-lottery__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-lottery-games-high-frequency-lottery__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-lottery-games-high-frequency-lottery__section-title {
        font-size: 2em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-lottery-games-high-frequency-lottery__section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-lottery-games-high-frequency-lottery__content-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-high-frequency-lottery__features-grid,
    .page-lottery-games-high-frequency-lottery__game-list {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-high-frequency-lottery__steps-list li {
        padding: 25px 20px 25px 60px;
    }
    .page-lottery-games-high-frequency-lottery__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
        top: 20px;
    }
    .page-lottery-games-high-frequency-lottery__cta-title {
        font-size: 2em;
    }
    .page-lottery-games-high-frequency-lottery__cta-description {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-high-frequency-lottery__hero-title {
        font-size: 2em;
    }
    .page-lottery-games-high-frequency-lottery__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games-high-frequency-lottery__btn {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-lottery-games-high-frequency-lottery__cta-title {
        font-size: 1.8em;
    }
    .page-lottery-games-high-frequency-lottery__cta-description {
        font-size: 1em;
    }
}