/* style/slot-games.css */

/* Base styles and color contrast */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: var(--secondary-color, #FFFFFF); /* Ensure light background from shared */
}

.page-slot-games__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-slot-games__dark-section {
    background-color: #017439; /* Brand primary color */
    color: #FFFFFF; /* White text for dark background */
}

.page-slot-games__dark-section .page-slot-games__text-link {
    color: #FFFF00; /* Yellow for links on dark background */
}

.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    color: inherit; /* Inherit color from parent section */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-slot-games__text-link {
    color: #017439; /* Brand primary color for links on light background */
    text-decoration: underline;
    font-weight: bold;
}
.page-slot-games__text-link:hover {
    color: #005f2e; /* Darker shade on hover */
}