/* style/slot-games.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Inherit from body or shared, ensure contrast */
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__subsection-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-slot-games__text-block a {
    color: #26A9E0; /* Links in text */
    text-decoration: underline;
}

.page-slot-games__text-block a:hover {
    color: #EA7C07; /* Login button color for hover */
}

/* Button styles */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent; /* Default transparent border */
    box-sizing: border-box;
}

.page-slot-games__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-slot-games__btn-primary:hover {
    background-color: #1a7fb3; /* Darker shade for hover */
}

.page-slot-games__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border-color: #26A9E0;
}

.page-slot-games__btn-secondary:hover {
    background-color: #e0e0e0;
    color: #1a7fb3;
    border-color: #1a7fb3;
}

.page-slot-games__cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-slot-games__cta-buttons--centered {
    justify-content: center;
}

/* Image styles - ensuring no small icons and responsiveness */
.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px auto; /* Center images and provide spacing */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Ensure minimum size for content images */
    min-width: 200px;
    min-height: 200px;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #1a1a1a; /* Dark background for hero */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    overflow: hidden;
}

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

.page-slot-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text contrast, NOT changing color */
    border-radius: 0; /* Hero image usually full width, no border-radius */
    min-width: unset;
    min-height: unset;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;}