:root {
    --primary-color: #007bff; /* Deep Blue */
    --secondary-color: #ffc107; /* Amber Gold */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark: var(--dark-bg-1); /* From shared.css, assumed dark */
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-casino-live-dealer-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default light text for dark body background */
    background-color: var(--background-dark); /* Inherits from body */
}

/* Fixed header offset */
.page-casino-live-dealer-guide__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply offset to the first visible section */
}

/* General container for content */
.page-casino-live-dealer-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-casino-live-dealer-guide__section-title {
    font-size: 2.5em;
    color: var(--secondary-color); /* Amber gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-casino-live-dealer-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-light); /* Light text for general paragraphs */
    text-align: justify;
}

.page-casino-live-dealer-guide__text-center {
    text-align: center;
}

/* Hero Section */
.page-casino-live-dealer-guide__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

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

.page-casino-live-dealer-guide__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-guide__hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 900px;
    padding: 20px;
}

.page-casino-live-dealer-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Amber gold for main title */
    line-height: 1.2;
    font-weight: bold;
}

.page-casino-live-dealer-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino-live-dealer-guide__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-casino-live-dealer-guide__btn-primary,
.page-casino-live-dealer-guide__btn-secondary,
.page-casino-live-dealer-guide__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    text-align: center;
}

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

.page-casino-live-dealer-guide__btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-casino-live-dealer-guide__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color); /* Default for dark sections */
    border: 2px solid var(--secondary-color);
}