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

/* Base styles for the page content, ensuring light text on dark body background */
.page-casino-live-dealer-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for the page, suitable for dark body background */
    background-color: transparent; /* Main section background will be set per section */
}

/* Container for consistent spacing */
.page-casino-live-dealer-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Section Titles */
.page-casino-live-dealer-games__section-title {
    font-size: 2.5em;
    color: #ffffff; /* White for dark sections */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

/* Section Description for light background */
.page-casino-live-dealer-games__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0; /* Slightly off-white for better readability on dark */
}

/* Text blocks */
.page-casino-live-dealer-games__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #f0f0f0; /* Light text for dark body background */
}

/* Buttons - Primary */
.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;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsiveness */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

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

.page-casino-live-dealer-games__btn-primary:hover {
    background-color: #1e8dc2; /* Darker shade of main color */
    border-color: #1e8dc2;
}

/* Buttons - Secondary */
.page-casino-live-dealer-games__btn-secondary {
    background: #ffffff;
    color: #26A9E0; /* Text color is brand color */
    border: 2px solid #26A9E0;
}

.page-casino-live-dealer-games__btn-secondary:hover {
    background-color: #f0f0f0; /* Slightly darker white */
    color: #1e8dc2;
    border-color: #1e8dc2;
}

/* Link buttons (for steps/FAQs) */
.page-casino-live-dealer-games__btn-link {
    display: inline-block;
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.page-casino-live-dealer-games__btn-link:hover {
    color: #1e8dc2;
    text-decoration: underline;
}

/* Full width button */
.page-casino-live-dealer-games__btn-primary--full-width {
    width: 100%;
    margin-top: 20px;
}

/* Card styles */
.page-casino-live-dealer-games__card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark body background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #ffffff; /* Light text for card */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Ensure cards in a grid have equal height */
    box-sizing: border-box;
}

/* Image styles */
.page-casino-live-dealer-games img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Hero Section */
.page-casino-live-dealer-games__hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh; /* Minimum height for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Desktop padding for fixed header */
    color: #ffffff;
}