/* style/slot-games.css */

/* Base styles for the page content */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Section styles */
.page-slot-games__hero-section,
.page-slot-games__about-section,
.page-slot-games__game-showcase,
.page-slot-games__promotions-section,
.page-slot-games__how-to-play-section,
.page-slot-games__video-section,
.page-slot-games__faq-section,
.page-slot-games__cta-bottom-section {
    padding: 80px 0;
    text-align: center;
}

/* Color schemes based on background type */
.page-slot-games__dark-bg {
    background-color: #0a0a0a; /* Dark background, matches body */
    color: #ffffff; /* Light text for contrast */
}

.page-slot-games__light-bg {
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text for contrast */
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.page-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand primary color for title */
    line-height: 1.2;
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Slightly off-white for body text on dark background */
}

.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.2; /* Make background image subtle */
}

/* Buttons */
.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;
    margin: 10px;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
}

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

.page-slot-games__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

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

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

.page-slot-games__cta-buttons--center {
    margin-top: 40px;
}

/* Section Titles and Descriptions */
.page-slot-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Primary color for section titles */
}

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

.page-slot-games__dark-bg .page-slot-games__section-title {
    color: #26A9E0; /* Consistent primary color */
}

.page-slot-games__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}