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

/* --- General Styling --- */
.page-casino-live-dealer-games {
    color: #ffffff; /* Body background is dark (#121212), so light text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Main content background will be transparent to show body bg */
}

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

.page-casino-live-dealer-games__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-casino-live-dealer-games__sub-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-casino-live-dealer-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0; /* Slightly off-white for readability */
}

.page-casino-live-dealer-games__text-block a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-casino-live-dealer-games__text-block a:hover {
    text-decoration: underline;
}

/* --- Buttons --- */
.page-casino-live-dealer-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-casino-live-dealer-games__cta-buttons--center {
    justify-content: center;
}

.page-casino-live-dealer-games__btn-primary,
.page-casino-live-dealer-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-casino-live-dealer-games__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-casino-live-dealer-games__btn-primary:hover {
    background-color: #1a8cc2;
    border-color: #1a8cc2;
}

.page-casino-live-dealer-games__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-casino-live-dealer-games__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* --- Hero Section --- */
.page-casino-live-dealer-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    min-height: 600px;
    overflow: hidden;
}

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

.page-casino-live-dealer-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-casino-live-dealer-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: #ffffff;
}

.page-casino-live-dealer-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffffff;
}

.page-casino-live-dealer-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #f0f0f0;
}

/* --- Introduction Section --- */
.page-casino-live-dealer-games__introduction-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Darker background for contrast */
}

.page-casino-live-dealer-games__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-casino-live-dealer-games__image-content {
    flex: 1;
    min-width: 300px; /* Minimum width for image before wrapping */
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
}

.page-casino-live-dealer-games__text-content {
    flex: 1.5;
    min-width: 300px; /* Minimum width for text before wrapping */
}

.page-casino-live-dealer-games__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-casino-live-dealer-games__feature-item {
    background-color: rgba(255, 255, 255, 0.05); /* Subtle background for list items */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #26A9E0;
}

.page-casino-live-dealer-games__feature-heading {
    font-size: 1.4em;
    color: #26A9E0;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-casino-live-dealer-games__feature-item p {
    color: #e0e0e0;
    font-size: 1em;
}

/* --- Game Types Section --- */
.page-casino-live-dealer-games__game-types-section {
    padding: 60px 0;
    background-color: #121212; /* Body background */
}

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

.page-casino-live-dealer-games__game-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.page-casino-live-dealer-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-casino-live-dealer-games__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-casino-live-dealer-games__game-card-title {
    font-size: 1.5em;
    color: #26A9E0;
    padding: 15px 20px 10px;
    margin: 0;
}

.page-casino-live-dealer-games__game-card-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-casino-live-dealer-games__game-card-title a:hover {
    text-decoration: underline;
}

.page-casino-live-dealer-games__game-card-description {
    padding: 0 20px 15px;
    font-size: 0.95em;
    color: #e0e0e0;
    flex-grow: 1; /* Make description take available space */
}