/* style/resources-kubet191-game-guide.css */

/* Base styles for the page content wrapper */
.page-resources-kubet191-game-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #ffffff; /* Assuming body background is light */
}

/* Hero Section */
.page-resources-kubet191-game-guide__hero-section {
    position: relative;
    width: 100%;
    height: 700px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    box-sizing: border-box;
}

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

.page-resources-kubet191-game-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-kubet191-game-guide__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.page-resources-kubet191-game-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-resources-kubet191-game-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-kubet191-game-guide__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Sections */
.page-resources-kubet191-game-guide__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for titles */
}

.page-resources-kubet191-game-guide__subsection-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #26A9E0; /* Brand color for sub-titles */
}

.page-resources-kubet191-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources-kubet191-game-guide__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-kubet191-game-guide__highlight {
    font-weight: bold;
    color: #26A9E0;
}

.page-resources-kubet191-game-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Color schemes for sections */
.page-resources-kubet191-game-guide__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-resources-kubet191-game-guide__light-bg .page-resources-kubet191-game-guide__section-title,
.page-resources-kubet191-game-guide__light-bg .page-resources-kubet191-game-guide__subsection-title {
    color: #26A9E0;
}

.page-resources-kubet191-game-guide__dark-bg {
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
}

.page-resources-kubet191-game-guide__dark-bg .page-resources-kubet191-game-guide__section-title,
.page-resources-kubet191-game-guide__dark-bg .page-resources-kubet191-game-guide__subsection-title {
    color: #ffffff;
}

.page-resources-kubet191-game-guide__dark-bg .page-resources-kubet191-game-guide__highlight {
    color: #f0f0f0; /* Slightly lighter for contrast on dark bg */
}