/* style/casino-games-live-dealer-experience.css */
.page-casino-games-live-dealer-experience {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

.page-casino-games-live-dealer-experience__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-casino-games-live-dealer-experience__section {
    padding: 60px 0;
    text-align: center;
}

.page-casino-games-live-dealer-experience__section:nth-of-type(even) {
    background-color: #0F2038; /* Slightly lighter dark blue for contrast */
}

.page-casino-games-live-dealer-experience__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-casino-games-live-dealer-experience__section-intro,
.page-casino-games-live-dealer-experience__description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #E0E0E0; /* Slightly off-white for body text */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino-games-live-dealer-experience__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-casino-games-live-dealer-experience__keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-casino-games-live-dealer-experience__hero-section {
    background: linear-gradient(135deg, #0A192F, #1A3A5F);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.page-casino-games-live-dealer-experience__hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-right: 40px;
}

.page-casino-games-live-dealer-experience__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-casino-games-live-dealer-experience__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-casino-games-live-dealer-experience__hero-actions {
    display: flex;
    gap: 20px;
}

.page-casino-games-live-dealer-experience__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-casino-games-live-dealer-experience__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-casino-games-live-dealer-experience__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-casino-games-live-dealer-experience__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

.page-casino-games-live-dealer-experience__hero-image-wrapper {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 50%;
    max-width: 700px;
}

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

/* Why Choose Section */
.page-casino-games-live-dealer-experience__why-choose {
    text-align: left;
}

.page-casino-games-live-dealer-experience__why-choose .page-casino-games-live-dealer-experience__section-title {
    text-align: center;
}

.page-casino-games-live-dealer-experience__why-choose .page-casino-games-live-dealer-experience__section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.page-casino-games-live-dealer-experience__grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.page-casino-games-live-dealer-experience__text-content h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-casino-games-live-dealer-experience__text-content p {
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-casino-games-live-dealer-experience__feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Featured Games Section */
.page-casino-games-live-dealer-experience__featured-games {
    background-color: #0F2038;
}

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

.page-casino-games-live-dealer-experience__game-card {
    background-color: #1A3A5F;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-casino-games-live-dealer-experience__game-card:hover {
    transform: translateY(-5px);
    background-color: #2A4A6F;
}

.page-casino-games-live-dealer-experience__game-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-casino-games-live-dealer-experience__game-card-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-casino-games-live-dealer-experience__game-card-description {
    color: #C0C0C0;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-casino-games-live-dealer-experience__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* The Difference Section */
.page-casino-games-live-dealer-experience__the-difference {
    background-color: #0A192F;
}

.page-casino-games-live-dealer-experience__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-casino-games-live-dealer-experience__feature-item {
    background-color: #1A3A5F;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-casino-games-live-dealer-experience__feature-item:hover {
    transform: translateY(-5px);
}

.page-casino-games-live-dealer-experience__feature-icon {
    margin-bottom: 20px;
}

.page-casino-games-live-dealer-experience__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-casino-games-live-dealer-experience__feature-description {
    color: #E0E0E0;
    font-size: 1em;
}

/* How to Start Section */
.page-casino-games-live-dealer-experience__how-to-start {
    background-color: #0F2038;
}

.page-casino-games-live-dealer-experience__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-casino-games-live-dealer-experience__step-card {
    background-color: #1A3A5F;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    padding-top: 60px;
}

.page-casino-games-live-dealer-experience__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0A192F;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 4px solid #0A192F;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-casino-games-live-dealer-experience__step-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-casino-games-live-dealer-experience__step-description {
    color: #E0E0E0;
    font-size: 0.95em;
}

.page-casino-games-live-dealer-experience__link {
    color: #FFD700;
    text-decoration: none;
}

.page-casino-games-live-dealer-experience__link:hover {
    text-decoration: underline;
}

.page-casino-games-live-dealer-experience__cta-bottom {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-casino-games-live-dealer-experience__bottom-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsible Gaming Section */
.page-casino-games-live-dealer-experience__responsible-gaming .page-casino-games-live-dealer-experience__section-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-casino-games-live-dealer-experience__responsible-gaming .page-casino-games-live-dealer-experience__description {
    font-size: 1em;
    color: #C0C0C0;
}

/* Final CTA Section */
.page-casino-games-live-dealer-experience__final-cta {
    background: linear-gradient(135deg, #1A3A5F, #0A192F);
    padding: 80px 0;
}

.page-casino-games-live-dealer-experience__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-casino-games-live-dealer-experience__cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-casino-games-live-dealer-experience__cta-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-casino-games-live-dealer-experience__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-casino-games-live-dealer-experience__hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .page-casino-games-live-dealer-experience__hero-image-wrapper {
        width: 80%;
    }

    .page-casino-games-live-dealer-experience__grid-two-cols {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-casino-games-live-dealer-experience__text-content h3 {
        text-align: center;
    }

    .page-casino-games-live-dealer-experience__section-title {
        font-size: 2.2em;
    }

    .page-casino-games-live-dealer-experience__hero-title {
        font-size: 2.8em;
    }

    .page-casino-games-live-dealer-experience__hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-casino-games-live-dealer-experience__section {
        padding: 40px 0;
    }

    .page-casino-games-live-dealer-experience__section-title {
        font-size: 2em;
    }

    .page-casino-games-live-dealer-experience__hero-title {
        font-size: 2.5em;
    }

    .page-casino-games-live-dealer-experience__hero-description {
        font-size: 1em;
    }

    .page-casino-games-live-dealer-experience__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-casino-games-live-dealer-experience__game-grid,
    .page-casino-games-live-dealer-experience__feature-list,
    .page-casino-games-live-dealer-experience__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-casino-games-live-dealer-experience__game-card,
    .page-casino-games-live-dealer-experience__feature-item,
    .page-casino-games-live-dealer-experience__step-card {
        padding: 20px;
    }

    .page-casino-games-live-dealer-experience__step-number {
        top: -15px;
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-casino-games-live-dealer-experience__hero-title {
        font-size: 2em;
    }

    .page-casino-games-live-dealer-experience__section-title {
        font-size: 1.8em;
    }

    .page-casino-games-live-dealer-experience__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-casino-games-live-dealer-experience__btn {
        width: 100%;
    }

    .page-casino-games-live-dealer-experience__hero-image-wrapper {
        width: 100%;
    }

    .page-casino-games-live-dealer-experience__cta-actions {
        flex-direction: column;
    }
}