/* style/lottery-results-north-lottery-history.css */
.page-lottery-results-north-lottery-history {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-lottery-results-north-lottery-history__hero {
    position: relative;
    background: linear-gradient(135deg, #4B0082 0%, #7d26c0 100%); /* Dark purple to lighter purple */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.page-lottery-results-north-lottery-history__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-lottery-results-north-lottery-history__hero .page-lottery-results-north-lottery-history__container {
    position: relative;
    z-index: 1;
}

.page-lottery-results-north-lottery-history__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-results-north-lottery-history__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.page-lottery-results-north-lottery-history__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-lottery-results-north-lottery-history__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-results-north-lottery-history__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #4B0082; /* Deep Purple */
    border: 2px solid #FFD700;
}

.page-lottery-results-north-lottery-history__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-lottery-results-north-lottery-history__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-lottery-results-north-lottery-history__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-lottery-results-north-lottery-history__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-lottery-results-north-lottery-history__heading {
    font-size: 2.2em;
    color: #4B0082; /* Deep Purple */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-lottery-results-north-lottery-history__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-lottery-results-north-lottery-history__subheading {
    font-size: 1.6em;
    color: #4B0082;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-lottery-results-north-lottery-history__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
}

.page-lottery-results-north-lottery-history__text strong {
    color: #4B0082;
}

.page-lottery-results-north-lottery-history__text a {
    color: #4B0082;
    text-decoration: underline;
}

.page-lottery-results-north-lottery-history__text a:hover {
    color: #FFD700;
}

.page-lottery-results-north-lottery-history__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333;
}

.page-lottery-results-north-lottery-history__list li {
    margin-bottom: 10px;
}

.page-lottery-results-north-lottery-history__ordered-list {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333;
}

.page-lottery-results-north-lottery-history__ordered-list li {
    margin-bottom: 15px;
}

.page-lottery-results-north-lottery-history__data-table-wrapper {
    text-align: center;
    margin: 40px 0;
    background-color: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-lottery-results-north-lottery-history__data-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-lottery-results-north-lottery-history__text--small {
    font-size: 0.9em;
    color: #666;
}

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

.page-lottery-results-north-lottery-history__benefit-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-lottery-results-north-lottery-history__benefit-item:hover {
    transform: translateY(-5px);
}

.page-lottery-results-north-lottery-history__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-lottery-results-north-lottery-history__benefit-item .page-lottery-results-north-lottery-history__subheading {
    font-size: 1.4em;
    color: #4B0082;
    margin-top: 0;
}

.page-lottery-results-north-lottery-history__faq-item {
    background-color: #fdfdfd;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-lottery-results-north-lottery-history__faq-item .page-lottery-results-north-lottery-history__subheading {
    font-size: 1.3em;
    color: #4B0082;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-lottery-results-north-lottery-history__faq-item .page-lottery-results-north-lottery-history__text {
    margin-bottom: 0;
    color: #555;
}

.page-lottery-results-north-lottery-history__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

.page-lottery-results-north-lottery-history__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-lottery-results-north-lottery-history__title {
        font-size: 2.2em;
    }

    .page-lottery-results-north-lottery-history__subtitle {
        font-size: 1.1em;
    }

    .page-lottery-results-north-lottery-history__heading {
        font-size: 1.8em;
    }

    .page-lottery-results-north-lottery-history__subheading {
        font-size: 1.3em;
    }

    .page-lottery-results-north-lottery-history__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-lottery-results-north-lottery-history__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-lottery-results-north-lottery-history__btn--center {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-lottery-results-north-lottery-history__title {
        font-size: 1.8em;
    }

    .page-lottery-results-north-lottery-history__subtitle {
        font-size: 1em;
    }

    .page-lottery-results-north-lottery-history__heading {
        font-size: 1.6em;
    }

    .page-lottery-results-north-lottery-history__btn--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}