.page-slot-games {
    background-color: var(--background-color, #B71C1C);
    color: #FFF5E1; /* Text Main */
    font-family: Arial, sans-serif;
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #F4D34D; /* Gold */
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-slot-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-slot-games__main-title {
    font-size: 3.2em;
    font-weight: 900;
    color: #F4D34D; /* Gold */
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-slot-games__hero-description {
    font-size: 1.3em;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF5E1;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    text-align: center;
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button Gradient */
    color: #7A0E0E; /* Deep Red for contrast */
    border: 2px solid #F2B544; /* Border Gold */
    box-shadow: 0 4px 15px rgba(255, 204, 102, 0.4);
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 102, 0.6);
}

.page-slot-games__btn-secondary {
    background-color: #C91F17; /* Main Color */
    color: #FFF5E1; /* Text Main */
    border: 2px solid #F2B544; /* Border Gold */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary:hover {
    background-color: #E53935; /* Accent Color */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Introduction Section */
.page-slot-games__introduction-section {
    padding: 60px 0;
    background-color: #B71C1C;
}

/* Types Section */
.page-slot-games__types-section {
    padding: 60px 0;
    background-color: #7A0E0E; /* Deep Red */
}

.page-slot-games__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__card {
    background-color: #D32F2F; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F2B544; /* Border Gold */
    color: #FFF5E1;
}

.page-slot-games__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-slot-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #F2B544;
}

.page-slot-games__card-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #F4D34D; /* Gold */
    margin-bottom: 10px;
}

.page-slot-games__card-description {
    font-size: 1em;
    line-height: 1.5;
    color: #FFF5E1;
}

/* How to Play Section */
.page-slot-games__how-to-play-section {
    padding: 60px 0;
    background-color: #B71C1C;
}

.page-slot-games__instruction-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 800px;
}

.page-slot-games__instruction-list li {
    background-color: #D32F2F; /* Card BG */
    border: 1px solid #F2B544; /* Border Gold */
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #FFF5E1;
}

.page-slot-games__list-step-number {
    background-color: #F4D34D; /* Gold */
    color: #7A0E0E; /* Deep Red */
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-slot-games__list-step-title {
    font-size: 1.2em;
    color: #F4D34D; /* Gold */
    margin-bottom: 5px;
    display: block;
}

/* Featured Games Section */
.page-slot-games__featured-games-section {
    padding: 60px 0;
    background-color: #7A0E0E; /* Deep Red */
}

.page-slot-games__game-card {
    background-color: #D32F2F; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F2B544; /* Border Gold */
    color: #FFF5E1;
}

.page-slot-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-slot-games__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #F2B544;
}

.page-slot-games__game-card-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-slot-games__game-card-title a {
    color: #F4D34D; /* Gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games__game-card-title a:hover {
    color: #FFCC66; /* Glow */
    text-decoration: underline;
}

.page-slot-games__game-card-description {
    font-size: 1em;
    line-height: 1.5;
    color: #FFF5E1;
}

/* Promotions Section */
.page-slot-games__promotions-section {
    padding: 60px 0;
    background-color: #B71C1C;
}

.page-slot-games__promotion-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 30px auto;
    max-width: 800px;
}

.page-slot-games__promotion-list li {
    background-color: #D32F2F; /* Card BG */
    border: 1px solid #F2B544; /* Border Gold */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #FFF5E1;
}

.page-slot-games__promotion-item-title {
    font-size: 1.2em;
    color: #F4D34D; /* Gold */
    display: block;
    margin-bottom: 5px;
}

/* Safety Section */
.page-slot-games__safety-section {
    padding: 60px 0;
    background-color: #7A0E0E; /* Deep Red */
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding: 60px 0;
    background-color: #B71C1C;
}

.page-slot-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-slot-games__faq-item {
    background-color: #D32F2F; /* Card BG */
    border: 1px solid #F2B544; /* Border Gold */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: #FFF5E1;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F4D34D; /* Gold */
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

.page-slot-games__faq-question::-webkit-details-marker,
.page-slot-games__faq-question::marker {
    display: none;
}

.page-slot-games__faq-qtext {
    flex-grow: 1;
    pointer-events: none; /* Allow click on summary to toggle, not just text */
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    pointer-events: none;
}

.page-slot-games__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #FFF5E1;
}

/* Final CTA Section */
.page-slot-games__cta-final-section {
    padding: 60px 0;
    background-color: #7A0E0E; /* Deep Red */
    text-align: center;
}

/* General image styling for responsiveness */
.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__hero-section {
        padding-bottom: 30px;
    }

    .page-slot-games__main-title {
        font-size: 2.8em;
    }

    .page-slot-games__hero-description {
        font-size: 1.2em;
    }

    .page-slot-games__section-title {
        font-size: 2em;
    }

    .page-slot-games__grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-slot-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }

    .page-slot-games__main-title {
        font-size: 2.2em !important;
        margin-bottom: 15px;
    }

    .page-slot-games__hero-description {
        font-size: 1em !important;
        margin-bottom: 25px;
    }

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    /* 按钮与按钮容器 */
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games a[class*="button"],
    .page-slot-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games__cta-buttons,
    .page-slot-games__button-group,
    .page-slot-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column; /* Ensure vertical stacking for buttons */
    }

    /* 其他内容模块 - 通用 */
    .page-slot-games__container {
        padding: 0 15px;
    }

    .page-slot-games__section-title {
        font-size: 1.8em !important;
        margin-bottom: 20px;
    }

    .page-slot-games__text-block {
        font-size: 0.95em !important;
        text-align: left;
    }

    /* 产品展示图区域 / Grid Containers */
    .page-slot-games__grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .page-slot-games__card,
    .page-slot-games__game-card {
        padding: 20px;
    }

    .page-slot-games__card-image,
    .page-slot-games__game-card-image {
        height: 180px;
    }

    .page-slot-games__card-title,
    .page-slot-games__game-card-title {
        font-size: 1.4em;
    }

    .page-slot-games__instruction-list,
    .page-slot-games__promotion-list,
    .page-slot-games__faq-list {
        margin-top: 20px;
    }

    .page-slot-games__instruction-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .page-slot-games__list-step-number {
        margin-bottom: 10px;
    }

    .page-slot-games__list-step-title {
        font-size: 1.1em;
    }

    .page-slot-games__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-slot-games__faq-answer {
        padding: 0 15px 15px 15px;
    }

    /* 通用图片与容器 */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container,
    .page-slot-games__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__hero-image-wrapper { padding-left: 0; padding-right: 0; }
}