/* style/lottery-lottery-results-inquiry.css */

/* Variables for consistency */
:root {
    --page-lottery-primary-color: #FFD700; /* Gold */
    --page-lottery-secondary-color: #DC143C; /* Crimson */
    --page-lottery-background-dark: #1A1A2E; /* Dark Blue/Near Black */
    --page-lottery-text-light: #FFFFFF;
    --page-lottery-text-dark: #333333;
    --page-lottery-accent-color: #FFC107; /* Lighter gold for highlights */
}

.page-lottery-lottery-results-inquiry {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-lottery-text-light); /* Default text color for the main content area */
    background-color: var(--page-lottery-background-dark); /* Dark background for the page content */
}

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

/* Hero Section */
.page-lottery-lottery-results-inquiry__hero {
    background: linear-gradient(135deg, var(--page-lottery-background-dark) 0%, var(--page-lottery-secondary-color) 100%);
    color: var(--page-lottery-text-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-lottery-results-inquiry__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:hero_banner]') no-repeat center center/cover; /* Using image as background */
    opacity: 0.2; /* Subtle overlay */
    z-index: 1;
}

.page-lottery-lottery-results-inquiry__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-lottery-lottery-results-inquiry__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-lottery-primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-lottery-results-inquiry__description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-lottery-text-light);
}

.page-lottery-lottery-results-inquiry__button {
    display: inline-block;
    background-color: var(--page-lottery-primary-color);
    color: var(--page-lottery-background-dark);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-lottery-lottery-results-inquiry__button:hover {
    background-color: var(--page-lottery-accent-color);
    transform: translateY(-3px);
}

/* Sections */
.page-lottery-lottery-results-inquiry__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery-lottery-results-inquiry__section:last-of-type {
    border-bottom: none;
}

.page-lottery-lottery-results-inquiry__subtitle {
    font-size: 2.5em;
    color: var(--page-lottery-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-lottery-lottery-results-inquiry__subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-lottery-secondary-color);
    border-radius: 2px;
}

.page-lottery-lottery-results-inquiry__introduction p,
.page-lottery-lottery-results-inquiry__how-to p,
.page-lottery-lottery-results-inquiry__types p,
.page-lottery-lottery-results-inquiry__transparency p,
.page-lottery-lottery-results-inquiry__cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--page-lottery-text-light);
}

.page-lottery-lottery-results-inquiry__link {
    color: var(--page-lottery-primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-lottery-lottery-results-inquiry__link:hover {
    color: var(--page-lottery-accent-color);
    text-decoration: underline;
}

.page-lottery-lottery-results-inquiry__highlight {
    color: var(--page-lottery-secondary-color);
    font-weight: bold;
}

.page-lottery-lottery-results-inquiry__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-lottery-results-inquiry__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Grid */
.page-lottery-lottery-results-inquiry__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-lottery-results-inquiry__feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-lottery-lottery-results-inquiry__feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-lottery-lottery-results-inquiry__feature-title {
    font-size: 1.5em;
    color: var(--page-lottery-primary-color);
    margin-bottom: 15px;
}

.page-lottery-lottery-results-inquiry__feature-item p {
    color: var(--page-lottery-text-light);
    font-size: 1em;
    text-align: center;
}

/* Lists */
.page-lottery-lottery-results-inquiry__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-lottery-lottery-results-inquiry__list li {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--page-lottery-primary-color);
    border-radius: 5px;
    color: var(--page-lottery-text-light);
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-lottery-lottery-results-inquiry__list--styled li {
    border-left-color: var(--page-lottery-secondary-color);
}

.page-lottery-lottery-results-inquiry__list strong {
    color: var(--page-lottery-primary-color);
}

/* FAQ Section */
.page-lottery-lottery-results-inquiry__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-lottery-results-inquiry__faq-question {
    font-size: 1.3em;
    color: var(--page-lottery-primary-color);
    margin-bottom: 10px;
}

.page-lottery-lottery-results-inquiry__faq-answer {
    color: var(--page-lottery-text-light);
    font-size: 1em;
}

/* CTA Section */
.page-lottery-lottery-results-inquiry__cta {
    text-align: center;
    background: linear-gradient(90deg, var(--page-lottery-secondary-color) 0%, var(--page-lottery-background-dark) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery-lottery-results-inquiry__cta .page-lottery-lottery-results-inquiry__subtitle {
    color: var(--page-lottery-text-light);
}

.page-lottery-lottery-results-inquiry__cta .page-lottery-lottery-results-inquiry__subtitle::after {
    background-color: var(--page-lottery-primary-color);
}

.page-lottery-lottery-results-inquiry__cta .page-lottery-lottery-results-inquiry__button {
    margin: 10px;
}

.page-lottery-lottery-results-inquiry__button--secondary {
    background-color: transparent;
    border: 2px solid var(--page-lottery-primary-color);
    color: var(--page-lottery-primary-color);
}

.page-lottery-lottery-results-inquiry__button--secondary:hover {
    background-color: var(--page-lottery-primary-color);
    color: var(--page-lottery-background-dark);
}


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

    .page-lottery-lottery-results-inquiry__subtitle {
        font-size: 2em;
    }

    .page-lottery-lottery-results-inquiry__hero {
        padding: 60px 0;
    }

    .page-lottery-lottery-results-inquiry__section {
        padding: 40px 0;
    }

    .page-lottery-lottery-results-inquiry__feature-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .page-lottery-lottery-results-inquiry__subtitle {
        font-size: 1.5em;
    }

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

    .page-lottery-lottery-results-inquiry__feature-item,
    .page-lottery-lottery-results-inquiry__faq-item {
        padding: 20px;
    }

    .page-lottery-lottery-results-inquiry__list li {
        padding: 10px 15px;
        font-size: 1em;
    }
}