/* style/lottery-games.css */

.page-lottery-games {
    font-family: 'Arial', sans-serif;
    color: #f7fafc; /* Light gray for general text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

.page-lottery-games__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #E53E3E 100%);
    padding: 100px 0;
    text-align: center;
    color: #f7fafc;
}

.page-lottery-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #f7fafc;
    font-weight: bold;
}

.page-lottery-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games__section {
    padding: 80px 0;
}

.page-lottery-games__section-title {
    font-size: 2.5em;
    color: #E53E3E; /* Accent color for titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-lottery-games__intro {
    background-color: #2D3748;
}

.page-lottery-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-lottery-games__intro-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-lottery-games__intro-item:hover {
    transform: translateY(-10px);
}

.page-lottery-games__intro-item h3 {
    color: #E53E3E;
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-lottery-games__intro-item p {
    color: #cbd5e0;
}

.page-lottery-games__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: invert(1);
}

.page-lottery-games__featured-games {
    background-color: #1A202C;
}

.page-lottery-games__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-lottery-games__game-card {
    background-color: #2D3748;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-lottery-games__game-card:hover {
    transform: translateY(-10px);
}

.page-lottery-games__game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-lottery-games__game-card h3 {
    color: #E53E3E;
    font-size: 1.8em;
    margin-bottom: 10px;
    padding: 0 20px;
}

.page-lottery-games__game-card p {
    color: #cbd5e0;
    padding: 0 20px 20px;
}

.page-lottery-games__tips-guide {
    background-color: #2D3748;
    color: #f7fafc;
}

.page-lottery-games__tips-guide p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-lottery-games__list {
    list-style: disc inside;
    max-width: 800px;
    margin: 0 auto 40px;
    padding-left: 20px;
    color: #cbd5e0;
}

.page-lottery-games__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-lottery-games__list strong {
    color: #E53E3E;
}

.page-lottery-games__detail-pages {
    background-color: #1A202C;
}

.page-lottery-games__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-lottery-games__detail-card {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-lottery-games__detail-card:hover {
    transform: translateY(-10px);
}

.page-lottery-games__detail-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-lottery-games__detail-card h3 a {
    color: #E53E3E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-lottery-games__detail-card h3 a:hover {
    color: #FF7F7F;
}

.page-lottery-games__detail-card p {
    color: #cbd5e0;
    margin-bottom: 20px;
}

.page-lottery-games__cta {
    background-color: #2D3748;
    text-align: center;
    padding: 100px 0;
}

.page-lottery-games__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f7fafc;
}

.page-lottery-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-lottery-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-lottery-games__btn--primary {
    background-color: #E53E3E;
    color: #f7fafc;
    border: 2px solid #E53E3E;
}

.page-lottery-games__btn--primary:hover {
    background-color: #FF7F7F;
    border-color: #FF7F7F;
}

.page-lottery-games__btn--secondary {
    background-color: transparent;
    color: #E53E3E;
    border: 2px solid #E53E3E;
}

.page-lottery-games__btn--secondary:hover {
    background-color: #E53E3E;
    color: #f7fafc;
}

.page-lottery-games__btn--link {
    background-color: transparent;
    color: #E53E3E;
    border: none;
    padding: 0;
    font-size: 1em;
}

.page-lottery-games__btn--link:hover {
    color: #FF7F7F;
    text-decoration: underline;
}

.page-lottery-games__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

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

    .page-lottery-games__hero-description,
    .page-lottery-games__tips-guide p,
    .page-lottery-games__cta-description {
        font-size: 1em;
    }

    .page-lottery-games__section-title {
        font-size: 2em;
    }

    .page-lottery-games__grid,
    .page-lottery-games__game-list,
    .page-lottery-games__detail-list {
        grid-template-columns: 1fr;
    }

    .page-lottery-games__btn--large {
        width: 100%;
        text-align: center;
    }

    .page-lottery-games__cta-buttons {
        flex-direction: column;
    }
}