/* style/lottery-results-xsmb-daily-update.css */

:root {
    --primary-color: #4B0082;
    --secondary-color: #FFD700;
    --dark-text-color: #1a1a1a;
    --light-text-color: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #3a0063;
    --button-hover-primary: #6a00b0;
    --button-hover-secondary: #e6c200;
}

.page-lottery-results-xsmb-daily-update {
    font-family: 'Arial', sans-serif;
    color: var(--dark-text-color);
    line-height: 1.6;
    background-color: var(--background-light);
}

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

.page-lottery-results-xsmb-daily-update__hero {
    background: linear-gradient(135deg, var(--primary-color), var(--background-dark));
    color: var(--light-text-color);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-lottery-results-xsmb-daily-update__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.3;
    max-width: 400px;
    height: auto;
    z-index: 0;
}

.page-lottery-results-xsmb-daily-update__hero .page-lottery-results-xsmb-daily-update__container {
    position: relative;
    z-index: 1;
}

.page-lottery-results-xsmb-daily-update__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--light-text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-results-xsmb-daily-update__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-lottery-results-xsmb-daily-update__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-lottery-results-xsmb-daily-update__button--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-lottery-results-xsmb-daily-update__button--primary:hover {
    background-color: var(--button-hover-secondary);
    transform: translateY(-2px);
}

.page-lottery-results-xsmb-daily-update__button--secondary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: 2px solid var(--secondary-color);
    margin-left: 15px;
}

.page-lottery-results-xsmb-daily-update__button--secondary:hover {
    background-color: var(--button-hover-primary);
    transform: translateY(-2px);
}

.page-lottery-results-xsmb-daily-update__section {
    padding: 60px 0;
    text-align: center;
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) {
    background-color: var(--background-dark);
    color: var(--light-text-color);
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__heading,
.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__text {
    color: var(--light-text-color);
}

.page-lottery-results-xsmb-daily-update__heading {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__heading {
    color: var(--secondary-color);
}

.page-lottery-results-xsmb-daily-update__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-results-xsmb-daily-update__results-table-wrapper {
    margin-top: 40px;
    background-color: var(--light-text-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__results-table-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
}

.page-lottery-results-xsmb-daily-update__date-selector {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.page-lottery-results-xsmb-daily-update__label {
    font-weight: bold;
    font-size: 1.1em;
    color: var(--primary-color);
}

.page-lottery-results-xsmb-daily-update__input-date {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: var(--dark-text-color);
}

.page-lottery-results-xsmb-daily-update__results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: left;
    color: var(--dark-text-color);
}

.page-lottery-results-xsmb-daily-update__results-table th,
.page-lottery-results-xsmb-daily-update__results-table td {
    border: 1px solid #eee;
    padding: 12px 15px;
}

.page-lottery-results-xsmb-daily-update__results-table th {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    font-weight: bold;
    text-transform: uppercase;
}

.page-lottery-results-xsmb-daily-update__results-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.page-lottery-results-xsmb-daily-update__results-table tbody tr:hover {
    background-color: #f1f1f1;
}

.page-lottery-results-xsmb-daily-update__note {
    font-style: italic;
    margin-top: 20px;
    font-size: 0.95em;
    color: #666;
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__note {
    color: rgba(255, 255, 255, 0.7);
}

.page-lottery-results-xsmb-daily-update__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.page-lottery-results-xsmb-daily-update__list li {
    background-color: var(--light-text-color);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.05em;
    color: var(--dark-text-color);
    position: relative;
    padding-left: 50px;
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__list li {
    background-color: rgba(255, 255, 255, 0.9);
}

.page-lottery-results-xsmb-daily-update__list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page-lottery-results-xsmb-daily-update__list-highlight {
    color: var(--primary-color);
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__list-highlight {
    color: var(--primary-color);
}

.page-lottery-results-xsmb-daily-update__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-lottery-results-xsmb-daily-update__image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-lottery-results-xsmb-daily-update__section--bonus {
    background: linear-gradient(45deg, var(--background-dark), var(--primary-color));
    color: var(--light-text-color);
}

.page-lottery-results-xsmb-daily-update__section--bonus .page-lottery-results-xsmb-daily-update__heading {
    color: var(--secondary-color);
}

.page-lottery-results-xsmb-daily-update__section--bonus .page-lottery-results-xsmb-daily-update__button--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-lottery-results-xsmb-daily-update__section--bonus .page-lottery-results-xsmb-daily-update__button--primary:hover {
    background-color: var(--button-hover-secondary);
}

.page-lottery-results-xsmb-daily-update__steps-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.page-lottery-results-xsmb-daily-update__steps-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--dark-text-color);
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__steps-list li {
    color: var(--light-text-color);
}

.page-lottery-results-xsmb-daily-update__link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__link {
    color: var(--secondary-color);
}

.page-lottery-results-xsmb-daily-update__link:hover {
    color: var(--button-hover-primary);
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__link:hover {
    color: var(--button-hover-secondary);
}

.page-lottery-results-xsmb-daily-update__faq-item {
    background-color: var(--light-text-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-lottery-results-xsmb-daily-update__faq-answer {
    font-size: 1.05em;
    color: var(--dark-text-color);
}

.page-lottery-results-xsmb-daily-update__section:nth-of-type(even) .page-lottery-results-xsmb-daily-update__faq-item {
    background-color: rgba(255, 255, 255, 0.95);
}

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

    .page-lottery-results-xsmb-daily-update__subtitle {
        font-size: 1.1em;
    }

    .page-lottery-results-xsmb-daily-update__heading {
        font-size: 2em;
    }

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

    .page-lottery-results-xsmb-daily-update__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-lottery-results-xsmb-daily-update__date-selector {
        flex-direction: column;
        gap: 10px;
    }

    .page-lottery-results-xsmb-daily-update__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-lottery-results-xsmb-daily-update__hero-image {
        max-width: 250px;
        opacity: 0.2;
    }
}

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

    .page-lottery-results-xsmb-daily-update__heading {
        font-size: 1.8em;
    }

    .page-lottery-results-xsmb-daily-update__button {
        width: 100%;
        box-sizing: border-box;
    }
}