/* style/lottery-games.css */

/* Base styles for the lottery games page */
.page-lottery-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-lottery-games__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-lottery-games__section-title {
    font-size: 2.8em;
    color: #003366;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-lottery-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-lottery-games__description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-lottery-games__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-lottery-games__btn--primary:hover {
    background-color: #e6b800;
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
    transform: translateY(-2px);
}

.page-lottery-games__btn--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    margin-left: 20px;
}

.page-lottery-games__btn--secondary:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-2px);
}

.page-lottery-games__btn--link {
    background: none;
    color: #003366;
    padding: 0;
    font-size: 1em;
    border-bottom: 2px solid #FFCC00;
    border-radius: 0;
}

.page-lottery-games__btn--link:hover {
    color: #FFCC00;
    border-bottom-color: #003366;
}

.page-lottery-games__btn--lg {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Hero Section */
.page-lottery-games__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    text-align: left;
    flex-wrap: wrap;
}

.page-lottery-games__hero-content {
    max-width: 600px;
}

.page-lottery-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00;
    line-height: 1.2;
}

.page-lottery-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-lottery-games__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-lottery-games__hero-image {
    flex-shrink: 0;
}

.page-lottery-games__hero-image .page-lottery-games__img {
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why GEMWIN Section */
.page-lottery-games__why-gemwin {
    background-color: #f0f4f8;
}

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

.page-lottery-games__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-lottery-games__feature-item .page-lottery-games__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-lottery-games__feature-item h3 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-lottery-games__feature-item p {
    color: #666;
    font-size: 1em;
}

/* Game List Section */
.page-lottery-games__game-list {
    background-color: #fff;
}

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

.page-lottery-games__card {
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-lottery-games__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-lottery-games__card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-lottery-games__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-lottery-games__card-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-lottery-games__card-title a {
    text-decoration: none;
    color: inherit;
}

.page-lottery-games__card-title a:hover {
    color: #FFCC00;
}

.page-lottery-games__card-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Getting Started Section */
.page-lottery-games__getting-started {
    background-color: #f0f4f8;
}

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

.page-lottery-games__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-lottery-games__step-item .page-lottery-games__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-lottery-games__step-item h4 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-lottery-games__step-item p {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Promotions Section */
.page-lottery-games__promotions {
    background-color: #fff;
}

.page-lottery-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-lottery-games__promo-list li {
    background-color: #f9f9f9;
    border-left: 5px solid #FFCC00;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
}

.page-lottery-games__promo-list li strong {
    color: #003366;
}

.page-lottery-games__cta-center {
    margin-top: 50px;
}

/* Responsible Gaming Section */
.page-lottery-games__responsible-gaming {
    background-color: #f0f4f8;
    border-top: 1px solid #e0e0e0;
}

/* FAQ Section */
.page-lottery-games__faq {
    background-color: #fff;
}

.page-lottery-games__faq-items {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-lottery-games__faq-item h3 {
    color: #003366;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-lottery-games__faq-item p {
    color: #555;
    font-size: 1em;
}

/* Final CTA Section */
.page-lottery-games__cta-final {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-lottery-games__cta-title {
    font-size: 3em;
    color: #FFCC00;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-lottery-games__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-lottery-games__hero-content {
        max-width: 100%;
    }

    .page-lottery-games__hero-image .page-lottery-games__img {
        max-width: 100%;
        margin-top: 30px;
    }

    .page-lottery-games__hero-title {
        font-size: 2.8em;
    }

    .page-lottery-games__hero-description {
        font-size: 1.1em;
    }

    .page-lottery-games__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

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

    .page-lottery-games__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-lottery-games__hero {
        padding: 60px 15px;
    }

    .page-lottery-games__section {
        padding: 40px 15px;
    }

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

    .page-lottery-games__hero-title {
        font-size: 2.5em;
    }

    .page-lottery-games__hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-lottery-games__btn--secondary {
        margin-top: 10px;
    }

    .page-lottery-games__features, .page-lottery-games__detail-cards, .page-lottery-games__steps {
        grid-template-columns: 1fr;
    }

    .page-lottery-games__card-img {
        height: 180px;
    }

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

@media (max-width: 480px) {
    .page-lottery-games__hero-title {
        font-size: 2em;
    }

    .page-lottery-games__hero-description {
        font-size: 1em;
    }

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

    .page-lottery-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-lottery-games__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-lottery-games__cta-title {
        font-size: 1.8em;
    }
    .page-lottery-games__feature-item h3, .page-lottery-games__step-item h4, .page-lottery-games__card-title {
        font-size: 1.4em;
    }
    .page-lottery-games__faq-item h3 {
        font-size: 1.2em;
    }
}