/* style/expert-predictions-lottery-trends.css */
.page-expert-predictions-lottery-trends {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Main dark blue background */
}

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

.page-expert-predictions-lottery-trends__hero {
    background: linear-gradient(135deg, #0A2342 0%, #2A4A7C 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-lottery-trends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFD700;
    line-height: 1.2;
}

.page-expert-predictions-lottery-trends__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-expert-predictions-lottery-trends__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    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;
    border: none;
    cursor: pointer;
}

.page-expert-predictions-lottery-trends__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-expert-predictions-lottery-trends__cta-button--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-expert-predictions-lottery-trends__cta-button--secondary:hover {
    background-color: #1a3a60;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-expert-predictions-lottery-trends__introduction,
.page-expert-predictions-lottery-trends__methods,
.page-expert-predictions-lottery-trends__new88-advantage,
.page-expert-predictions-lottery-trends__responsible-gaming,
.page-expert-predictions-lottery-trends__conclusion {
    padding: 60px 0;
    background-color: #1A3A60; /* Slightly lighter dark blue for sections */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-expert-predictions-lottery-trends__introduction p,
.page-expert-predictions-lottery-trends__methods p,
.page-expert-predictions-lottery-trends__new88-advantage p,
.page-expert-predictions-lottery-trends__responsible-gaming p,
.page-expert-predictions-lottery-trends__conclusion p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #C0C0C0; /* Lighter gray for body text */
}

.page-expert-predictions-lottery-trends__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-expert-predictions-lottery-trends__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-expert-predictions-lottery-trends__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-expert-predictions-lottery-trends__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-lottery-trends__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-expert-predictions-lottery-trends__method-card {
    background-color: #0A2342;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #3A5B8A;
}

.page-expert-predictions-lottery-trends__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-lottery-trends__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-expert-predictions-lottery-trends__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-expert-predictions-lottery-trends__advantage-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-expert-predictions-lottery-trends__advantage-list li {
    background-color: #0A2342;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #E0E0E0;
    transition: background-color 0.3s ease;
}

.page-expert-predictions-lottery-trends__advantage-list li:hover {
    background-color: #1a3a60;
}

.page-expert-predictions-lottery-trends__advantage-list li strong {
    color: #FFD700;
}

.page-expert-predictions-lottery-trends__small-text {
    font-size: 0.9em;
    text-align: center;
    margin-top: 20px;
    color: #A0A0A0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-expert-predictions-lottery-trends__hero-title {
        font-size: 2.5em;
    }

    .page-expert-predictions-lottery-trends__hero-subtitle {
        font-size: 1.2em;
    }

    .page-expert-predictions-lottery-trends__section-title {
        font-size: 2em;
    }

    .page-expert-predictions-lottery-trends__grid {
        grid-template-columns: 1fr;
    }

    .page-expert-predictions-lottery-trends__introduction,
    .page-expert-predictions-lottery-trends__methods,
    .page-expert-predictions-lottery-trends__new88-advantage,
    .page-expert-predictions-lottery-trends__responsible-gaming,
    .page-expert-predictions-lottery-trends__conclusion {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-lottery-trends__hero-title {
        font-size: 2em;
    }

    .page-expert-predictions-lottery-trends__hero-subtitle {
        font-size: 1em;
    }

    .page-expert-predictions-lottery-trends__section-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-lottery-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}