/* style/slot-games.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

/* -------------------- Base Styles & Layout -------------------- */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is dark (#1a1a2e), so text should be light */
    background-color: transparent; /* Inherit from body or shared, avoid overriding */
}

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

.page-slot-games__dark-section {
    background-color: #26A9E0; /* Main brand color for dark sections */
    color: #ffffff;
    padding: 60px 0;
}

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

.page-slot-games__section-title--white {
    color: #ffffff; /* White title for dark backgrounds */
}

.page-slot-games__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0; /* Lighter subtitle for dark body background */
}

.page-slot-games__section-subtitle--white {
    color: #f0f0f0; /* Lighter subtitle for dark backgrounds */
}

/* -------------------- Buttons -------------------- */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

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

.page-slot-games__btn-primary:hover {
    background-color: #1e87c0; /* Slightly darker on hover */
    border-color: #1e87c0;
}

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

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

.page-slot-games__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-slot-games__text-link {
    color: #26A9E0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-slot-games__text-link:hover {
    color: #1e87c0;
}

/* -------------------- Cards -------------------- */
.page-slot-games__card {
    background-color: #ffffff; /* White background for cards */
    color: #333333; /* Dark text for cards */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
}

/* -------------------- Images & Videos -------------------- */
.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* 禁止使用CSS filter改变图片颜色 */
    filter: none;
}

.page-slot-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0 auto;
    border-radius: 8px;
}

.page-slot-games__video-wrapper iframe,
.page-slot-games__video-wrapper video,
.page-slot-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* Ensure content area images are not too small */
.page-slot-games__content-area img,
.page-slot-games__dark-section img {
    min-width: 200px;
    min-height: 200px;
}

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