/* style/slot-games.css */

/* Base styles for the page-slot-games scope */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

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

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

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

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

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

/* General Section Styles */
.page-slot-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Backgrounds and Text Colors based on contrast requirements */
.page-slot-games__dark-bg {
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
}

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

/* Specific sections */
.page-slot-games__introduction-section .page-slot-games__section-title,
.page-slot-games__features-section .page-slot-games__section-title,
.page-slot-games__strategy-section .page-slot-games__section-title,
.page-slot-games__faq-section .page-slot-games__section-title {
    color: #017439; /* Brand color for titles on light background */
}

.page-slot-games__introduction-section .page-slot-games__text-block,
.page-slot-games__features-section .page-slot-games__text-block,
.page-slot-games__strategy-section .page-slot-games__text-block,
.page-slot-games__faq-section .page-slot-games__text-block,
.page-slot-games__introduction-section a,
.page-slot-games__features-section a,
.page-slot-games__strategy-section a,
.page-slot-games__faq-section a {
    color: #333333;
}
.page-slot-games__introduction-section a:hover,
.page-slot-games__features-section a:hover,
.page-slot-games__strategy-section a:hover,
.page-slot-games__faq-section a:hover {
    color: #017439;
    text-decoration: underline;
}

/* Buttons */
.page-slot-games__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn-primary:hover {
    background-color: #a00606;
    color: #fff;
}