:root {
    --bg-color: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow: #57E38D;
    --gold: #F2C14E;
    --divider: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-color);
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-slot-games__section-description,
.page-slot-games__section-text {
    font-size: 1.1em;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
}

.page-slot-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: #F2FFF6;
    border: 2px solid var(--border-color);
}

.page-slot-games__btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-main);
    transform: translateY(-2px);
}

.page-slot-games__btn-play {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-slot-games__btn-play:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-slot-games__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.page-slot-games__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-slot-games__introduction-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.page-slot-games__games-section {
    padding: 60px 0;
    background-color: var(--card-bg);
}

.page-slot-games__games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-slot-games__game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-slot-games__game-title {
    font-size: 1.4em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__game-description {
    font-size: 0.95em;
    color: var(--text-secondary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-slot-games__features-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

.page-slot-games__features-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-slot-games__feature-item {
    flex: 1;
}

.page-slot-games__feature-image-wrapper {
    flex: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games__feature-image {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-slot-games__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-slot-games__feature-list-item {
    margin-bottom: 30px;
}

.page-slot-games__feature-title {
    font-size: 1.5em;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__feature-description {
    font-size: 1em;
    color: var(--text-secondary);
}

.page-slot-games__guide-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.page-slot-games__guide-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-slot-games__guide-step-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__guide-step-title {
    font-size: 1.3em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__guide-step-text {
    font-size: 0.95em;
    color: var(--text-secondary);
}

.page-slot-games__guide-cta {
    text-align: center;
    margin-top: 40px;
}

.page-slot-games__tips-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

.page-slot-games__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__tips-list-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__tips-title {
    font-size: 1.4em;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__tips-description {
    font-size: 1em;
    color: var(--text-secondary);
}

.page-slot-games__promotions-section {
    padding: 60px 0;
    background-color: var(--bg-color);
    position: relative;
}

.page-slot-games__promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-slot-games__promotion-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__promotion-title {
    font-size: 1.3em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__promotion-description {
    font-size: 0.95em;
    color: var(--text-secondary);
}

.page-slot-games__promotions-cta {
    text-align: center;
    margin-top: 40px;
}

.page-slot-games__promotions-banner {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 60px;
}

.page-slot-games__faq-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

.page-slot-games__faq-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.page-slot-games__faq-content {
    flex: 2;
}

.page-slot-games__faq-image-wrapper {
    flex: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games__faq-image {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-slot-games__faq-list {
    margin-top: 30px;
}

.page-slot-games__faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-main);
}

.page-slot-games__faq-item summary {
    list-style: none;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--text-main);
    position: relative;
    user-select: none;
}

.page-slot-games__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-slot-games__faq-qtext {
    flex-grow: 1;
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold);
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    content: "−";
}

.page-slot-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.8;
}

.page-slot-games__faq-answer p {
    margin: 0;
}

.page-slot-games__faq-link {
    color: var(--glow);
    text-decoration: underline;
}

.page-slot-games__faq-link:hover {
    color: var(--glow);
    opacity: 0.8;
}

.page-slot-games__cta-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.page-slot-games__cta-content {
    max-width: 900px;
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-slot-games__games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-slot-games__features-grid,
    .page-slot-games__faq-grid {
        flex-direction: column;
    }
    .page-slot-games__feature-image,
    .page-slot-games__faq-image {
        margin-top: 30px;
    }
    .page-slot-games__guide-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-slot-games__tips-list {
        grid-template-columns: 1fr;
    }
    .page-slot-games__promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-slot-games__hero-section {
        padding-top: 10px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-slot-games__hero-content {
        padding: 30px 15px !important;
    }
    .page-slot-games__hero-title {
        font-size: clamp(1.8em, 8vw, 2.5em) !important;
    }
    .page-slot-games__hero-description {
        font-size: 1em !important;
    }
    .page-slot-games__hero-cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* 产品展示图区域 */
    .page-slot-games__games-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-slot-games__game-card {
        padding: 15px !important;
    }
    .page-slot-games__game-image {
        height: 180px !important;
    }

    /* 通用图片与容器 */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-slot-games__container,
    .page-slot-games__introduction-section,
    .page-slot-games__games-section,
    .page-slot-games__features-section,
    .page-slot-games__guide-section,
    .page-slot-games__tips-section,
    .page-slot-games__promotions-section,
    .page-slot-games__faq-section,
    .page-slot-games__cta-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* 按钮与按钮容器 */
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games__btn-play {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }
    .page-slot-games__cta-buttons,
    .page-slot-games__guide-cta,
    .page-slot-games__promotions-cta {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        display: flex;
        flex-direction: column;
    }

    /* 其他内容模块 */
    .page-slot-games__section-title {
        font-size: 1.8em !important;
        margin-bottom: 15px !important;
    }
    .page-slot-games__section-description,
    .page-slot-games__section-text {
        font-size: 0.95em !important;
        margin-bottom: 25px !important;
    }
    .page-slot-games__features-grid,
    .page-slot-games__faq-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .page-slot-games__feature-image,
    .page-slot-games__faq-image {
        margin-top: 20px !important;
    }
    .page-slot-games__guide-steps {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-slot-games__tips-list {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-slot-games__promotions-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-slot-games__faq-item summary {
        padding: 15px 20px !important;
        font-size: 1em !important;
    }
    .page-slot-games__faq-answer {
        padding: 0 20px 15px !important;
        font-size: 0.95em !important;
    }
}