/* style/index-why-choose-loto188.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-button-color: #EA7C07;
    --text-dark: #333333;
    --text-light: #ffffff;
    --black-color: #000000; /* Assuming shared.css defines --black-color as a dark background */
    --card-bg-dark-section: rgba(255, 255, 255, 0.1);
}

.page-index-why-choose-loto188 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for the main content area, assuming dark body background */
    background-color: var(--black-color);
}

/* Hero Section */
.page-index-why-choose-loto188__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    box-sizing: border-box;
}

.page-index-why-choose-loto188__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-index-why-choose-loto188__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-index-why-choose-loto188__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: var(--text-light);
}

.page-index-why-choose-loto188__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-index-why-choose-loto188__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--secondary-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-why-choose-loto188__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Section Styles */
.page-index-why-choose-loto188__section {
    padding: 80px 20px;
    text-align: center;
}

.page-index-why-choose-loto188__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-why-choose-loto188__heading {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-index-why-choose-loto188__heading--white {
    color: var(--secondary-color);
}

.page-index-why-choose-loto188__sub-heading {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-index-why-choose-loto188__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-index-why-choose-loto188__paragraph--white {
    color: var(--text-light);
}

.page-index-why-choose-loto188__link {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-index-why-choose-loto188__link:hover {
    color: #1a7bb0;
}

/* Light Background Section */
.page-index-why-choose-loto188__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* Dark Background Section */
.page-index-why-choose-loto188__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-index-why-choose-loto188__dark-bg .page-index-why-choose-loto188__link {
    color: var(--secondary-color);
}

.page-index-why-choose-loto188__dark-bg .page-index-why-choose-loto188__link:hover {
    color: #e0e0e0;
}

/* Buttons */
.page-index-why-choose-loto188__btn-primary,
.page-index-why-choose-loto188__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-why-choose-loto188__btn-primary {
    background-color: var(--login-button-color);
    color: var(--secondary-color);
    border-color: var(--login-button-color);
}

.page-index-why-choose-loto188__btn-primary:hover {
    background-color: #c96806;
    border-color: #c96806;
    transform: translateY(-2px);
}

.page-index-why-choose-loto188__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-index-why-choose-loto188__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Feature Grid */
.page-index-why-choose-loto188__feature-grid,
.page-index-why-choose-loto188__info-grid,
.page-index-why-choose-loto188__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-why-choose-loto188__card {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-why-choose-loto188__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-why-choose-loto188__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-why-choose-loto188__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-index-why-choose-loto188__card-text {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-index-why-choose-loto188__dark-bg--card {
    background-color: var(--card-bg-dark-section); /* Semi-transparent white for dark sections */
    color: var(--text-light);
}

.page-index-why-choose-loto188__dark-bg--card .page-index-why-choose-loto188__card-title {
    color: var(--secondary-color);
}

.page-index-why-choose-loto188__dark-bg--card .page-index-why-choose-loto188__card-text {
    color: var(--text-light);
}

/* Steps Section */
.page-index-why-choose-loto188__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-why-choose-loto188__step-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-index-why-choose-loto188__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-index-why-choose-loto188__step-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-why-choose-loto188__step-text {
    font-size: 1em;
    color: var(--text-dark);
}

/* List Styles */
.page-index-why-choose-loto188__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.page-index-why-choose-loto188__list-item {
    background-color: var(--secondary-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-size: 1.05em;
}

.page-index-why-choose-loto188__list-item strong {
    color: var(--primary-color);
}

/* CTA Section */
.page-index-why-choose-loto188__cta-section {
    padding: 60px 20px;
    background-color: var(--primary-color);
    text-align: center;
}

.page-index-why-choose-loto188__cta-container {
    max-width: 800px;
}

.page-index-why-choose-loto188__cta-heading {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-index-why-choose-loto188__cta-text {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.page-index-why-choose-loto188__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-why-choose-loto188__cta-button {
    min-width: 200px;
}

/* FAQ Section */
.page-index-why-choose-loto188__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-index-why-choose-loto188__faq-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-index-why-choose-loto188__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.page-index-why-choose-loto188__faq-question:hover {
    background-color: #f5f5f5;
}

.page-index-why-choose-loto188__faq-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2em;
}

.page-index-why-choose-loto188__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-index-why-choose-loto188__faq-item.active .page-index-why-choose-loto188__faq-toggle {
    transform: rotate(45deg);
}

.page-index-why-choose-loto188__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
}

.page-index-why-choose-loto188__faq-item.active .page-index-why-choose-loto188__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: 15px 25px 20px;
}

.page-index-why-choose-loto188__faq-answer .page-index-why-choose-loto188__paragraph {
    margin-bottom: 0;
    font-size: 1em;
    color: var(--text-dark);
}

/* Image and Video Responsive Styles */
.page-index-why-choose-loto188 img {
    max-width: 100%;
    height: auto;
    display: block;
    /* No filter properties allowed */
}

.page-index-why-choose-loto188 video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.page-index-why-choose-loto188__video-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-why-choose-loto188__hero-title {
        font-size: 3em;
    }
    .page-index-why-choose-loto188__heading {
        font-size: 2em;
    }
    .page-index-why-choose-loto188__sub-heading {
        font-size: 1.6em;
    }
    .page-index-why-choose-loto188__card-title {
        font-size: 1.4em;
    }
    .page-index-why-choose-loto188__cta-heading {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-index-why-choose-loto188 {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-index-why-choose-loto188__hero-section {
        height: auto;
        min-height: 600px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-index-why-choose-loto188__hero-title {
        font-size: 2.2em;
    }
    .page-index-why-choose-loto188__hero-description {
        font-size: 1em;
    }
    .page-index-why-choose-loto188__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-why-choose-loto188__btn-primary,
    .page-index-why-choose-loto188__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-index-why-choose-loto188__section {
        padding: 60px 15px;
    }
    .page-index-why-choose-loto188__container,
    .page-index-why-choose-loto188__cta-container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .page-index-why-choose-loto188__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-why-choose-loto188__sub-heading {
        font-size: 1.4em;
    }
    .page-index-why-choose-loto188__feature-grid,
    .page-index-why-choose-loto188__info-grid,
    .page-index-why-choose-loto188__commitment-grid,
    .page-index-why-choose-loto188__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-why-choose-loto188__card {
        padding: 25px;
    }
    .page-index-why-choose-loto188__card-image {
        height: 200px;
    }
    .page-index-why-choose-loto188__cta-heading {
        font-size: 1.8em;
    }
    .page-index-why-choose-loto188__cta-text {
        font-size: 1em;
    }
    .page-index-why-choose-loto188__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-why-choose-loto188__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-index-why-choose-loto188__faq-title {
        font-size: 1.1em;
    }
    .page-index-why-choose-loto188__faq-answer {
        padding: 0 20px;
    }
    .page-index-why-choose-loto188__faq-item.active .page-index-why-choose-loto188__faq-answer {
        padding: 15px 20px 20px;
    }

    /* Mobile image/video specific overrides */
    .page-index-why-choose-loto188 img,
    .page-index-why-choose-loto188 video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-index-why-choose-loto188__video-section,
    .page-index-why-choose-loto188__video-container,
    .page-index-why-choose-loto188__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-index-why-choose-loto188__cta-buttons,
    .page-index-why-choose-loto188__button-group,
    .page-index-why-choose-loto188__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-index-why-choose-loto188__hero-title {
        font-size: 1.8em;
    }
    .page-index-why-choose-loto188__hero-description {
        font-size: 0.9em;
    }
    .page-index-why-choose-loto188__heading {
        font-size: 1.5em;
    }
    .page-index-why-choose-loto188__cta-heading {
        font-size: 1.5em;
    }
    .page-index-why-choose-loto188__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-index-why-choose-loto188__step-title {
        font-size: 1.2em;
    }
}