/* style/slot-games.css */

/* Variables for colors */
:root {
    --primary-color: #1A202C; /* Dark blue/black */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark-body: #0a0a0a; /* From prompt, shared.css body background */
    --background-light-section: #f8f8f8; /* A light background for sections */
    --background-dark-section: #1a202c; /* Primary color for dark sections */
    --border-color-light: #e0e0e0;
}

/* Base styles for the page content, ensuring light text on dark body background */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--background-dark-body); /* Inherit from body or explicitly set for safety */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

/* General container for content within sections */
.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section titles */
.page-slot-games__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color); /* Gold color for main titles */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Text blocks for general paragraphs */
.page-slot-games__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

/* Image content */
.page-slot-games__image-content {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}