/* style/casino-games-live-dealer.css */

/* Biến CSS */
:root {
    --page-casino-games-live-dealer-primary-color: #1A2E4C;
    --page-casino-games-live-dealer-secondary-color: #FFD700;
    --page-casino-games-live-dealer-text-light: #FFFFFF;
    --page-casino-games-live-dealer-text-dark: #1A2E4C;
    --page-casino-games-live-dealer-bg-light: #F8F8F8;
    --page-casino-games-live-dealer-bg-dark: #1A2E4C;
    --page-casino-games-live-dealer-accent-color: #FFD700;
}

.page-casino-games-live-dealer {
    font-family: 'Arial', sans-serif;
    color: var(--page-casino-games-live-dealer-text-dark);
    line-height: 1.6;
    background-color: var(--page-casino-games-live-dealer-bg-light);
}

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

/* Hero Section */
.page-casino-games-live-dealer__hero-section {
    background: linear-gradient(135deg, var(--page-casino-games-live-dealer-bg-dark) 0%, #3a5071 100%);
    color: var(--page-casino-games-live-dealer-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-casino-games-live-dealer__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.page-casino-games-live-dealer__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-casino-games-live-dealer-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-games-live-dealer__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--page-casino-games-live-dealer-text-light);
}

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

.page-casino-games-live-dealer__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

/* General Section Styling */
.page-casino-games-live-dealer__section {
    padding: 60px 0;
}

.page-casino-games-live-dealer__section:nth-of-type(even) {
    background-color: #e6e9ee; /* Light gray for contrast */
}

.page-casino-games-live-dealer__section-title {
    font-size: 2.5em;
    color: var(--page-casino-games-live-dealer-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-casino-games-live-dealer__text {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #333;
}

.page-casino-games-live-dealer__text strong {
    color: var(--page-casino-games-live-dealer-primary-color);
}

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

.page-casino-games-live-dealer__btn--primary {
    background-color: var(--page-casino-games-live-dealer-accent-color);
    color: var(--page-casino-games-live-dealer-primary-color);
    border: 2px solid var(--page-casino-games-live-dealer-accent-color);
}

.page-casino-games-live-dealer__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-casino-games-live-dealer__btn--secondary {
    background-color: var(--page-casino-games-live-dealer-primary-color);
    color: var(--page-casino-games-live-dealer-text-light);
    border: 2px solid var(--page-casino-games-live-dealer-primary-color);
}

.page-casino-games-live-dealer__btn--secondary:hover {
    background-color: #0f1c30;
    transform: translateY(-3px);
}

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

.page-casino-games-live-dealer__feature-item {
    background-color: var(--page-casino-games-live-dealer-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-casino-games-live-dealer__feature-icon {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-casino-games-live-dealer__feature-title {
    font-size: 1.8em;
    color: var(--page-casino-games-live-dealer-primary-color);
    margin-bottom: 15px;
}

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

.page-casino-games-live-dealer__game-card {
    background-color: var(--page-casino-games-live-dealer-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-casino-games-live-dealer__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-casino-games-live-dealer__game-card-title {
    font-size: 1.6em;
    color: var(--page-casino-games-live-dealer-primary-color);
    padding: 20px 20px 0;
}

.page-casino-games-live-dealer__game-card-description {
    font-size: 1em;
    color: #555;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-casino-games-live-dealer__game-card .page-casino-games-live-dealer__btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    text-align: center;
}

/* Why Choose List */
.page-casino-games-live-dealer__why-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-casino-games-live-dealer__why-list li {
    background-color: var(--page-casino-games-live-dealer-text-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--page-casino-games-live-dealer-accent-color);
}

.page-casino-games-live-dealer__why-list-title {
    font-size: 1.5em;
    color: var(--page-casino-games-live-dealer-primary-color);
    margin-bottom: 10px;
}

/* How-To Steps List */
.page-casino-games-live-dealer__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    counter-reset: step-counter;
}

.page-casino-games-live-dealer__steps-list li {
    background-color: var(--page-casino-games-live-dealer-text-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 70px;
}

.page-casino-games-live-dealer__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 25px;
    background-color: var(--page-casino-games-live-dealer-accent-color);
    color: var(--page-casino-games-live-dealer-primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-casino-games-live-dealer__step-title {
    font-size: 1.5em;
    color: var(--page-casino-games-live-dealer-primary-color);
    margin-bottom: 10px;
}

.page-casino-games-live-dealer__call-to-action {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.page-casino-games-live-dealer__faq-item {
    background-color: var(--page-casino-games-live-dealer-text-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-casino-games-live-dealer__faq-question {
    font-size: 1.4em;
    color: var(--page-casino-games-live-dealer-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.page-casino-games-live-dealer__faq-answer {
    font-size: 1em;
    color: #555;
    display: none; /* Initially hidden */
}

.page-casino-games-live-dealer__faq-item.active .page-casino-games-live-dealer__faq-answer {
    display: block;
}

/* Conclusion Section */
.page-casino-games-live-dealer__conclusion {
    text-align: center;
    background-color: var(--page-casino-games-live-dealer-primary-color);
    color: var(--page-casino-games-live-dealer-text-light);
}

.page-casino-games-live-dealer__conclusion .page-casino-games-live-dealer__section-title {
    color: var(--page-casino-games-live-dealer-secondary-color);
}

.page-casino-games-live-dealer__conclusion .page-casino-games-live-dealer__text {
    color: var(--page-casino-games-live-dealer-text-light);
    max-width: 900px;
    margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-casino-games-live-dealer__hero-title {
        font-size: 2.8em;
    }

    .page-casino-games-live-dealer__hero-subtitle {
        font-size: 1.3em;
    }

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

    .page-casino-games-live-dealer__feature-title,
    .page-casino-games-live-dealer__game-card-title,
    .page-casino-games-live-dealer__why-list-title,
    .page-casino-games-live-dealer__step-title,
    .page-casino-games-live-dealer__faq-question {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-casino-games-live-dealer__hero-section {
        padding: 60px 0;
        min-height: 400px;
    }

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

    .page-casino-games-live-dealer__hero-subtitle {
        font-size: 1.1em;
    }

    .page-casino-games-live-dealer__section {
        padding: 40px 0;
    }

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

    .page-casino-games-live-dealer__features-grid,
    .page-casino-games-live-dealer__game-card-grid {
        grid-template-columns: 1fr;
    }

    .page-casino-games-live-dealer__steps-list li {
        padding-left: 60px;
    }

    .page-casino-games-live-dealer__steps-list li::before {
        left: 15px;
        top: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}

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

    .page-casino-games-live-dealer__hero-subtitle {
        font-size: 1em;
    }

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

    .page-casino-games-live-dealer__section-title {
        font-size: 1.5em;
    }

    .page-casino-games-live-dealer__text {
        font-size: 0.95em;
    }
}