/* 基本重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* === 弹跳视窗样式 === */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s;
}
.popup-modal {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(48,102,255,0.12);
    padding: 36px 32px 28px 32px;
    min-width: 320px;
    max-width: 90vw;
    position: relative;
    text-align: center;
}
.popup-content h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #3066ff;
}
.popup-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #333;
}
.popup-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}
.popup-close:hover {
    color: #3066ff;
}
.popup-overlay[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
}

a{
    text-decoration: none;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 导航栏样式 */
.navbar {
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    height: 88px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

/* Logo样式 */
.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* 主菜单样式 */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
    color: #30303d;
    font-weight: 600;
    margin: 0 15px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #30303d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: #3066ff;
}

.nav-link:active,
.nav-link.active,
.nav-item.active .nav-link {
    color: #3066ff !important;
    font-weight: 600;
}

/* 右侧区域 */

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 38px;
    border-radius: 22px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #3066ff;
    background: #fff;
    color: #3066ff;
    margin-left: 8px;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}
.nav-btn.nav-login {
    background: linear-gradient(90deg, #3066ff 0%, #22a3ff 100%);
    color: #fff;
    border: none;
    box-shadow: 0 0 8px rgba(48,102,255,0.08);
}
.nav-btn.nav-login:hover {
    filter: brightness(1.08);
    box-shadow: 0 2px 12px rgba(48,102,255,0.12);
}
.nav-btn.nav-register {
    background: #fff;
    color: #3066ff;
    border: 2px solid #3066ff;
}
.nav-btn.nav-register:hover {
    background: #ecf5ff;
    color: #3066ff;
}

/* 用户操作按钮区域 */
.nav-auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login,
.btn-register {
    font-size: 16px;
    font-weight: 500;
    height: 42px;
    line-height: 42px;
    width: 120px;
    border-radius: 50px;
    border-width: 2px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3066ff;
    color: #3066ff;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.btn-login {
    background: radial-gradient(70% 21.87% at 50% 101.56%, rgba(255, 255, 255, 0.56) 0, rgba(255, 255, 255, 0) 72.93%), radial-gradient(72.9% 34.37% at 50% 0, rgba(255, 255, 255, 0.32) 0, rgba(255, 255, 255, 0) 79.06%), linear-gradient(0deg, rgba(0, 0, 0, 0.24) -21.87%, transparent 50%), radial-gradient(106.07% 84.72% at 50% 15.28%, #5dcaf9 0, #3066ff 90.4%);
    background-blend-mode: overlay, overlay, overlay, normal;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    color: #fff;
    border: none !important;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 16px rgba(255, 255, 255, 0.9);
}

.btn-register {
    background: transparent;
    color: #3066ff;
}

.btn-register:hover {
    background: #ecf5ff !important;
    color: #3066ff;
}

/* 主要内容区域 */
.main-content {
    margin-top: 88px;
    padding: 0;
    max-width: 100%;
}

.content-placeholder {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5f5;
}

/* 跑马灯样式 */
.marquee-section {
    width: 100%;
    background: #f5f5f5;
    padding: 15px 0;
    margin-top: 88px; /* 避免被固定导航栏遮蔽 */
}

.marquee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marquee-wrapper {
    align-items: center;
    display: flex;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.marquee-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 10px;
}

.marquee-icon svg {
    width: 100%;
    height: 100%;
}

.marquee-content {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee-text {
    white-space: nowrap;
    color: #30303d;
    font-size: 14px;
    font-weight: 500;
    animation: marqueeScroll 20s linear infinite;
    padding-left: 100%;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* 轮播图样式 */
.carousel-section {
    width: 100%;
    background: #f5f5f5;
    padding-top: 15px;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 450px;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 圆点指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 15;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 8px;
    border: none;
    background-color: rgba(177, 172, 172, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(2px);
}

.indicator.active {
    background-color: rgba(156, 165, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(156, 165, 255, 0.6);
}

.indicator:hover {
    background-color: rgba(156, 165, 255, 0.8);
    transform: scale(1.1);
}

/* 游戏大厅标题样式 */
.game-hall-section {
    width: 100%;
    background: #f5f5f5;
    padding: 40px 0;
}

.game-hall-title {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.game-hall-title h2 {
    background: linear-gradient(91deg, #3066ff -20.14%, #22a3ff 152.41%);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 32px;
    font-weight: 900;
    margin-top: 24px;
    margin-bottom: 12px;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.game-hall-title p {
    color: #6d7693;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* 游戏分类标签页样式 */
.game-tabs-section {
    width: 100%;
    background: #f5f5f5;
    padding: 20px 0;
}

.game-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.game-tabs-nav {
    position: relative;
    display: inline-block;
    width: 100%;
}

.game-tabs-list {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    white-space: nowrap;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.game-tab {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-tab-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.game-tab-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.game-tab-active .game-tab-img {
    filter: brightness(1.2) hue-rotate(200deg) saturate(1.5);
}

.game-tab-text {
    text-align: left;
}

.game-tab-text p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #30303d;
    margin: 0 0 4px 0;
    transition: all 0.3s ease;
}

.game-tab-text p:last-child {
    font-size: 12px;
    color: #6d7693;
    margin: 0;
    transition: all 0.3s ease;
}

.game-tab-active {
    background: linear-gradient(135deg, #3066ff 0%, #22a3ff 100%);
}

.game-tab-active .game-tab-text p:first-child {
    color: #fff;
}

.game-tab-active .game-tab-text p:last-child {
    color: rgba(255, 255, 255, 0.8);
}

.game-tab:hover:not(.game-tab-active) {
    background: rgba(48, 102, 255, 0.05);
    transform: translateY(-2px);
}

.game-tabs-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3066ff 0%, #22a3ff 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: none;
}

/* 左右箭头控制 */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #30303d;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 1);
    color: #3066ff;
    transform: translateY(-50%) scale(1.1);
}

/* 响应式设计 */
/* 漢堡菜單按鈕 */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 21;
}

.nav-toggle-icon {
    width: 100%;
    height: 3px;
    background-color: #30303d;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-active .nav-toggle-icon:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle-active .nav-toggle-icon:nth-child(2) {
    opacity: 0;
}

.nav-toggle-active .nav-toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 移動端按鈕隱藏/顯示 */
.mobile-auth {
    display: none !important;
}

.desktop-auth {
    display: flex;
}

/* 平板和手机版样式 */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-container {
        justify-content: space-between;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 88px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 19;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        padding: 10px 0;
        display: none;
    }
    
    .nav-menu-active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        margin: 2px 0;
        padding: 0 20px;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 8px;
        font-size: 16px;
    }
    
    .nav-auth {
        gap: 8px;
        z-index: 21;
        position: relative;
    }
    
    .btn-login,
    .btn-register {
        width: 70px;
        height: 32px;
        line-height: 32px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    /* 轮播图响应式 - 平板全宽 */
    .carousel-section {
        padding-top: 10px;
        background: #f5f5f5;
    }
    
    .carousel-container {
        padding: 0 15px;
        max-width: 1200px;
    }
    
    .carousel-wrapper {
        border-radius: 12px;
    }
    
    .carousel-slide {
        height: 250px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
    }
    
    /* 游戏大厅标题响应式 */
    .game-hall-section {
        padding: 30px 0;
    }
    
    .game-hall-title {
        padding: 0 15px;
    }
    
    .game-hall-title h2 {
        font-size: 28px;
        margin-top: 20px;
    }
    
    .game-hall-title p {
        font-size: 15px;
    }
    
    /* 游戏标签页响应式 */
    .game-tabs-container {
        padding: 0 25px;
    }
    
    .game-tabs-list {
        padding: 12px 8px;
        gap: 8px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 8px;
    }
    
    .game-tab {
        flex: none;
        width: 100%;
        padding: 8px 4px;
        min-height: 55px;
        margin: 0;
    }
    
    .game-tab-content {
        gap: 3px;
    }
    
    .game-tab-img {
        width: 24px;
        height: 24px;
    }
    
    .game-tab-text p:first-child {
        font-size: 10px;
        font-weight: 600;
    }
    
    .game-tab-text p:last-child {
        font-size: 8px;
        font-weight: 400;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 70px;
    }
    
    .nav-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
    
    .main-content {
        margin-top: 70px;
        padding: 0;
    }
    
    .marquee-section {
        padding: 10px 0;
    }
    
    .marquee-container {
        padding: 0 15px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .marquee-wrapper {
        height: 35px;
        padding: 0 12px;
    }
    
    .marquee-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    
    .marquee-text {
        font-size: 13px;
        animation: marqueeScroll 18s linear infinite;
    }
    
    .carousel-section {
        padding-top: 10px;
        background: #f5f5f5;
    }
    
    .carousel-container {
        padding: 0 15px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .carousel-wrapper {
        border-radius: 8px;
    }
    
    .carousel-slide {
        height: 160px;
    }
    
    .carousel-slide img {
        object-fit: contain;
        background: #f5f5f5;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 25px;
    }
    
    .carousel-next {
        right: 25px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        border-radius: 6px;
    }
    
    .btn-login,
    .btn-register {
        width: 60px;
        height: 28px;
        line-height: 28px;
        font-size: 11px;
    }
    
    /* 游戏大厅标题响应式 */
    .game-hall-section {
        padding: 25px 0;
    }
    
    .game-hall-title h2 {
        font-size: 24px;
        margin-top: 16px;
    }
    
    .game-hall-title p {
        font-size: 14px;
    }
    
    /* 游戏标签页响应式 */
    .game-tabs-section {
        padding: 12px 0;
    }
    
    .game-tabs-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 18px;
    }
    
    .game-tabs-list {
        padding: 8px 5px;
        gap: 3px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .game-tab {
        flex: 0 0 calc(30% - 2px);
        max-width: calc(30% - 2px);
        min-width: calc(30% - 2px);
        padding: 5px 1px;
        min-height: 45px;
        margin: 0;
    }
    
    .game-tab-content {
        gap: 3px;
    }
    
    .game-tab-img {
        width: 20px;
        height: 20px;
    }
    
    .game-tab-text p:first-child {
        font-size: 9px;
        font-weight: 600;
    }
    
    .game-tab-text p:last-child {
        font-size: 7px;
        font-weight: 400;
    }
}

/* 游戏内容切换区块样式 */
.game-content-section {
    padding: 30px 0;
}

.game-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.game-content-block {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
}

.game-content-block.active {
    display: block;
    opacity: 1;
}

.game-content-left {
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    padding: 40px;
    color: #000000;
    position: relative;
}

.game-content-left::before {
    display: none;
}

.game-content-info {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.game-content-info h3 {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #000000;
    text-shadow: none;
}

.game-content-info p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #333333;
    opacity: 1;
}

.game-brands-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-content-left::before {
    display: none;
}

.game-content-info {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.game-content-info h3 {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #000000;
    text-shadow: none;
}

.game-content-info p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #333333;
    opacity: 1;
}

.game-brands-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-content-right {
    flex: 0 0 50%;
    background-image: url('images/banner_background_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    min-height: 400px;
}

/* 響應式設計 - 平板 */
@media (max-width: 992px) {
    .game-content-section {
        padding: 20px 15px;
    }
    
    .game-content-block.active {
        flex-direction: column;
        gap: 20px;
    }
    
    .game-content-left {
        padding: 30px;
    }
    
    .game-content-info h3 {
        font-size: 28px;
    }
    
    .game-content-info p {
        font-size: 14px;
    }
}

/* 響應式設計 - 手機 */
@media (max-width: 576px) {
    .game-content-section {
        padding: 15px 10px;
    }
    
    .game-content-left {
        padding: 20px;
    }
    
    .game-content-info h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .game-content-info p {
        font-size: 13px;
    }
    
    .game-content-right {
        min-height: 200px;
    }
}

/* 品牌滑动列表样式 */
.home-game-list-left-warp-XW2Iu {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.home-game-list-left-warp-inner-Vrj45 {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.home-game-list-left-warp-game-PxC6c {
    flex: 0 0 calc(33.33% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    min-height: 120px;
}

.home-game-list-left-warp-game-PxC6c:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.home-game-list-left-warp-game-img-eb7vG {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 5px;
}

.home-game-list-left-warp-game-name-dAzHb {
    background: linear-gradient(93deg, #3066ff -9.46%, #319cff 143.8%);
    border-radius: 60px;
    bottom: 10px;
    box-shadow: 0 4px 9px #0036d040;
    color: #fff;
    font-family: 'PingFang SC', sans-serif;
    font-size: 13px;
    font-weight: 500;
    height: 28px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 28px;
    position: absolute;
    text-align: center;
    width: calc(100% - 20px);
    z-index: 1;
    box-sizing: border-box;
}

/* 左右按钮样式 */
.brand-nav-btn {
    background: linear-gradient(93deg, #3066ff -9.46%, #319cff 143.8%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.brand-nav-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

/* 響應式設計 - 品牌列表 */
@media (max-width: 992px) {
    .home-game-list-left-warp-inner-Vrj45 {
        gap: 12px;
    }
    
    .game-brands-container {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 5px;
    }
    
    .home-game-list-left-warp-game-PxC6c {
        flex: 0 0 calc(33.33% - 10px);
        padding: 8px;
        min-height: 95px;
    }
    
    .brand-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .home-game-list-left-warp-game-img-eb7vG {
        width: 50px;
        height: 50px;
    }
    
    .home-game-list-left-warp-game-name-dAzHb {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .home-game-list-left-warp-inner-Vrj45 {
        gap: 10px;
    }
    
    .game-brands-container {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0 3px;
    }
    
    .home-game-list-left-warp-game-PxC6c {
        flex: 0 0 calc(50% - 5px);
        padding: 6px;
        min-height: 80px;
    }
    
    .brand-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .home-game-list-left-warp-game-img-eb7vG {
        width: 40px;
        height: 40px;
    }
    
    .home-game-list-left-warp-game-name-dAzHb {
        font-size: 12px;
    }
}

/* SEO内容区块样式 */
.seo-section {
    background: #f5f5f5;
    padding: 60px 0;
    margin-top: 0;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-content {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(48, 102, 255, 0.08);
    border: 1px solid rgba(48, 102, 255, 0.05);
}

.seo-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #30303d;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.3;
    position: relative;
}

.seo-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #3066ff 0%, #22a3ff 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.seo-text {
    color: #30303d;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: left;
}

.seo-text p {
    margin-bottom: 18px;
    text-indent: 0;
}

.seo-text strong {
    color: #3066ff;
    font-weight: 600;
}

/* 響應式設計 - 平板 */
@media (max-width: 992px) {
    .seo-section {
        padding: 50px 0;
    }
    
    .seo-content {
        padding: 35px;
    }
    
    .seo-content h1 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .seo-text {
        font-size: 1rem;
    }
}

/* 響應式設計 - 手機 */
@media (max-width: 576px) {
    .seo-section {
        padding: 40px 0;
    }
    
    .seo-container {
        padding: 0 15px;
    }
    
    .seo-content {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .seo-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .seo-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .seo-text p {
        margin-bottom: 15px;
    }
}

/* 底部区块样式 */
.footer {
    background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
    color: #30303d;
    padding: 50px 0 0 0;
    margin-top: 80px;
    border-top: 1px solid rgba(48, 102, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .footer-main {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 20px;
    }
    .footer-section {
        margin-bottom: 10px;
    }
}

.footer-section h4 {
    color: #3066ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #3066ff;
    padding-bottom: 8px;
    display: inline-block;
}

/* 品牌区域 */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-brand-text p {
    color: rgba(48, 48, 61, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-security {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(48, 102, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(48, 102, 255, 0.3);
    font-size: 0.85rem;
}

.security-icon {
    font-size: 1rem;
}

/* 链接列表 */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(48, 48, 61, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #3066ff;
    padding-left: 5px;
}

/* 联系信息 */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(48, 48, 61, 0.7);
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.1rem;
    color: #3066ff;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(48, 102, 255, 0.2);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3066ff;
    transform: translateY(-2px);
}

/* 支付方式 */
.footer-payment {
    border-top: 1px solid rgba(48, 102, 255, 0.15);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-payment h4 {
    color: #3066ff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 35px;
    background: rgba(48, 102, 255, 0.08);
    border-radius: 8px;
    font-size: 1.3rem;
    border: 1px solid rgba(48, 102, 255, 0.15);
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(48, 102, 255, 0.3);
    border-color: #3066ff;
}

/* 底部版权 */
.footer-bottom {
    border-top: 1px solid rgba(48, 102, 255, 0.15);
    padding: 25px 0;
    text-align: center;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.footer-copyright p {
    color: rgba(48, 48, 61, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-legal a {
    color: rgba(48, 48, 61, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3066ff;
}

.footer-legal span {
    color: rgba(48, 48, 61, 0.4);
}

.footer-disclaimer {
    color: rgba(48, 48, 61, 0.5);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* 响应式设计 - 平板 */
@media (max-width: 992px) {
    .footer {
        margin-top: 60px;
        padding: 40px 0 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 576px) {
    .footer {
        margin-top: 40px;
        padding: 30px 0 0 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-security {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-methods {
        gap: 15px;
    }
    
    .payment-item {
        width: 45px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
