.page-slot-games-new-releases {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Ensure consistency with shared body background */
}

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

.page-slot-games-new-releases__hero-section {
    position: relative;
    padding: 80px 20px 40px; /* Adjust padding-top later with var */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #000000; /* Dark background */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-slot-games-new-releases__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-slot-games-new-releases__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Brand primary color */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-slot-games-new-releases__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-new-releases__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-slot-games-new-releases__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability */
    /* No filter to change color, only brightness for contrast */
}

.page-slot-games-new-releases__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.page-slot-games-new-releases__btn-primary,
.page-slot-games-new-releases__btn-secondary,
.page-slot-games-new-releases__btn-play {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding doesn't increase total width */
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-new-releases__btn-primary {
    background-color: #FFD700; /* Primary brand color */
    color: #000000; /* Dark text for contrast */
    border: 2px solid #FFD700;
}

.page-slot-games-new-releases__btn-primary:hover {
    background-color: #e0b300;
    border-color: #e0b300;
    color: #000000;
}

.page-slot-games-new-releases__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Primary brand color */
    border: 2px solid #FFD700;
}

.page-slot-games-new-releases__btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

.page-slot-games-new-releases__btn-play {
    background-color: #8B0000; /* Secondary brand color */
    color: #ffffff;
    border: 2px solid #8B0000;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-slot-games-new-releases__btn-play:hover {
    background-color: #6a0000;
    border-color: #6a0000;
}

.page-slot-games-new-releases__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Primary brand color */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    line-height: 1.3;
}

.page-slot-games-new-releases__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #f0f0f0; /* Light text for dark background */
}

/* Introduction Section */
.page-slot-games-new-releases__introduction-section {
    background-color: #1a1a1a; /* Slightly lighter dark background */
    padding: 60px 0;
    color: #ffffff;
}