/* style/slot-games.css */

/* Base styles for the page content, ensuring text color contrast with body background */
.page-slot-games {
    color: #ffffff; /* Light text for dark body background #0a0a0a */
    background-color: transparent; /* Main content background is transparent to show body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-slot-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-slot-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-slot-games__hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-slot-games__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Section Styling */
.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-slot-games__section-title {
    font-size: 2.5rem;
    color: #017439; /* Brand color for titles on light background */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-slot-games__introduction-section,
.page-slot-games__game-showcase-section,
.page-slot-games__tips-section,
.page-slot-games__responsible-gaming-section {
    background-color: #ffffff; /* Light background for these sections */
    color: #333333; /* Dark text for light background */
}

.page-slot-games__introduction-section .page-slot-games__section-title,
.page-slot-games__game-showcase-section .page-slot-games__section-title,
.page-slot-games__tips-section .page-slot-games__section-title,
.page-slot-games__responsible-gaming-section .page-slot-games__section-title {
    color: #017439;
}

.page-slot-games__introduction-section .page-slot-games__text-block,
.page-slot-games__game-showcase-section .page-slot-games__text-block,
.page-slot-games__tips-section .page-slot-games__text-block,
.page-slot-games__responsible-gaming-section .page-slot-games__text-block {
    color: #333333;
}


.page-slot-games__why-choose-section,
.page-slot-games__how-to-play-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section,
.page-slot-games__cta-section {
    background-color: #0a0a0a; /* Dark background sections */
    color: #ffffff; /* Light text for dark background */
}

.page-slot-games__why-choose-section .page-slot-games__section-title,
.page-slot-games__how-to-play-section .page-slot-games__section-title,
.page-slot-games__promotions-section .page-slot-games__section-title,
.page-slot-games__faq-section .page-slot-games__section-title,
.page-slot-games__cta-section .page-slot-games__cta-title {
    color: #ffffff;
}

.page-slot-games__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

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

.page-slot-games__btn-primary:hover {
    background-color: #005a2e;
    border-color: #005a2e;
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.page-slot-games__hero-buttons .page-slot-games__btn-secondary {
    background-color: #C30808; /* Specific color for Login button as per instruction */
    color: #FFFF00; /* Specific font color for Login button as per instruction */
    border: 2px solid #C30808;
}

.page-slot-games__hero-buttons .page-slot-games__btn-secondary:hover {
    background-color: #9d0606;
    border-color: #9d0606;
    color: #ffffff;
}

.page-slot-games__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

.page-slot-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Features Grid */
.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slot-games__feature-card {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.page-slot-games__feature-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-slot-games__feature-description {
    font-size: 1rem;
    color: #f0f0f0;
    flex-grow: 1;
}

.page-slot-games__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

/* Game Categories */
.page-slot-games__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slot-games__category-card {
    background-color: #f8f8f8; /* Light background for categories */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.page-slot-games__category-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #017439; /* Brand color for category titles */
}

.page-slot-games__category-description {
    font-size: 1rem;
    color: #555555;
}

/* How to Play Steps */
.page-slot-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-slot-games__steps-list li {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for list items on dark background */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.page-slot-games__step-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-slot-games__steps-list p {
    font-size: 1.1rem;
    color: #f0f0f0;
}
.page-slot-games__steps-list p a {
    color: #FFFF00; /* Link color for register/login in steps */
    text-decoration: underline;
}
.page-slot-games__steps-list p a:hover {
    color: #FFD700;
}