/* style/live-casino-game-shows.css */
.page-live-casino-game-shows {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
}

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

.page-live-casino-game-shows__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

.page-live-casino-game-shows__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #4B3C00; /* Darker text for contrast */
    border: 2px solid #FFD700;
}

.page-live-casino-game-shows__btn--primary:hover {
    background-color: #E6C200;
    border-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: #4B3C00;
    transform: translateY(-2px);
}

.page-live-casino-game-shows__btn--play, .page-live-casino-game-shows__btn--claim, .page-live-casino-game-shows__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold text for contrast */
    border: 1px solid #8B0000;
}

.page-live-casino-game-shows__btn--play:hover, .page-live-casino-game-shows__btn--claim:hover, .page-live-casino-game-shows__btn--small:hover {
    background-color: #a00000;
    border-color: #a00000;
    transform: translateY(-1px);
}

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

/* Hero Section */
.page-live-casino-game-shows__hero {
    background: linear-gradient(135deg, #8B0000 0%, #4B0000 100%); /* Dark Red gradient */
    color: #f0f0f0;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-live-casino-game-shows__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-live-casino-game-shows__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-live-casino-game-shows__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-live-casino-game-shows__hero-actions .page-live-casino-game-shows__btn {
    margin: 0 10px;
}

.page-live-casino-game-shows__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
    z-index: 1;
}

.page-live-casino-game-shows__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) brightness(0.7);
    transform: scale(1.1);
}

/* General Section Styling */
.page-live-casino-game-shows__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live-casino-game-shows__section:last-of-type {
    border-bottom: none;
}

.page-live-casino-game-shows__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold title */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-live-casino-game-shows__section-subtitle {
    font-size: 1.2em;
    color: #ccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Intro Section */
.page-live-casino-game-shows__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-live-casino-game-shows__intro strong {
    color: #FFD700;
}

.page-live-casino-game-shows__image-text-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-live-casino-game-shows__image-left {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-live-casino-game-shows__text-right {
    flex: 1;
    max-width: 50%;
}

.page-live-casino-game-shows__text-right ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-live-casino-game-shows__text-right li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-live-casino-game-shows__text-right li::before {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
}

/* Game Grid */
.page-live-casino-game-shows__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-casino-game-shows__game-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-casino-game-shows__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

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

.page-live-casino-game-shows__game-description {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 20px;
}

/* How to Play Section */
.page-live-casino-game-shows__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-casino-game-shows__step-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-live-casino-game-shows__step-icon {
    font-size: 2.5em;
    color: #FFD700;
    background-color: #8B0000;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #FFD700;
}

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

.page-live-casino-game-shows__step-description {
    font-size: 0.95em;
    color: #ccc;
    margin-bottom: 20px;
}

.page-live-casino-game-shows__additional-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-live-casino-game-shows__download-app {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    gap: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-live-casino-game-shows__qr-code {
    width: 120px;
    height: 120px;
    border: 5px solid #FFD700;
    border-radius: 5px;
}

.page-live-casino-game-shows__app-text {
    flex: 1;
    text-align: left;
}

.page-live-casino-game-shows__app-text h3 {
    margin-top: 0;
}

.page-live-casino-game-shows__app-text p {
    margin-bottom: 20px;
    color: #ccc;
}

/* Bonuses Section */
.page-live-casino-game-shows__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-casino-game-shows__bonus-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-casino-game-shows__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-live-casino-game-shows__bonus-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-live-casino-game-shows__bonus-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-live-casino-game-shows__bonus-description {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 20px;
}

.page-live-casino-game-shows__callout-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
    color: #FFD700;
    font-weight: bold;
}

/* Tips Section */
.page-live-casino-game-shows__tip-list {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 40px auto 0;
}

.page-live-casino-game-shows__tip-list li {
    background-color: #2a2a2a;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-live-casino-game-shows__tip-list li strong {
    color: #FFD700;
}

.page-live-casino-game-shows__final-tip {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #e0e0e0;
    font-style: italic;
}

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

.page-live-casino-game-shows__feature-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    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-card:hover {
    transform: translateY(-5px);
}

.page-live-casino-game-shows__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-live-casino-game-shows__feature-description {
    font-size: 0.95em;
    color: #ccc;
}

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

.page-live-casino-game-shows__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-live-casino-game-shows__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-live-casino-game-shows__faq-question.active::after {
    transform: rotate(45deg);
}

.page-live-casino-game-shows__faq-answer {
    font-size: 1.0em;
    color: #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-live-casino-game-shows__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* CTA Section */
.page-live-casino-game-shows__cta {
    background: linear-gradient(90deg, #8B0000, #FFD700);
    padding: 80px 0;
    text-align: center;
    border-radius: 10px;
    margin: 60px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live-casino-game-shows__cta .page-live-casino-game-shows__section-title {
    color: #f0f0f0;
    margin-bottom: 25px;
}

.page-live-casino-game-shows__cta .page-live-casino-game-shows__section-subtitle {
    color: #eee;
    margin-bottom: 50px;
}

.page-live-casino-game-shows__cta .page-live-casino-game-shows__btn--primary {
    background-color: #FFD700;
    color: #4B3C00;
    border-color: #FFD700;
    margin-right: 20px;
}

.page-live-casino-game-shows__cta .page-live-casino-game-shows__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live-casino-game-shows__hero-title {
        font-size: 3em;
    }
    .page-live-casino-game-shows__section-title {
        font-size: 2.2em;
    }
    .page-live-casino-game-shows__image-text-layout {
        flex-direction: column;
        text-align: center;
    }
    .page-live-casino-game-shows__image-left, .page-live-casino-game-shows__text-right {
        max-width: 100%;
    }
    .page-live-casino-game-shows__text-right ul {
        text-align: left;
    }
    .page-live-casino-game-shows__download-app {
        flex-direction: column;
        text-align: center;
    }
    .page-live-casino-game-shows__app-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-live-casino-game-shows__hero {
        padding: 60px 0;
    }
    .page-live-casino-game-shows__hero-title {
        font-size: 2.5em;
    }
    .page-live-casino-game-shows__hero-description {
        font-size: 1.1em;
    }
    .page-live-casino-game-shows__hero-actions .page-live-casino-game-shows__btn {
        margin-bottom: 15px;
        width: 80%;
    }
    .page-live-casino-game-shows__section-title {
        font-size: 1.8em;
    }
    .page-live-casino-game-shows__section-subtitle {
        font-size: 1em;
    }
    .page-live-casino-game-shows__game-grid, .page-live-casino-game-shows__steps-grid, .page-live-casino-game-shows__bonus-grid, .page-live-casino-game-shows__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-live-casino-game-shows__cta .page-live-casino-game-shows__btn {
        margin: 0 0 15px 0;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .page-live-casino-game-shows__hero-title {
        font-size: 2em;
    }
    .page-live-casino-game-shows__hero-description {
        font-size: 0.9em;
    }
    .page-live-casino-game-shows__btn {
        padding: 10px 20px;
    }
    .page-live-casino-game-shows__section-title {
        font-size: 1.5em;
    }
    .page-live-casino-game-shows__sub-title {
        font-size: 1.5em;
    }
    .page-live-casino-game-shows__qr-code {
        width: 100px;
        height: 100px;
    }
}