/* style/casino-live-dealer-games.css */
:root {
    --primary-color: #1A2B3C;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1A2B3C;
    --border-color: #e0e0e0;
}

.page-casino-live-dealer-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light body background */
    background-color: #ffffff; /* Explicitly set for clarity if body is default white */
}

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

/* Hero Section */
.page-casino-live-dealer-games__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    color: var(--text-light); /* Light text for dark background */
}

.page-casino-live-dealer-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-casino-live-dealer-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-casino-live-dealer-games__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-casino-live-dealer-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Gold color for title */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-casino-live-dealer-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

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

/* General Sections */
.page-casino-live-dealer-games__intro-section,
.page-casino-live-dealer-games__get-started-section,
.page-casino-live-dealer-games__faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-casino-live-dealer-games__games-section,
.page-casino-live-dealer-games__trust-section,
.page-casino-live-dealer-games__cta-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-casino-live-dealer-games__tech-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-casino-live-dealer-games__promotions-section {
    padding: 60px 0;
    background-color: var(--secondary-color); /* Medium background */
    color: var(--text-dark); /* Dark text for medium background */
}

.page-casino-live-dealer-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: inherit; /* Inherit color from parent section */
}

.page-casino-live-dealer-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-casino-live-dealer-games__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-casino-live-dealer-games__btn-primary:hover {
    background-color: #0F1E2A; /* Darken primary color */
    transform: translateY(-2px);
}

.page-casino-live-dealer-games__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-casino-live-dealer-games__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

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

.page-casino-live-dealer-games__game-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark bg */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.page-casino-live-dealer-games__game-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-casino-live-dealer-games__game-description {
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-casino-live-dealer-games__game-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    margin-top: auto; /* Push button to bottom */
}

/* Tech Section */
.page-casino-live-dealer-games__tech-flex,
.page-casino-live-dealer-games__promotions-flex,
.page-casino-live-dealer-games__trust-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-casino-live-dealer-games__tech-content,
.page-casino-live-dealer-games__promotions-content,
.page-casino-live-dealer-games__trust-content {
    flex: 1;
}

.page-casino-live-dealer-games__tech-image,
.page-casino-live-dealer-games__promotions-image,
.page-casino-live-dealer-games__trust-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Steps Grid */
.page-casino-live-dealer-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino-live-dealer-games__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-casino-live-dealer-games__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

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

.page-casino-live-dealer-games__step-description {
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-casino-live-dealer-games__step-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    margin-top: auto;
}

/* FAQ Section */
.page-casino-live-dealer-games__faq-list {
    margin-top: 40px;
}

.page-casino-live-dealer-games__faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-casino-live-dealer-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #f0f2f5;
    transition: background-color 0.3s ease;
}

.page-casino-live-dealer-games__faq-question:hover {
    background-color: #e0e2e5;
}

.page-casino-live-dealer-games__faq-question h3 {
    margin: 0;
    font-size: 1em; /* Adjust to fit parent font size */
    color: inherit;
}

.page-casino-live-dealer-games__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-casino-live-dealer-games__faq-item.active .page-casino-live-dealer-games__faq-toggle {
    transform: rotate(45deg); /* Plus to X */
}

.page-casino-live-dealer-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: var(--text-dark);
}

.page-casino-live-dealer-games__faq-item.active .page-casino-live-dealer-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 15px 20px;
}

.page-casino-live-dealer-games__faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* CTA Section */
.page-casino-live-dealer-games__cta-content {
    text-align: center;
    padding: 40px 20px;
}

.page-casino-live-dealer-games__cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

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