/* style/lottery-keno.css */

.page-lottery-keno {
    font-family: 'Arial', sans-serif;
    color: #e5e5e5; /* Light grey for general text on dark background */
    background-color: #1A202C;
}

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

.page-lottery-keno .section-title {
    color: #FFD700; /* Gold for titles */
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-lottery-keno .section-description {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.page-lottery-keno .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-lottery-keno .btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text on gold */
}

.page-lottery-keno .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-lottery-keno .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-lottery-keno .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-lottery-keno .btn-link {
    color: #FFD700;
    text-decoration: underline;
    background: none;
    padding: 0;
    margin-top: 10px;
    display: inline-block;
}

.page-lottery-keno .btn-link:hover {
    color: #e6c200;
}

/* Hero Section */
.page-lottery-keno .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A202C 0%, #3a4a68 100%); /* Dark gradient */
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-lottery-keno .hero-content {
    max-width: 600px;
    text-align: center;
    z-index: 1;
    margin-right: 40px;
}

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

.page-lottery-keno .hero-description {
    font-size: 1.2em;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-lottery-keno .hero-actions {
    display: flex;
    justify-content: center;
}

.page-lottery-keno .hero-image-container {
    flex-shrink: 0;
    width: 500px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-left: 40px;
    z-index: 1;
}

.page-lottery-keno .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Intro Section */
.page-lottery-keno .intro-section {
    padding: 60px 0;
    background-color: #242c3d;
}

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

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

.page-lottery-keno .feature-card:hover {
    transform: translateY(-5px);
}

.page-lottery-keno .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-lottery-keno .feature-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-lottery-keno .feature-text {
    font-size: 0.95em;
    line-height: 1.5;
    color: #b0b0b0;
}

/* How to Play Section */
.page-lottery-keno .how-to-play-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-lottery-keno .step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-lottery-keno .step-item {
    background-color: #242c3d;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    padding-left: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-keno .step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 30px;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
}

.page-lottery-keno .step-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-lottery-keno .step-text {
    color: #b0b0b0;
    line-height: 1.6;
}

.page-lottery-keno .cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-lottery-keno .cta-text {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 20px;
}

/* Bet Types Section */
.page-lottery-keno .bet-types-section {
    padding: 60px 0;
    background-color: #242c3d;
}

.page-lottery-keno .list-bet-types {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.page-lottery-keno .list-item {
    background-color: #1A202C;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-keno .item-title {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-lottery-keno .item-text {
    color: #b0b0b0;
    font-size: 0.95em;
    line-height: 1.5;
}

.page-lottery-keno .section-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Tips Section */
.page-lottery-keno .tips-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-lottery-keno .tip-card {
    background-color: #242c3d;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-lottery-keno .tip-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-lottery-keno .tip-text {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Why NOHU90 Section */
.page-lottery-keno .why-nohu90-section {
    padding: 60px 0;
    background-color: #242c3d;
}

.page-lottery-keno .why-nohu90-section .grid-2-cols {
    align-items: center;
}

.page-lottery-keno .why-nohu90-section .text-content {
    padding-right: 30px;
}

.page-lottery-keno .why-nohu90-section .text-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-lottery-keno .why-nohu90-section .text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-lottery-keno .why-nohu90-section .text-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #e5e5e5;
    font-size: 1.05em;
}

.page-lottery-keno .why-nohu90-section .text-content ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-lottery-keno .why-nohu90-section .image-content {
    text-align: center;
}

.page-lottery-keno .why-nohu90-section .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-lottery-keno .faq-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-lottery-keno .faq-item {
    background-color: #242c3d;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-lottery-keno .faq-question {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-lottery-keno .faq-answer {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95em;
    display: none; /* Hidden by default, toggled by JS */
}

.page-lottery-keno .faq-item.active .faq-answer {
    display: block;
}

/* Call to Action Section */
.page-lottery-keno .cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(90deg, #1A202C, #3a4a68);
}

.page-lottery-keno .cta-section .section-title {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-lottery-keno .cta-section .section-description {
    color: #e5e5e5;
    margin-bottom: 40px;
    font-size: 1.2em;
}

.page-lottery-keno .btn-large {
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-keno .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-lottery-keno .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .page-lottery-keno .hero-image-container {
        margin-left: 0;
        width: 100%;
        max-width: 500px;
        height: auto;
    }

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

    .page-lottery-keno .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-lottery-keno .btn-secondary {
        margin-left: 0;
    }

    .page-lottery-keno .why-nohu90-section .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .page-lottery-keno .why-nohu90-section .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

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

    .page-lottery-keno .cta-section .section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-lottery-keno .section-title {
        font-size: 1.8em;
    }

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

    .page-lottery-keno .hero-description, .page-lottery-keno .section-description {
        font-size: 1em;
    }

    .page-lottery-keno .step-item {
        padding-left: 60px;
    }

    .page-lottery-keno .step-item::before {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .page-lottery-keno .step-title {
        font-size: 1.4em;
    }

    .page-lottery-keno .feature-title, .page-lottery-keno .tip-title, .page-lottery-keno .item-title, .page-lottery-keno .faq-question {
        font-size: 1.3em;
    }

    .page-lottery-keno .cta-section .section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-lottery-keno .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-lottery-keno .btn-secondary {
        margin-left: 0;
    }
}