/* style/lottery-games-high-frequency-lottery-features.css */

.page-lottery-games-high-frequency-lottery-features {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for main text on dark background */
    line-height: 1.7;
    background-color: #1A2A3A; /* Primary dark background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.page-lottery-games-high-frequency-lottery-features h1,
.page-lottery-games-high-frequency-lottery-features h2,
.page-lottery-games-high-frequency-lottery-features h3 {
    color: #FFD700; /* Accent gold for headings */
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.page-lottery-games-high-frequency-lottery-features h1 {
    font-size: 3.8em;
    text-align: center;
    margin-top: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-high-frequency-lottery-features h2 {
    font-size: 2.8em;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
}

.page-lottery-games-high-frequency-lottery-features h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-lottery-games-high-frequency-lottery-features h3 {
    font-size: 2em;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-lottery-games-high-frequency-lottery-features p {
    margin-bottom: 18px;
    font-size: 1.15em;
    color: #CCCCCC; /* Slightly lighter for better contrast */
}

.page-lottery-games-high-frequency-lottery-features ul {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.page-lottery-games-high-frequency-lottery-features ul li {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #E0E0E0;
    position: relative;
    padding-left: 30px;
}

.page-lottery-games-high-frequency-lottery-features ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1.6;
}

.page-lottery-games-high-frequency-lottery-features .content-block {
    padding: 80px 0;
}

.page-lottery-games-high-frequency-lottery-features .bg-dark {
    background-color: #15202B; /* Slightly darker shade for contrast */
}

.page-lottery-games-high-frequency-lottery-features .bg-accent {
    background-color: #FFD700; /* Accent background for CTA */
    color: #1A2A3A; /* Dark text on accent background */
}

.page-lottery-games-high-frequency-lottery-features .bg-accent h2,
.page-lottery-games-high-frequency-lottery-features .bg-accent p,
.page-lottery-games-high-frequency-lottery-features .bg-accent .btn {
    color: #1A2A3A; /* Ensure contrast for text on accent background */
}

.page-lottery-games-high-frequency-lottery-features .hero-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1A2A3A 0%, #3A4A5A 100%); /* Gradient background */
}

.page-lottery-games-high-frequency-lottery-features .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25; /* Slightly transparent to let text stand out */
    z-index: 1;
}

.page-lottery-games-high-frequency-lottery-features .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #FFFFFF;
}

.page-lottery-games-high-frequency-lottery-features .hero-content h1 {
    color: #FFD700;
    font-size: 4.5em;
    margin-bottom: 25px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
}

.page-lottery-games-high-frequency-lottery-features .hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #E0E0E0;
    font-weight: 300;
}

.page-lottery-games-high-frequency-lottery-features .btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.2em;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-high-frequency-lottery-features .btn-primary {
    background-color: #FFD700;
    color: #1A2A3A;
    border: 2px solid #FFD700;
}

.page-lottery-games-high-frequency-lottery-features .btn-primary:hover {
    background-color: #E0B800;
    color: #1A2A3A;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-high-frequency-lottery-features .btn-secondary {
    background-color: #1A2A3A;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-lottery-games-high-frequency-lottery-features .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A2A3A;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-lottery-games-high-frequency-lottery-features .feature-item {
    background-color: #2A3A4A; /* Slightly lighter dark for feature cards */
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-lottery-games-high-frequency-lottery-features .feature-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-high-frequency-lottery-features .feature-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.page-lottery-games-high-frequency-lottery-features .cta-section {
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-high-frequency-lottery-features .cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtler opacity for accent background */
    z-index: 1;
}

.page-lottery-games-high-frequency-lottery-features .cta-section h2,
.page-lottery-games-high-frequency-lottery-features .cta-section p,
.page-lottery-games-high-frequency-lottery-features .cta-section .btn {
    position: relative;
    z-index: 2;
}

/* Animations for scroll reveal */
.page-lottery-games-high-frequency-lottery-features .content-block,
.page-lottery-games-high-frequency-lottery-features .feature-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.page-lottery-games-high-frequency-lottery-features .content-block.is-visible,
.page-lottery-games-high-frequency-lottery-features .feature-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-lottery-games-high-frequency-lottery-features .hero-content h1 {
        font-size: 4em;
    }
}

@media (max-width: 992px) {
    .page-lottery-games-high-frequency-lottery-features .hero-section {
        padding: 100px 0;
    }
    .page-lottery-games-high-frequency-lottery-features .hero-content h1 {
        font-size: 3.5em;
    }
    .page-lottery-games-high-frequency-lottery-features h2 {
        font-size: 2.2em;
    }
    .page-lottery-games-high-frequency-lottery-features h3 {
        font-size: 1.7em;
    }
    .page-lottery-games-high-frequency-lottery-features .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-high-frequency-lottery-features .hero-section {
        padding: 80px 0;
    }
    .page-lottery-games-high-frequency-lottery-features .hero-content h1 {
        font-size: 2.8em;
    }
    .page-lottery-games-high-frequency-lottery-features .hero-content p {
        font-size: 1.2em;
    }
    .page-lottery-games-high-frequency-lottery-features h2 {
        font-size: 1.9em;
    }
    .page-lottery-games-high-frequency-lottery-features h3 {
        font-size: 1.5em;
    }
    .page-lottery-games-high-frequency-lottery-features .content-block {
        padding: 60px 0;
    }
    .page-lottery-games-high-frequency-lottery-features .feature-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-high-frequency-lottery-features .feature-item {
        padding: 30px;
    }
    .page-lottery-games-high-frequency-lottery-features ul li {
        padding-left: 25px;
    }
}

@media (max-width: 576px) {
    .page-lottery-games-high-frequency-lottery-features .hero-section {
        padding: 60px 0;
    }
    .page-lottery-games-high-frequency-lottery-features .hero-content h1 {
        font-size: 2.2em;
    }
    .page-lottery-games-high-frequency-lottery-features .hero-content p {
        font-size: 1em;
    }
    .page-lottery-games-high-frequency-lottery-features .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-lottery-games-high-frequency-lottery-features h2 {
        font-size: 1.6em;
    }
    .page-lottery-games-high-frequency-lottery-features h3 {
        font-size: 1.3em;
    }
    .page-lottery-games-high-frequency-lottery-features .content-block {
        padding: 40px 0;
    }
}