/* style/slot-games.css */

/* Base styles for the page content */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Default background, assuming shared.css sets body background */
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Minimum height for hero */
    text-align: center;
    padding: 60px 20px;
    padding-top: 0; /* Assuming shared.css handles body padding-top for header offset */
    background-color: #26A9E0; /* Brand color for hero background */
    color: #FFFFFF;
    overflow: hidden;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-slot-games__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-slot-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-slot-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make it a subtle background image */
    filter: none; /* Ensure no filter is applied */
}


/* General Section Styling */
.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0;
}

.page-slot-games__introduction-section,
.page-slot-games__game-types-section,
.page-slot-games__tips-section,
.page-slot-games__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* Light background */
    color: #333333;
}

.page-slot-games__benefits-section,
.page-slot-games__guide-section,
.page-slot-games__promotions-section,
.page-slot-games__cta-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Brand color background */
    color: #FFFFFF;
}

.page-slot-games__dark-bg .page-slot-games__section-title,
.page-slot-games__dark-bg .page-slot-games__text-block,
.page-slot-games__dark-bg .page-slot-games__card-title,
.page-slot-games__dark-bg .page-slot-games__card-text,
.page-slot-games__dark-bg .page-slot-games__list-title,
.page-slot-games__dark-bg .page-slot-games__list-item,
.page-slot-games__dark-bg .page-slot-games__faq-title,
.page-slot-games__dark-bg .page-slot-games__faq-question {
    color: #FFFFFF;
}

.page-slot-games__light-bg .page-slot-games__section-title {
    color: #26A9E0;
}

.page-slot-games__light-bg .page-slot-games__text-block,
.page-slot-games__light-bg .page-slot-games__card-title,
.page-slot-games__light-bg .page-slot-games__card-text,
.page-slot-games__light-bg .page-slot-games__list-title,
.page-slot-games__light-bg .page-slot-games__list-item,
.page-slot-games__light-bg .page-slot-games__faq-title,
.page-slot-games__light-bg .page-slot-games__faq-question {
    color: #333333;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-slot-games__text-block:last-child {
    margin-bottom: 0;
}

.page-slot-games__text-link {
    color: #EA7C07; /* Login color for links */
    text-decoration: underline;
}

.page-slot-games__text-link:hover {
    text-decoration: none;
}