:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #000080; /* Using secondary color as dark background */
    --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: #ffffff; /* Default body background is white */
}

/* Sections */
.page-slot-games__section {
    padding: 60px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-slot-games__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-slot-games__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-slot-games__dark-bg {
    background-color: var(--bg-dark); /* Dark Blue */
    color: var(--text-light);
}

.page-slot-games__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color); /* Gold for titles */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-slot-games__dark-bg .page-slot-games__section-title {
    color: var(--primary-color); /* Gold for titles on dark background */
}

.page-slot-games__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-slot-games__dark-bg .page-slot-games__section-description {
    color: var(--text-light);
}

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

/* Hero Section */
.page-slot-games__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: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a4a 100%); /* Dark blue gradient */
    color: var(--text-light);
    overflow: hidden; /* Prevent content overflow */
}

.page-slot-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-slot-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1; /* Image behind text */
}

.page-slot-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}