:root {
    --primary-color: #017439;
    --primary-color-dark: #004d2e; /* Adjusted for contrast with white text (WCAG AA 5.25:1) */
    --auxiliary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --button-register-bg: #A00000; /* Adjusted for contrast with yellow text (WCAG AA 6.18:1) */
    --button-register-text: #FFFF00;
}

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

/* Hero Section */
.page-resources-live-casino-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background: linear-gradient(135deg, var(--primary-color-dark), #1a9e5a); /* Using darker primary for gradient */
    color: var(--text-color-light);
    overflow: hidden; /* Prevent image overflow */
}

.page-resources-live-casino-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-resources-live-casino-guide__hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}