/* style/lottery-i9bet-lottery-types-gameplay-introduction.css */
.page-lottery-i9bet-lottery-types-gameplay-introduction {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction .highlight {
    color: #0A2463;
    font-weight: bold;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__section:nth-of-type(even) {
    background-color: #f2f7fc;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__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-i9bet-lottery-types-gameplay-introduction__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

/* Hero Section */
.page-lottery-i9bet-lottery-types-gameplay-introduction__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.8) 0%, rgba(255, 215, 0, 0.4) 100%);
    z-index: 2;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__hero-title .highlight {
    color: #FFD700;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Buttons */
.page-lottery-i9bet-lottery-types-gameplay-introduction__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__btn--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__btn--secondary:hover {
    background-color: #081e50;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Lottery Types Grid */
.page-lottery-i9bet-lottery-types-gameplay-introduction__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__grid-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__grid-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__grid-text {
    color: #666;
    margin-bottom: 15px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__list {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
    margin-bottom: 15px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__list li {
    margin-bottom: 8px;
}

/* How to Play Steps */
.page-lottery-i9bet-lottery-types-gameplay-introduction__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__steps li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #0A2463;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__steps h3 {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__steps p {
    color: #666;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__text-link {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__text-link:hover {
    text-decoration: underline;
}

/* Strategy Section */
.page-lottery-i9bet-lottery-types-gameplay-introduction__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__strategy-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__strategy-item h3 {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__strategy-item p {
    color: #666;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__strategy-image {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 6px;
}

/* Why Choose Section */
.page-lottery-i9bet-lottery-types-gameplay-introduction__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__feature-item {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__feature-item:hover {
    transform: translateY(-5px);
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__feature-item h3 {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__feature-item p {
    color: #666;
    font-size: 0.95em;
}

/* FAQ Section */
.page-lottery-i9bet-lottery-types-gameplay-introduction__faq {
    background-color: #f2f7fc;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__faq-answer {
    color: #666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 10px;
}

/* Call to Action Section */
.page-lottery-i9bet-lottery-types-gameplay-introduction__cta {
    background: linear-gradient(135deg, #0A2463, #3b5998);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-lottery-i9bet-lottery-types-gameplay-introduction__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-i9bet-lottery-types-gameplay-introduction__hero-title {
        font-size: 2.8em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__hero-description {
        font-size: 1.1em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-lottery-i9bet-lottery-types-gameplay-introduction__hero {
        height: 400px;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__hero-title {
        font-size: 2.2em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__hero-description {
        font-size: 1em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__grid-item,
    .page-lottery-i9bet-lottery-types-gameplay-introduction__strategy-item,
    .page-lottery-i9bet-lottery-types-gameplay-introduction__feature-item {
        padding: 20px;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__steps li {
        padding-left: 60px;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__steps li::before {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__cta-title {
        font-size: 2.2em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-lottery-i9bet-lottery-types-gameplay-introduction__hero {
        height: 350px;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__hero-title {
        font-size: 1.8em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__hero-description {
        font-size: 0.9em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__section {
        padding: 40px 0;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__section-title {
        font-size: 1.8em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__section-description {
        font-size: 0.9em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__steps li {
        padding-left: 50px;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__steps li::before {
        width: 40px;
        height: 40px;
        font-size: 1.4em;
    }
    .page-lottery-i9bet-lottery-types-gameplay-introduction__cta-title {
        font-size: 1.8em;
    }
}