/* style/live-casino-game-shows.css */
.page-live-casino-game-shows {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    background-color: #0A192F;
}

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

.page-live-casino-game-shows__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A192F 0%, #203a5e 100%); /* Dark blue gradient */
    gap: 40px;
}

.page-live-casino-game-shows__hero-content {
    max-width: 800px;
}

.page-live-casino-game-shows__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-live-casino-game-shows__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-live-casino-game-shows__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-live-casino-game-shows__btn {
    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-casino-game-shows__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-live-casino-game-shows__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-live-casino-game-shows__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-live-casino-game-shows__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-live-casino-game-shows__hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
}

.page-live-casino-game-shows__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live-casino-game-shows__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-live-casino-game-shows__about-hb88, .page-live-casino-game-shows__game-showcase, .page-live-casino-game-shows__how-to-play, .page-live-casino-game-shows__benefits, .page-live-casino-game-shows__faq, .page-live-casino-game-shows__cta-final {
    padding: 60px 0;
}

.page-live-casino-game-shows__text {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #E0E0E0;
}

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

.page-live-casino-game-shows__feature-item {
    background-color: #1a2c42; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-live-casino-game-shows__feature-item:hover {
    transform: translateY(-10px);
}

.page-live-casino-game-shows__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-live-casino-game-shows__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-live-casino-game-shows__feature-text {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.6;
}

.page-live-casino-game-shows__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-live-casino-game-shows__game-card {
    background-color: #1a2c42;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-live-casino-game-shows__game-card:hover {
    transform: translateY(-10px);
}

.page-live-casino-game-shows__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-live-casino-game-shows__game-title {
    font-size: 1.6em;
    color: #FFD700;
    padding: 20px 20px 10px;
}

.page-live-casino-game-shows__game-description {
    font-size: 0.95em;
    color: #CCCCCC;
    padding: 0 20px 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.page-live-casino-game-shows__btn--play {
    background-color: #FFD700;
    color: #0A192F;
    border: none;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    text-align: center;
    padding: 12px 0;
    font-size: 1em;
}

.page-live-casino-game-shows__btn--play:hover {
    background-color: #e6c200;
}

.page-live-casino-game-shows__steps-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 50px auto;
    max-width: 900px;
}

.page-live-casino-game-shows__steps-list li {
    background-color: #1a2c42;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    counter-increment: step-counter;
}

.page-live-casino-game-shows__steps-list li::before {
    content: "0" counter(step-counter);
    position: absolute;
    left: -15px;
    top: -15px;
    background-color: #FFD700;
    color: #0A192F;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-live-casino-game-shows__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
    padding-left: 40px; /* To make space for the counter */
}

.page-live-casino-game-shows__step-description {
    font-size: 1.05em;
    color: #CCCCCC;
    line-height: 1.6;
    padding-left: 40px;
}

.page-live-casino-game-shows__cta-bottom {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-live-casino-game-shows__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
}

.page-live-casino-game-shows__benefits-list li {
    background-color: #1a2c42;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live-casino-game-shows__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-live-casino-game-shows__benefit-text {
    font-size: 1.1em;
    color: #E0E0E0;
    line-height: 1.6;
}

.page-live-casino-game-shows__faq-item {
    background-color: #1a2c42;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-live-casino-game-shows__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-live-casino-game-shows__faq-answer {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.6;
}

.page-live-casino-game-shows__cta-final {
    background-color: #1a2c42;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 5px solid #FFD700;
}

.page-live-casino-game-shows__cta-final .page-live-casino-game-shows__section-title {
    padding-top: 0;
    margin-bottom: 30px;
}

.page-live-casino-game-shows__cta-final .page-live-casino-game-shows__text {
    margin-bottom: 40px;
}

.page-live-casino-game-shows__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-width: 3px;
}

.page-live-casino-game-shows .highlight {
    color: #FFD700;
}

.page-live-casino-game-shows .link-highlight {
    color: #FFD700;
    text-decoration: underline;
}

.page-live-casino-game-shows .link-highlight:hover {
    color: #e6c200;
}

.page-live-casino-game-shows .text-bold {
    font-weight: bold;
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-live-casino-game-shows__hero {
        flex-direction: column;
        padding: 60px 20px;
    }

    .page-live-casino-game-shows__hero-title {
        font-size: 2.8em;
    }

    .page-live-casino-game-shows__section-title {
        font-size: 2em;
    }

    .page-live-casino-game-shows__hero-image-wrapper {
        margin-top: 30px;
    }

    .page-live-casino-game-shows__feature-item, .page-live-casino-game-shows__game-card {
        padding: 25px;
    }

    .page-live-casino-game-shows__game-image {
        height: 180px;
    }

    .page-live-casino-game-shows__steps-list li::before {
        left: 5px;
        top: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .page-live-casino-game-shows__step-title, .page-live-casino-game-shows__step-description {
        padding-left: 50px;
    }
}

@media (max-width: 768px) {
    .page-live-casino-game-shows__hero {
        padding: 40px 15px;
    }

    .page-live-casino-game-shows__hero-title {
        font-size: 2.2em;
    }

    .page-live-casino-game-shows__hero-description {
        font-size: 1em;
    }

    .page-live-casino-game-shows__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-live-casino-game-shows__section-title {
        font-size: 1.8em;
        padding-top: 40px;
    }

    .page-live-casino-game-shows__text {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .page-live-casino-game-shows__features-grid, .page-live-casino-game-shows__game-grid, .page-live-casino-game-shows__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-live-casino-game-shows__game-image {
        height: 220px;
    }

    .page-live-casino-game-shows__game-title {
        font-size: 1.4em;
    }

    .page-live-casino-game-shows__step-title {
        font-size: 1.5em;
    }

    .page-live-casino-game-shows__faq-question {
        font-size: 1.2em;
    }

    .page-live-casino-game-shows__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-live-casino-game-shows__hero-actions, .page-live-casino-game-shows__cta-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-live-casino-game-shows__hero-title {
        font-size: 1.8em;
    }
    .page-live-casino-game-shows__section-title {
        font-size: 1.5em;
    }
    .page-live-casino-game-shows__hero-image-wrapper {
        margin-top: 20px;
    }
    .page-live-casino-game-shows__game-image {
        height: 160px;
    }
}