:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --login-button-color: #EA7C07;
    --background-light: #FFFFFF;
    --background-dark-section: #26A9E0; /* Using primary color for dark sections */
    --border-color: #e0e0e0;
}

/* General page styling */
.page-resources-live-casino-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light backgrounds */
    background-color: var(--background-light); /* Default background for main content */
}

/* 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); /* Ensure space for fixed header */
    background-color: var(--background-dark-section); /* Using primary color as dark background */
    color: var(--text-light); /* Light text on dark background */
    overflow: hidden; /* Prevent content 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;
    z-index: 1; /* Ensure content is above any potential background effects */
}

.page-resources-live-casino-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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

.page-resources-live-casino-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-live-casino-guide__hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-live-casino-guide__intro-text {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

/* Call to Action Button */
.page-resources-live-casino-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--login-button-color); /* Using specific login color for main CTA */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-live-casino-guide__cta-button:hover {
    background: #e06c00; /* Slightly darker orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Secondary CTA button style */
.page-resources-live-casino-guide__cta-button--secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.page-resources-live-casino-guide__cta-button--secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.page-resources-live-casino-guide__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
    margin-top: 15px;
}

/* Section Styling */
.page-resources-live-casino-guide__section {
    padding: 60px 20px;
    text-align: center;
}

.page-resources-live-casino-guide__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-resources-live-casino-guide__dark-bg {
    background-color: var(--background-dark-section);
    color: var(--text-light);
}

.page-resources-live-casino-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-live-casino-guide__section-title {
    font-size: 2.2em;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: inherit; /* Inherits from section, either dark or light */
}

.page-resources-live-casino-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Content Area - for paragraphs and lists */
.page-resources-live-casino-guide__content-area p,
.page-resources-live-casino-guide__feature-list li p,
.page-resources-live-casino-guide__faq-answer p {
    font-size: 1.05em;
    margin-bottom: 1em;
    color: inherit;
    text-align: left;
}

.page-resources-live-casino-guide__content-area p:last-child {
    margin-bottom: 0;
}

/* Game Grid */
.page-resources-live-casino-guide__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-resources-live-casino-guide__game-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark);
}

.page-resources-live-casino-guide__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-resources-live-casino-guide__game-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
    padding: 0 20px;
    text-align: center;
}

.page-resources-live-casino-guide__game-card p {
    font-size: 1em;
    color: var(--text-dark);
    padding: 0 20px;
    text-align: left;
    flex-grow: 1; /* Allow paragraph to take available space */
}

/* Step List for Beginners Guide */
.page-resources-live-casino-guide__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}