/* style/slot-games.css */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color, #08160F); /* Default to #08160F if --bg-color is not set */
    color: var(--text-main-color, #F2FFF6); /* Default to #F2FFF6 */
}

/* Base styles for sections and containers */
.page-slot-games__section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-color, #08160F);
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
    background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-slot-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    color: var(--text-main-color, #F2FFF6);
    z-index: 1; /* Ensure text is above any potential background elements */
}