/* style/games-slots-details.css */

/* Base styling for the page content area */
.page-games-slots-details {
    font-family: 'Arial', sans-serif;
    color: #f8f9fa; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space above footer */
}

.page-games-slots-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-games-slots-details__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Primary color gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-slots-details__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-games-slots-details__title {
    font-size: 3.2em;
    color: #FFC107; /* Accent for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-slots-details__subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 30px;
}