/* style/slot-games.css */

/* Base styles for the slot games page content */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Body background from shared, ensuring consistency */
}

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

/* Section styling */
.page-slot-games__hero-section,
.page-slot-games__intro-section,
.page-slot-games__types-section,
.page-slot-games__benefits-section,
.page-slot-games__guide-section,
.page-slot-games__tips-section,
.page-slot-games__faq-section,
.page-slot-games__conclusion-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

/* Color schemes based on background */
.page-slot-games__dark-bg {
    background-color: #0a0a0a; /* Consistent with body */
    color: #ffffff;
}

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

/* Hero Section */
.page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
    position: relative;
    min-height: 600px;
}

.page-slot-games__hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    padding-left: 20px;
}

.page-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

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

.page-slot-games__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-slot-games__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 0;
    max-width: 50%;
}

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

/* General Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for responsive buttons */
}

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

.page-slot-games__btn-primary:hover {
    background-color: #02944a; /* Slightly darker/lighter hover */
    border-color: #02944a;
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Specific button colors for login/register in guide section */
.page-slot-games__btn-primary--small {
    background-color: #C30808; /* Specific 'Đăng Ký' color */
    border-color: #C30808;
    color: #FFFF00; /* Specific font color */
    padding: 10px 20px;
    font-size: 1em;
}

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

.page-slot-games__btn-secondary--small {
    background-color: #C30808; /* Specific 'Đăng Nhập' color */
    border-color: #C30808;
    color: #FFFF00; /* Specific font color */
    padding: 10px 20px;
    font-size: 1em;
}

.page-slot-games__btn-secondary--small:hover {
    background-color: #e00a0a;
    border-color: #e00a0a;
    color: #ffffff;
}


.page-slot-games__cta-buttons--center {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Section Titles & Descriptions */
.page-slot-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: inherit; /* Inherit from section for contrast */
}

.page-slot-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: inherit; /* Inherit from section for contrast */
}

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

.page-slot-games__intro-card {
    background-color: #f0f0f0; /* Light background for card in light section */
    color: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}