/* style/lottery-games-result-inquiry.css */
:root {
    --page-lottery-games-result-inquiry-primary-color: #0A2239;
    --page-lottery-games-result-inquiry-secondary-color: #FFD700;
    --page-lottery-games-result-inquiry-accent-color: #DC143C; /* Used for subtle accents or hover effects, or as button background with black text if absolutely necessary to meet WCAG AA */
    --page-lottery-games-result-inquiry-text-light: #FFFFFF;
    --page-lottery-games-result-inquiry-text-dark: #0A2239;
    --page-lottery-games-result-inquiry-background-dark: #0A2239;
    --page-lottery-games-result-inquiry-background-light: #f5f5f5; /* A very light grey for contrast */
    --page-lottery-games-result-inquiry-button-bg: var(--page-lottery-games-result-inquiry-primary-color); /* Using primary color for buttons to ensure contrast with gold/white text */
    --page-lottery-games-result-inquiry-button-text: var(--page-lottery-games-result-inquiry-secondary-color);
    --page-lottery-games-result-inquiry-hover-bg: #1A3E5C; /* Slightly lighter primary for hover */
}

.page-lottery-games-result-inquiry {
    font-family: 'Arial', sans-serif;
    color: var(--page-lottery-games-result-inquiry-text-light);
    background-color: var(--page-lottery-games-result-inquiry-background-dark);
    line-height: 1.6;
    padding-bottom: 80px; /* Space for sticky CTA */
}

.page-lottery-games-result-inquiry .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-lottery-games-result-inquiry-hero {
    background: linear-gradient(135deg, var(--page-lottery-games-result-inquiry-primary-color) 0%, #1A3E5C 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-result-inquiry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:lottery_numbers_overlay,abstract_pattern,dark_background,hello88]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-lottery-games-result-inquiry-hero .container {
    position: relative;
    z-index: 1;
}

.page-lottery-games-result-inquiry-main-title {
    font-size: 3.5em;
    color: var(--page-lottery-games-result-inquiry-secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-lottery-games-result-inquiry-subtitle {
    font-size: 1.5em;
    color: var(--page-lottery-games-result-inquiry-text-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-result-inquiry-description {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-result-inquiry-section-title {
    font-size: 2.8em;
    color: var(--page-lottery-games-result-inquiry-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-lottery-games-result-inquiry-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-lottery-games-result-inquiry-accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-lottery-games-result-inquiry-section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.85);
}

.page-lottery-games-result-inquiry-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}