/* style/slot-games.css */

/* --- General Page Styling --- */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #FFFFFF; /* Default body background is white */
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-slot-games__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 20px;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

/* Ensure links in content are readable */
.page-slot-games__text-block a,
.page-slot-games__list-item a,
.page-slot-games__faq-answer a {
    color: #017439;
    text-decoration: underline;
    font-weight: bold;
}

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

.page-slot-games__dark-bg .page-slot-games__section-title,
.page-slot-games__dark-bg .page-slot-games__sub-title {
    color: #ffffff;
}

.page-slot-games__dark-bg .page-slot-games__text-block,
.page-slot-games__dark-bg .page-slot-games__list-item {
    color: #f0f0f0;
}

.page-slot-games__dark-bg a {
    color: #FFFF00; /* Yellow for links on dark background */
}

/* --- Light Background Sections --- */
.page-slot-games__light-bg {
    background-color: #FFFFFF; /* Auxiliary color */
    color: #333333; /* Dark text for light background */
}

/* --- 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;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-slot-games__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border-color: #C30808;
}

.page-slot-games__btn-primary:hover {
    background-color: #e02020;
    color: #ffffff;
    border-color: #e02020;
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Register/Login font color for secondary */
    border-color: #FFFF00;
    margin-left: 20px;
}

.page-slot-games__btn-secondary:hover {
    background-color: #FFFF00;
    color: #017439; /* Primary brand color on hover */
    border-color: #FFFF00;
}

.page-slot-games__btn-text {
    color: #FFFF00;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    border: 1px solid #FFFF00;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-slot-games__btn-text:hover {
    background-color: #FFFF00;
    color: #017439;
}

/* --- Hero Section --- */
.page-slot-games__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    overflow: hidden;
    text-align: center;
    padding-bottom: 60px;
}

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

.page-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFF00; /* Yellow for main title on dark background */
}

.page-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-slot-games__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap;
}

.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;
    filter: brightness(0.6); /* Darken image for better text contrast */
}

/* --- Introduction Section --- */
.page-slot-games__introduction-section {
    padding: 60px 0;
}

.page-slot-games__image-content-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Align text and image at the top */
    margin-top: 40px;
}

.page-slot-games__image-content-flex .page-slot-games__image-wrapper {
    flex: 1;
    min-width: 400px; /* Minimum width for image */
}

.page-slot-games__image-content-flex .page-slot-games__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-slot-games__text-content {
    flex: 2;
}

.page-slot-games__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-slot-games__list-item {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.page-slot-games__list-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #017439;
    font-size: 1.2em;
    top: 0;
}

/* --- Game Types Section --- */
.page-slot-games__game-types-section {
    padding: 60px 0;
}

.page-slot-games__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards are same height */
    color: #333333;
}

.page-slot-games__dark-bg .page-slot-games__card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-slot-games__dark-bg .page-slot-games__card .page-slot-games__card-title {
    color: #FFFF00;
}

.page-slot-games__card-image {
    width: 100%;
    height: 250px; /* Fixed height for card images */
    object-fit: cover;
}

.page-slot-games__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-slot-games__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #017439;
}

.page-slot-games__card-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

/* --- Features Section --- */
.page-slot-games__features-section {
    padding: 60px 0;
}

.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-slot-games__feature-icon {
    width: 150px; /* Larger icons as per requirement */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px; /* Slightly rounded corners */
}

.page-slot-games__feature-title {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 15px;
}

.page-slot-games__feature-description {
    font-size: 1em;
    color: #555555;
}

/* --- How to Play Section --- */
.page-slot-games__how-to-play-section {
    padding: 60px 0;
}

.page-slot-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slot-games__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-slot-games__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFFF00; /* Yellow number */
    margin-right: 20px;
    flex-shrink: 0;
    line-height: 1;
}