/* style/game-lobby-lottery.css */
.page-game-lobby-lottery {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-game-lobby-lottery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-lobby-lottery__hero-section {
    background: linear-gradient(135deg, #007BFF, #4da3ff); /* Adjusted for contrast */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-lottery__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff; /* Ensure high contrast */
}

.page-game-lobby-lottery__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0; /* Slightly lighter for contrast */
}

.page-game-lobby-lottery__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-game-lobby-lottery__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0056b3; /* Darker blue for contrast */
    border: 2px solid #FFD700;
}

.page-game-lobby-lottery__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-lobby-lottery__btn--secondary {
    background-color: #007BFF; /* Primary blue */
    color: #fff;
    border: 2px solid #007BFF;
}

.page-game-lobby-lottery__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-game-lobby-lottery__btn--large {
    padding: 18px 35px;
    font-size: 1.1em;
}

.page-game-lobby-lottery__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-game-lobby-lottery__highlight {
    color: #FFD700;
}

.page-game-lobby-lottery__about-lottery-section,
.page-game-lobby-lottery__guide-section,
.page-game-lobby-lottery__tips-section,
.page-game-lobby-lottery__results-section,
.page-game-lobby-lottery__promotions-section,
.page-game-lobby-lottery__why-choose-section,
.page-game-lobby-lottery__faq-section,
.page-game-lobby-lottery__cta-bottom-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-lottery__about-lottery-section p,
.page-game-lobby-lottery__guide-section p,
.page-game-lobby-lottery__tips-section p,
.page-game-lobby-lottery__results-section p,
.page-game-lobby-lottery__promotions-section p,
.page-game-lobby-lottery__why-choose-section p,
.page-game-lobby-lottery__faq-section p,
.page-game-lobby-lottery__cta-bottom-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-lobby-lottery__types-section {
    background-color: #f0f8ff;
    padding: 80px 0;
    text-align: center;
}

.page-game-lobby-lottery__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-lottery__game-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-lobby-lottery__game-card:hover {
    transform: translateY(-10px);
}

.page-game-lobby-lottery__game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-game-lobby-lottery__game-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-game-lobby-lottery__game-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 25px;
    min-height: 80px; /* Ensure consistent card height */
}

.page-game-lobby-lottery__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-lobby-lottery__step-list li {
    background-color: #e6f2ff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    border-left: 5px solid #007BFF;
}

.page-game-lobby-lottery__step-list li strong {
    color: #0056b3;
}

.page-game-lobby-lottery__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-lobby-lottery__tip-list li {
    background-color: #fff3e0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #555;
    border-left: 4px solid #FFD700;
}

.page-game-lobby-lottery__tip-list li strong {
    color: #b39700;
}

.page-game-lobby-lottery__strategy-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-lottery__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-game-lobby-lottery__feature-item {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-lottery__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.page-game-lobby-lottery__feature-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-game-lobby-lottery__feature-description {
    color: #666;
    font-size: 0.9em;
}

.page-game-lobby-lottery__promo-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
}

.page-game-lobby-lottery__promo-list li {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 10px;
}

.page-game-lobby-lottery__promo-list li strong {
    color: #007BFF;
}

.page-game-lobby-lottery__promo-image {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-lottery__value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-game-lobby-lottery__value-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-game-lobby-lottery__value-item:hover {
    transform: translateY(-5px);
}

.page-game-lobby-lottery__value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-game-lobby-lottery__value-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-game-lobby-lottery__value-description {
    color: #666;
    font-size: 0.95em;
}

.page-game-lobby-lottery__faq-item {
    background-color: #f7f7f7;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.page-game-lobby-lottery__faq-item:hover {
    background-color: #f0f0f0;
}

.page-game-lobby-lottery__faq-question {
    font-size: 1.25em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-game-lobby-lottery__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
    margin-top: 10px;
}

.page-game-lobby-lottery__cta-bottom-section {
    text-align: center;
    background-color: #007BFF;
    color: #fff;
    padding: 80px 0;
    border-radius: 8px;
}

.page-game-lobby-lottery__cta-bottom-section .page-game-lobby-lottery__section-title {
    color: #FFD700; /* Gold for highlight */
    margin-top: 0;
}

.page-game-lobby-lottery__cta-bottom-section .page-game-lobby-lottery__text-content {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-lobby-lottery__hero-title {
        font-size: 2.5em;
    }
    .page-game-lobby-lottery__section-title {
        font-size: 2em;
    }
    .page-game-lobby-lottery__game-grid,
    .page-game-lobby-lottery__feature-grid,
    .page-game-lobby-lottery__value-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-lobby-lottery__hero-section {
        padding: 80px 0 50px;
    }
    .page-game-lobby-lottery__hero-title {
        font-size: 2em;
    }
    .page-game-lobby-lottery__hero-description {
        font-size: 1em;
    }
    .page-game-lobby-lottery__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby-lottery__game-grid,
    .page-game-lobby-lottery__feature-grid,
    .page-game-lobby-lottery__value-grid {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-lottery__game-description {
        min-height: auto;
    }
    .page-game-lobby-lottery__btn--large {
        padding: 15px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-lottery__hero-section {
        padding: 60px 0 40px;
    }
    .page-game-lobby-lottery__hero-title {
        font-size: 1.8em;
    }
    .page-game-lobby-lottery__section-title {
        font-size: 1.6em;
    }
    .page-game-lobby-lottery__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-game-lobby-lottery__step-list li,
    .page-game-lobby-lottery__tip-list li,
    .page-game-lobby-lottery__promo-list li,
    .page-game-lobby-lottery__faq-answer {
        font-size: 0.95em;
    }
    .page-game-lobby-lottery__faq-question {
        font-size: 1.1em;
    }
}