/* style/slot-games.css */

/* Base styles for the slot games page */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared, fallback to white */
}

/* Container for consistent content width */
.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Paragraphs */
.page-slot-games__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Primary Button Style */
.page-slot-games__btn-primary {
    display: inline-block;
    background-color: #017439; /* Brand primary color */
    color: #ffffff; /* White text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
    background-color: #005f2e; /* Darker shade on hover */
    transform: translateY(-2px);
}

/* Secondary Button Style */
.page-slot-games__btn-secondary {
    display: inline-block;
    background-color: #ffffff; /* White background */
    color: #017439; /* Brand primary color text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid #017439; /* Border with brand color */
}

.page-slot-games__btn-secondary:hover {
    background-color: #f0f0f0; /* Light gray on hover */
    color: #005f2e; /* Darker brand color text */
    border-color: #005f2e;
    transform: translateY(-2px);
}

/* Specific button colors for Register/Login */
.page-slot-games__hero-buttons .page-slot-games__btn-primary,
.page-slot-games__how-to-play-section .page-slot-games__btn-secondary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border-color: #C30808;
}

.page-slot-games__hero-buttons .page-slot-games__btn-primary:hover,
.page-slot-games__how-to-play-section .page-slot-games__btn-secondary:hover {
    background-color: #a30606; /* Darker red on hover */
    color: #ffcc00; /* Slightly darker yellow */
    border-color: #a30606;
}

.page-slot-games__hero-buttons .page-slot-games__btn-secondary {
    background-color: #017439; /* Revert to brand primary for secondary in hero */
    color: #ffffff;
    border-color: #017439;
}

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


/* Hero Section */
.page-slot-games__hero-section {
    background: linear-gradient(to right, #017439, #005f2e); /* Gradient with brand colors */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    position: relative;
    overflow: hidden;
}

.page-slot-games__hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-slot-games__hero-content {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

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

.page-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #f0f0f0;
    text-align: left;
}

.page-slot-games__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 30px;
}

.page-slot-games__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slot-games__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-slot-games__intro-section,
.page-slot-games__featured-games-section,
.page-slot-games__promotions-section,
.page-slot-games__video-section,
.page-slot-games__cta-section {
    padding: 80px 0;
}

.page-slot-games__why-choose-section,
.page-slot-games__how-to-play-section,
.page-slot-games__tips-section,
.page-slot-games__faq-section {
    padding: 80px 0;
    color: #ffffff; /* White text for dark background */
}

/* Background colors for sections */
.page-slot-games__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-slot-games__dark-bg {
    background-color: #017439;
    color: #ffffff;
}