/* style/latest-slot-games.css */

/* Base Styles for the page content */
.page-latest-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #ffffff; /* Explicitly set for content area if needed, but body is already white */
}

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

/* Section Styling */
.page-latest-slot-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-latest-slot-games__dark-bg {
    background-color: #017439; /* Brand primary dark green */
    color: #ffffff; /* White text for dark background */
}

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

.page-latest-slot-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: inherit; /* Inherit color from section (dark or light) */
}

.page-latest-slot-games__section-intro {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: inherit;
}

.page-latest-slot-games__section-footer {
    font-size: 1em;
    max-width: 800px;
    margin: 40px auto 0 auto;
    color: inherit;
}

/* Hero Section */
.page-latest-slot-games__hero-section {
    position: relative;
    padding: 100px 0; /* Adjust as needed, considering header offset */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* For image positioning */
    min-height: 600px; /* Minimum height for hero */
}

.page-latest-slot-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken image for text readability */
}

.page-latest-slot-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
    border-radius: 10px;
}

.page-latest-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-latest-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

/* Buttons */
.page-latest-slot-games__btn-primary,
.page-latest-slot-games__btn-secondary,
.page-latest-slot-games__btn-register,
.page-latest-slot-games__btn-login {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box; /* Include padding in width */
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-latest-slot-games__btn-primary {
    background-color: #017439; /* Brand primary dark green */
    color: #ffffff;
    border: 2px solid #017439;
}

.page-latest-slot-games__btn-primary:hover {
    background-color: #005a2e;
    transform: translateY(-2px);
}

.page-latest-slot-games__btn-secondary {
    background-color: #ffffff;
    color: #017439; /* Brand primary dark green */
    border: 2px solid #017439;
}

.page-latest-slot-games__btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}