.page-live-dealer-games {
    font-family: Arial, sans-serif;
    color: #FFF6D6;
    background-color: #0A0A0A;
    line-height: 1.6;
    padding-top: 10px; /* Minimal padding to prevent content from touching the header */
}

.page-live-dealer-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    overflow: hidden;
}

.page-live-dealer-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust as needed */
    overflow: hidden;
    position: relative;
}

.page-live-dealer-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* No CSS filter allowed */
}

.page-live-dealer-games__hero-content {
    padding: 20px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

.page-live-dealer-games__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #FFD36B;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-live-dealer-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E5E5E5;
}

.page-live-dealer-games__hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-live-dealer-games__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-live-dealer-games__cta-button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    border: none;
}

.page-live-dealer-games__cta-button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-live-dealer-games__cta-button--secondary {
    background-color: transparent;
    color: #FFD36B;
    border: 2px solid #FFD36B;
}

.page-live-dealer-games__cta-button--secondary:hover {
    background-color: #FFD36B;
    color: #0A0A0A;
    transform: translateY(-2px);
}

.page-live-dealer-games__info-section,
.page-live-dealer-games__games-showcase,
.page-live-dealer-games__how-to-start,
.page-live-dealer-games__promotions-section,
.page-live-dealer-games__safety-section,
.page-live-dealer-games__faq-section,
.page-live-dealer-games__cta-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-live-dealer-games__section-title {
    font-size: 2.2rem;
    color: #FFD36B;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-live-dealer-games__section-description {
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E5E5;
}

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

.page-live-dealer-games__feature-card,
.page-live-dealer-games__game-card {
    background-color: #0A0A0A;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
}

.page-live-dealer-games__feature-card:hover,
.page-live-dealer-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-live-dealer-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-live-dealer-games__feature-title,
.page-live-dealer-games__game-title {
    font-size: 1.4rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-dealer-games__feature-text,
.page-live-dealer-games__game-text {
    font-size: 0.95rem;
    color: #E5E5E5;
}

.page-live-dealer-games__game-image {
    width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.page-live-dealer-games__game-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-live-dealer-games__game-button:hover {
    opacity: 0.9;
}

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

.page-live-dealer-games__step-card {
    background-color: #0A0A0A;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid #3A2A12;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-live-dealer-games__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2C14E;
    color: #0A0A0A;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-live-dealer-games__step-title {
    font-size: 1.3rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-dealer-games__step-text {
    font-size: 0.95rem;
    color: #E5E5E5;
    margin-bottom: 20px;
}

.page-live-dealer-games__step-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.page-live-dealer-games__step-button:hover {
    opacity: 0.9;
}

.page-live-dealer-games__promo-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.page-live-dealer-games__promo-card {
    background-color: #0A0A0A;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
}

.page-live-dealer-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-live-dealer-games__promo-image {
    width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.page-live-dealer-games__promo-title {
    font-size: 1.4rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-dealer-games__promo-text {
    font-size: 0.95rem;
    color: #E5E5E5;
    margin-bottom: 20px;
}

.page-live-dealer-games__promo-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.page-live-dealer-games__promo-button:hover {
    opacity: 0.9;
}

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

.page-live-dealer-games__safety-item {
    background-color: #0A0A0A;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid #3A2A12;
}

.page-live-dealer-games__safety-title {
    font-size: 1.3rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-dealer-games__safety-text {
    font-size: 0.95rem;
    color: #E5E5E5;
    margin-bottom: 15px;
}

.page-live-dealer-games__safety-link {
    color: #FFD36B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-live-dealer-games__safety-link:hover {
    color: #F2C14E;
}

.page-live-dealer-games__faq-item {
    background-color: #0A0A0A;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid #3A2A12;
}

.page-live-dealer-games__faq-question {
    font-size: 1.2rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-dealer-games__faq-answer {
    font-size: 1rem;
    color: #E5E5E5;
}

.page-live-dealer-games__cta-section {
    text-align: center;
    padding-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-live-dealer-games__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-live-dealer-games__section-title {
        font-size: 1.8rem;
    }

    .page-live-dealer-games__hero-cta-group,
    .page-live-dealer-games__promo-cards {
        flex-direction: column;
        align-items: center;
    }

    .page-live-dealer-games__promo-card {
        max-width: 100%;
    }

    .page-live-dealer-games__feature-grid,
    .page-live-dealer-games__game-grid,
    .page-live-dealer-games__steps-container,
    .page-live-dealer-games__safety-points {
        grid-template-columns: 1fr;
    }
    
    .page-live-dealer-games__hero-image,
    .page-live-dealer-games__feature-icon,
    .page-live-dealer-games__game-image,
    .page-live-dealer-games__promo-image {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all content area images are at least 200px wide on smaller screens, unless specifically overridden for smaller elements */
@media (max-width: 768px) {
    .page-live-dealer-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum width for mobile */
        min-height: 200px; /* Enforce minimum height for mobile */
    }
}