/* style/lottery-games-result-inquiry.css */

/* Base styles for the page content */
.page-lottery-games-result-inquiry {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #0A0A0A; /* Very dark background */
    line-height: 1.6;
}

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

.page-lottery-games-result-inquiry__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-result-inquiry__section:nth-of-type(even) {
    background-color: #1A1A1A; /* Slightly lighter dark background for contrast */
}

.page-lottery-games-result-inquiry__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-lottery-games-result-inquiry__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #1E90FF; /* Dodge Blue underline */
    border-radius: 2px;
}

.page-lottery-games-result-inquiry__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #B0B0B0; /* Slightly lighter grey for descriptions */
}

/* Hero Section */
.page-lottery-games-result-inquiry__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.page-lottery-games-result-inquiry__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-lottery-games-result-inquiry__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 2;
}

.page-lottery-games-result-inquiry__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-lottery-games-result-inquiry__title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-lottery-games-result-inquiry__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #E0E0E0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.page-lottery-games-result-inquiry__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-lottery-games-result-inquiry__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A; /* Dark text on gold */
}

.page-lottery-games-result-inquiry__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-lottery-games-result-inquiry__button--secondary {
    background-color: #1E90FF; /* Dodge Blue button */
    color: #FFFFFF; /* White text on blue */
    margin-left: 20px;
}

.page-lottery-games-result-inquiry__button--secondary:hover {
    background-color: #1565b3; /* Darker blue on hover */
    transform: translateY(-2px);
}

/* Search Section */
.page-lottery-games-result-inquiry__section--search {
    background-color: #1A1A1A;
    position: relative;
}

.page-lottery-games-result-inquiry__search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.page-lottery-games-result-inquiry__form-group {
    display: flex;
    flex-direction: column;
    min-width: 250px;
}

.page-lottery-games-result-inquiry__label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFD700;
}

.page-lottery-games-result-inquiry__select,
.page-lottery-games-result-inquiry__input {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #2A2A2A;
    color: #FFFFFF;
    font-size: 1em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.page-lottery-games-result-inquiry__select:focus,
.page-lottery-games-result-inquiry__input:focus {
    border-color: #1E90FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.3);
}

.page-lottery-games-result-inquiry__results-display {
    background-color: #1A1A1A;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-result-inquiry__results-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    border-radius: 10px;
    z-index: 1;
}

.page-lottery-games-result-inquiry__results-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.page-lottery-games-result-inquiry__results-content {
    z-index: 2;
    position: relative;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-lottery-games-result-inquiry__results-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.page-lottery-games-result-inquiry__results-content th,
.page-lottery-games-result-inquiry__results-content td {
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
}

.page-lottery-games-result-inquiry__results-content th {
    background-color: #1E90FF;
    color: #FFFFFF;
}

.page-lottery-games-result-inquiry__results-content tr:nth-child(even) {
    background-color: #222;
}

.page-lottery-games-result-inquiry__results-content tr:nth-child(odd) {
    background-color: #1A1A1A;
}

/* Features Grid */
.page-lottery-games-result-inquiry__features-grid,
.page-lottery-games-result-inquiry__types-grid,
.page-lottery-games-result-inquiry__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-games-result-inquiry__feature-item,
.page-lottery-games-result-inquiry__type-item,
.page-lottery-games-result-inquiry__commitment-item {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-result-inquiry__feature-item:hover,
.page-lottery-games-result-inquiry__type-item:hover,
.page-lottery-games-result-inquiry__commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-result-inquiry__feature-title,
.page-lottery-games-result-inquiry__type-title,
.page-lottery-games-result-inquiry__commitment-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-lottery-games-result-inquiry__feature-item p,
.page-lottery-games-result-inquiry__type-item p,
.page-lottery-games-result-inquiry__commitment-item p {
    color: #B0B0B0;
    font-size: 1em;
}

/* Guide Section */
.page-lottery-games-result-inquiry__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-games-result-inquiry__step-item {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-lottery-games-result-inquiry__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1E90FF; /* Dodge Blue for step numbers */
    color: #FFFFFF;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    border: 3px solid #FFD700; /* Gold border */
}

.page-lottery-games-result-inquiry__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-lottery-games-result-inquiry__step-item p {
    color: #B0B0B0;
}

.page-lottery-games-result-inquiry__icon-small {
    max-width: 80px;
    height: auto;
    margin-top: 20px;
    opacity: 0.8;
}

/* Analysis Section */
.page-lottery-games-result-inquiry__analysis-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.page-lottery-games-result-inquiry__text-block {
    flex: 1;
    min-width: 300px;
}

.page-lottery-games-result-inquiry__sub-title {
    font-size: 1.6em;
    color: #1E90FF; /* Dodge Blue for sub-titles */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-lottery-games-result-inquiry__text-block p {
    color: #B0B0B0;
    margin-bottom: 15px;
}

.page-lottery-games-result-inquiry__image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-lottery-games-result-inquiry__image-analysis {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* CTA Section */
.page-lottery-games-result-inquiry__section--cta {
    text-align: center;
    background: linear-gradient(135deg, #1A1A1A, #0A0A0A);
    padding: 80px 0;
}

.page-lottery-games-result-inquiry__cta-buttons {
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-lottery-games-result-inquiry__cta-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-result-inquiry__title {
        font-size: 3em;
    }
    .page-lottery-games-result-inquiry__section-title {
        font-size: 2.2em;
    }
    .page-lottery-games-result-inquiry__search-form {
        flex-direction: column;
        align-items: center;
    }
    .page-lottery-games-result-inquiry__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-lottery-games-result-inquiry__analysis-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-result-inquiry__hero {
        height: 500px;
    }
    .page-lottery-games-result-inquiry__title {
        font-size: 2.5em;
    }
    .page-lottery-games-result-inquiry__subtitle {
        font-size: 1.2em;
    }
    .page-lottery-games-result-inquiry__section {
        padding: 40px 0;
    }
    .page-lottery-games-result-inquiry__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games-result-inquiry__description {
        font-size: 1em;
    }
    .page-lottery-games-result-inquiry__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .page-lottery-games-result-inquiry__hero {
        height: 400px;
    }
    .page-lottery-games-result-inquiry__title {
        font-size: 2em;
    }
    .page-lottery-games-result-inquiry__subtitle {
        font-size: 1em;
    }
    .page-lottery-games-result-inquiry__features-grid,
    .page-lottery-games-result-inquiry__types-grid,
    .page-lottery-games-result-inquiry__guide-steps,
    .page-lottery-games-result-inquiry__commitment-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-result-inquiry__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-lottery-games-result-inquiry__button--secondary {
        margin-left: 0;
    }
}