/* style/lottery-games-results-archive.css */

/* Biến CSS */
:root {
    --page-lottery-games-results-archive-primary-color: #0A1931;
    --page-lottery-games-results-archive-accent-color: #FFD700;
    --page-lottery-games-results-archive-text-light: #F0F0F0;
    --page-lottery-games-results-archive-text-dark: #0A1931;
    --page-lottery-games-results-archive-background-light: #FFFFFF;
    --page-lottery-games-results-archive-background-grey: #f7f7f7;
}

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

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

.page-lottery-games-results-archive__hero-section {
    background: var(--page-lottery-games-results-archive-primary-color);
    color: var(--page-lottery-games-results-archive-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-results-archive__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-lottery-games-results-archive-accent-color);
    font-weight: bold;
    line-height: 1.2;
}

.page-lottery-games-results-archive__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-lottery-games-results-archive-text-light);
}

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

.page-lottery-games-results-archive__section {
    padding: 60px 0;
    background-color: var(--page-lottery-games-results-archive-background-light);
}

.page-lottery-games-results-archive__section:nth-of-type(even) {
    background-color: var(--page-lottery-games-results-archive-background-grey);
}

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

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

.page-lottery-games-results-archive__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #333;
}

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

.page-lottery-games-results-archive__grid-item {
    background-color: var(--page-lottery-games-results-archive-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-results-archive__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-lottery-games-results-archive__item-title {
    font-size: 1.6em;
    color: var(--page-lottery-games-results-archive-primary-color);
    margin-bottom: 15px;
}

.page-lottery-games-results-archive__item-description {
    font-size: 1em;
    color: #555;
}

.page-lottery-games-results-archive__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-lottery-games-results-archive__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-lottery-games-results-archive__list-item {
    background-color: var(--page-lottery-games-results-archive-background-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--page-lottery-games-results-archive-accent-color);
}

.page-lottery-games-results-archive__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-games-results-archive__feature-item {
    background-color: var(--page-lottery-games-results-archive-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-results-archive__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-lottery-games-results-archive__feature-item .page-lottery-games-results-archive__item-title {
    color: var(--page-lottery-games-results-archive-accent-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-lottery-games-results-archive__feature-item .page-lottery-games-results-archive__item-description {
    color: #444;
}

.page-lottery-games-results-archive__cta-section {
    background: linear-gradient(135deg, var(--page-lottery-games-results-archive-primary-color) 0%, #1a3a6b 100%);
    color: var(--page-lottery-games-results-archive-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-lottery-games-results-archive__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-lottery-games-results-archive-accent-color);
}

.page-lottery-games-results-archive__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-lottery-games-results-archive-text-light);
}

.page-lottery-games-results-archive__btn {
    display: inline-block;
    background-color: var(--page-lottery-games-results-archive-accent-color);
    color: var(--page-lottery-games-results-archive-primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-lottery-games-results-archive__btn:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-lottery-games-results-archive__faq {
    padding: 60px 0;
    background-color: var(--page-lottery-games-results-archive-background-light);
}

.page-lottery-games-results-archive__faq-item {
    background-color: var(--page-lottery-games-results-archive-background-grey);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-results-archive__faq-question {
    font-size: 1.4em;
    color: var(--page-lottery-games-results-archive-primary-color);
    margin-bottom: 10px;
}

.page-lottery-games-results-archive__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-lottery-games-results-archive__link {
    color: var(--page-lottery-games-results-archive-accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-lottery-games-results-archive__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-results-archive__hero-title {
        font-size: 2.5em;
    }
    .page-lottery-games-results-archive__hero-description,
    .page-lottery-games-results-archive__text-content,
    .page-lottery-games-results-archive__cta-description {
        font-size: 1em;
    }
    .page-lottery-games-results-archive__section-title {
        font-size: 2em;
    }
    .page-lottery-games-results-archive__item-title {
        font-size: 1.4em;
    }
    .page-lottery-games-results-archive__feature-item .page-lottery-games-results-archive__item-title {
        font-size: 1.6em;
    }
    .page-lottery-games-results-archive__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-results-archive__hero-section,
    .page-lottery-games-results-archive__cta-section {
        padding: 60px 0;
    }
    .page-lottery-games-results-archive__section {
        padding: 40px 0;
    }
    .page-lottery-games-results-archive__hero-title {
        font-size: 2em;
    }
    .page-lottery-games-results-archive__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games-results-archive__grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-results-archive__feature-list {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-results-archive__cta-title {
        font-size: 1.8em;
    }
    .page-lottery-games-results-archive__btn {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-results-archive__hero-title {
        font-size: 1.8em;
    }
    .page-lottery-games-results-archive__hero-description,
    .page-lottery-games-results-archive__text-content,
    .page-lottery-games-results-archive__cta-description {
        font-size: 0.9em;
    }
    .page-lottery-games-results-archive__section-title {
        font-size: 1.5em;
    }
    .page-lottery-games-results-archive__item-title {
        font-size: 1.2em;
    }
    .page-lottery-games-results-archive__feature-item .page-lottery-games-results-archive__item-title {
        font-size: 1.4em;
    }
    .page-lottery-games-results-archive__cta-title {
        font-size: 1.6em;
    }
    .page-lottery-games-results-archive__btn {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-lottery-games-results-archive__container {
        padding: 0 15px;
    }
}