/* style/live-baccarat.css */
.page-live-baccarat {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-live-baccarat__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-live-baccarat__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-live-baccarat__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-live-baccarat__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45;
}

.page-live-baccarat__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-live-baccarat__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.page-live-baccarat__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-live-baccarat__button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-live-baccarat__button--register:hover {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
    transform: translateY(-3px);
}

.page-live-baccarat__button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-live-baccarat__button--login:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
    transform: translateY(-3px);
}

.page-live-baccarat__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-live-baccarat__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.6);
}

.page-live-baccarat__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-live-baccarat__subsection-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: left;
    border-left: 5px solid #FCBC45;
    padding-left: 15px;
}

.page-live-baccarat__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #333333;
}

.page-live-baccarat__info-section, .page-live-baccarat__strategy-section, .page-live-baccarat__security-section, .page-live-baccarat__bonuses-section, .page-live-baccarat__get-started-section, .page-live-baccarat__responsible-gaming-section, .page-live-baccarat__mobile-section, .page-live-baccarat__faq-section, .page-live-baccarat__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-live-baccarat__why-choose-us {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-live-baccarat__features-grid, .page-live-baccarat__roadmap-grid, .page-live-baccarat__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-live-baccarat__feature-card, .page-live-baccarat__roadmap-card, .page-live-baccarat__bonus-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live-baccarat__feature-card:hover, .page-live-baccarat__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live-baccarat__feature-icon, .page-live-baccarat__bonus-image {
    width: 100%;
    height: 200px; /* Minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-live-baccarat__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live-baccarat__card-description {
    font-size: 1em;
    color: #555555;
    flex-grow: 1;
}

.page-live-baccarat__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-live-baccarat__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333333;
}

.page-live-baccarat__content-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-live-baccarat__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-live-baccarat__text-content {
    flex: 1;
    min-width: 300px;
}

.page-live-baccarat__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-live-baccarat__image--responsive {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min width */
    min-height: 200px; /* Enforce min height */
}

.page-live-baccarat__roadmap-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-baccarat__roadmap-description {
    font-size: 0.95em;
    color: #555555;
}

.page-live-baccarat__provider-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-baccarat__provider-item {
    background-color: #fcfcfc;
    border-left: 5px solid #FCBC45;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-live-baccarat__provider-name {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-baccarat__provider-description {
    font-size: 1em;
    color: #555555;
}

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

.page-live-baccarat__security-item {
    background-color: #fcfcfc;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-live-baccarat__security-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-baccarat__security-description {
    font-size: 0.95em;
    color: #555555;
}

.page-live-baccarat__button--learn-more, .page-live-baccarat__button--view-promo, .page-live-baccarat__button--play-now, .page-live-baccarat__button--support, .page-live-baccarat__button--claim, .page-live-baccarat__button--step-action, .page-live-baccarat__button--final-cta, .page-live-baccarat__button--responsible, .page-live-baccarat__button--download-app, .page-live-baccarat__button--final-join {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: 20px;
}

.page-live-baccarat__button--learn-more:hover, .page-live-baccarat__button--view-promo:hover, .page-live-baccarat__button--play-now:hover, .page-live-baccarat__button--support:hover, .page-live-baccarat__button--claim:hover, .page-live-baccarat__button--step-action:hover, .page-live-baccarat__button--final-cta:hover, .page-live-baccarat__button--responsible:hover, .page-live-baccarat__button--download-app:hover, .page-live-baccarat__button--final-join:hover {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
    transform: translateY(-3px);
}

.page-live-baccarat__paragraph--small {
    font-size: 0.9em;
    color: #777777;
    text-align: center;
    margin-top: 30px;
}

.page-live-baccarat__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-live-baccarat__step-item {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live-baccarat__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live-baccarat__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-live-baccarat__faq-item {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live-baccarat__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-live-baccarat__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none;
    margin-top: 10px;
}

.page-live-baccarat__faq-question.active + .page-live-baccarat__faq-answer {
    display: block;
}

.page-live-baccarat__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-live-baccarat__cta-section .page-live-baccarat__section-title {
    color: #FCBC45;
}

.page-live-baccarat__cta-section .page-live-baccarat__paragraph {
    color: #f0f0f0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-live-baccarat__hero-title {
        font-size: 2.8em;
    }
    .page-live-baccarat__hero-description {
        font-size: 1.1em;
    }
    .page-live-baccarat__section-title {
        font-size: 2em;
    }
    .page-live-baccarat__subsection-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-live-baccarat {
        padding-top: var(--header-offset, 120px);
    }
    .page-live-baccarat__hero-section {
        padding: 60px 20px;
    }
    .page-live-baccarat__hero-title {
        font-size: 2.2em;
    }
    .page-live-baccarat__hero-description {
        font-size: 1em;
    }
    .page-live-baccarat__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-live-baccarat__button {
        width: 100%;
        padding: 12px 20px;
    }
    .page-live-baccarat__section-title {
        font-size: 1.8em;
    }
    .page-live-baccarat__subsection-title {
        font-size: 1.3em;
    }
    .page-live-baccarat__paragraph {
        font-size: 1em;
    }
    .page-live-baccarat__content-flex, .page-live-baccarat__content-flex--reverse {
        flex-direction: column;
    }
    .page-live-baccarat__image--responsive {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }
    /* Ensure all images within .page-live-baccarat are responsive and not smaller than 200px */
    .page-live-baccarat img {
        max-width: 100%;
        height: auto;
        min-width: 200px; 
        min-height: 200px;
    }
    .page-live-baccarat__feature-icon, .page-live-baccarat__bonus-image {
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Ensure minimum height */
    }
}

@media (max-width: 480px) {
    .page-live-baccarat__hero-title {
        font-size: 1.8em;
    }
    .page-live-baccarat__section-title {
        font-size: 1.5em;
    }
    .page-live-baccarat__subsection-title {
        font-size: 1.2em;
    }
    .page-live-baccarat__hero-image img {
        filter: brightness(0.4);
    }
    .page-live-baccarat__cta-section .page-live-baccarat__section-title {
        font-size: 1.6em;
    }
}