
        body {
            font-family: 'Oxanium', sans-serif;
        }
        
        h1, h2, h3, .logo {
            font-family: 'Orbitron', sans-serif;
        }
        
       /*  .neon-text {
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--accent-color), 0 0 20px var(--accent-color);
        }*/
        /* 优化后 */
		.neon-text {
			text-shadow: 0 0 10px var(--accent-color); /* 简化多层阴影 */
		}
        /* 修改头部为非固定定位 */
        .header {
            position: relative; /* 改为相对定位 */
            top: auto; /* 移除固定定位 */
            z-index: 100; /* 降低z-index */
        }
        
        /* 默认情况下隐藏移动端元素（桌面端） */
        .navbar-toggler,
        .mobile-auth {
            display: none;
        }
        
        /* 桌面端导航显示 */
        .desktop-nav {
            display: flex;
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            /* 在移动端显示汉堡按钮和移动端登录区域 */
            .navbar-toggler,
            .mobile-auth {
                display: flex;
            }
            
            /* 在移动端隐藏桌面端导航 */
            .desktop-nav {
                display: none;
            }
            
            /* 移动端特定样式 */
            .mobile-auth {
                justify-content: center;
                margin-top: 10px;
                width: 100%;
            }
            
            .mobile-auth .btn-login {
                margin: 0 5px;
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .mobile-auth .user-info {
                display: flex;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .mobile-auth .user-info .nav-link {
                padding: 5px 10px;
                font-size: 0.9rem;
            }
            
            /* 汉堡按钮 */
            .navbar-toggler {
    width: 44px;
    height: 40px;
    font-size: 1.5rem;
    /* 霓虹灯效果 */
    background: rgba(10, 10, 26, 0.8);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px var(--accent-color),
                inset 0 0 5px var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.navbar-toggler:hover {
    background: rgba(0, 238, 255, 0.1);
    box-shadow: 0 0 15px var(--accent-color),
                inset 0 0 10px var(--accent-color);
    transform: translateY(-2px);
    color: #fff;
}

.navbar-toggler:active {
    transform: translateY(0);
    box-shadow: 0 0 8px var(--accent-color),
                inset 0 0 5px var(--accent-color);
}
        }
        
        /* 图片放大模态框样式 */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }
        
        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 90%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 8px;
            box-shadow: 0 0 20px var(--accent-color);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            z-index: 1001;
        }
        
        .close-modal:hover {
            color: var(--accent-color);
            text-shadow: 0 0 10px var(--accent-color);
        }
        
        .modal-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }
        
        .nav-btn {
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }
        
        .nav-btn:hover {
            background: rgba(0, 238, 255, 0.8);
        }
        
        .modal-caption {
            text-align: center;
            color: #fff;
            padding: 10px 0;
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
        }
        
        .carousel-slide {
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .carousel-slide:hover {
            transform: scale(1.02);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .modal-content {
                max-width: 95%;
                max-height: 80%;
            }
            
            .close-modal {
                top: 10px;
                right: 20px;
                font-size: 30px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }
		/* 游戏福利按钮 - 更具体的选择器 */
.game-card .game-card-content .btn-benefit {
    width: 100%;
    display: block;
    margin-top: 15px;
    text-align: center;
    background: linear-gradient(45deg, #ff2a6d, #ff558d)
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.game-card .game-card-content .btn-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.game-card .game-card-content .btn-benefit:hover::before {
    left: 100%;
}

.game-card .game-card-content .btn-benefit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 42, 109, 0.4);
}

.game-card .game-card-content .btn-benefit.disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.game-card .game-card-content .btn-benefit.disabled:hover {
    transform: none;
    box-shadow: none;
    background: #666;
}

.game-card .game-card-content .btn-benefit.disabled::before {
    display: none;
}
.header {
    margin-bottom: 0.1rem !important;
    padding-bottom: 0.1rem !important;
}

.container > .header {
    margin-bottom: 0.1rem !important;
}

main.container {
    margin-top: 0.1rem !important;
    padding-top: 0.1rem !important;
}

.container > main {
    margin-top: 0.1rem !important;
}

.hero {
    margin-top: 0.1rem !important;
    padding-top: 0.1rem !important;
}

section.hero {
    margin-top: 0.1rem !important;
    padding-top: 0.1rem !important;
}
.games-section {
    margin-top: 0.1rem !important; /* 减少游戏列表顶部外边距 */
    padding-top: 0.1rem !important; /* 减少游戏列表顶部内边距 */
}
/* 如果外部链接按钮有额外间距 */
.external-links {
    margin-bottom: 0.2rem !important; /* 减少外部链接按钮底部外边距 */
}

/* 备用按钮样式 */
.btn-warning {
    background-color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: #fff !important;
    width: 100%;
    margin-top: 10px;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.btn-warning:hover {
    background-color: #e55a2b !important;
    border-color: #e55a2b !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-warning:active {
    transform: translateY(0);
}
/* 专门的备用按钮样式 */
.backup-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    border: none;
    color: #fff;
    width: 100%;
    padding: 12px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.backup-btn:hover {
    background: linear-gradient(45deg, #ff8e53, #ffaa77) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #fff;
    text-decoration: none;
}

.backup-btn:active {
    transform: translateY(0);
}

.backup-btn i {
    margin-right: 8px;
}
/* === 快捷入口小按钮 - 图标+文字整体居中版 === */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin: 1rem auto;
  max-width: 900px;
}

.quick-link {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  
  /* 👇 关键：整体居中 */
  display: flex;
  flex-direction: row;
  justify-content: center; /* 水平居中 */
  align-items: center;     /* 垂直居中 */
  
  gap: 0.7rem; /* ← 图标与文字之间的间距 */
  height: 58px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  text-align: center; /* 防止文字继承左对齐 */
}

/* 滑动高光效果（保留） */
.quick-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 238, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.quick-link:hover::before {
  left: 100%;
}

.quick-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), var(--accent-glow);
}

/* 图标 */
.quick-link i {
  font-size: 1.1rem;
  color: var(--accent-color);
  flex-shrink: 0; /* 防止被压缩 */
}

/* 文字区域 */
.quick-link .quick-link-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 文字也居中对齐 */
  line-height: 1.2;
  white-space: nowrap; /* 可选：防止标题意外换行 */
}

.quick-link .quick-link-text h3 {
  font-size: 0.85rem;
  margin: 0;
  font-weight: 600;
}

.quick-link .quick-link-text p {
  font-size: 0.65rem;
  margin-top: 0.15rem;
  opacity: 0.75;
}

/* 📱 移动端优化 */
@media (max-width: 480px) {
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .quick-link {
    height: 56px;
    padding: 0.35rem 0.5rem;
    gap: 0.6rem;
  }
  .quick-link i {
    font-size: 1rem;
  }
  .quick-link .quick-link-text h3 {
    font-size: 0.8rem;
  }
  .quick-link .quick-link-text p {
    font-size: 0.6rem;
  }
}
/* 游戏详细描述样式 */
.game-full-desc {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.game-full-desc h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.game-full-desc p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* 游戏详细描述样式 - 固定高度可滚动 */
.game-full-desc {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    /* 固定高度和滚动设置 */
    height: 150px; /* 桌面端默认高度 */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* 移动端平滑滚动 */
    scrollbar-width: thin; /* 火狐浏览器滚动条样式 */
    scrollbar-color: var(--accent-color) rgba(255, 255, 255, 0.1);
}

/* 自定义滚动条样式 */
.game-full-desc::-webkit-scrollbar {
    width: 6px;
}

.game-full-desc::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.game-full-desc::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.game-full-desc::-webkit-scrollbar-thumb:hover {
    background: #00ccdd;
}

.game-full-desc h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    position: sticky;
    top: 0;
    background: rgba(26, 26, 46, 0.9);
    padding: 0.2rem 0;
    backdrop-filter: blur(5px);
}

.game-full-desc p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-right: 0.5rem;
}

/* 游戏福利描述样式 - 固定高度可滚动 */
.game-benefit-desc {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    /* 固定高度和滚动设置 */
    height: 120px; /* 桌面端默认高度 */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ffd700 rgba(255, 255, 255, 0.1);
}

.game-benefit-desc::-webkit-scrollbar-thumb {
    background: #ffd700;
}

.game-benefit-desc::-webkit-scrollbar-thumb:hover {
    background: #ffcc00;
}

.game-benefit-desc h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 600;
    position: sticky;
    top: 0;
    background: rgba(26, 26, 46, 0.9);
    padding: 0.2rem 0;
    backdrop-filter: blur(5px);
}

.game-benefit-desc p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-right: 0.5rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .game-full-desc {
        height: 120px; /* 移动端较小高度 */
        font-size: 0.8rem;
    }
    
    .game-benefit-desc {
        height: 100px; /* 移动端较小高度 */
        font-size: 0.8rem;
    }
    
    .game-full-desc h4,
    .game-benefit-desc h4 {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .game-full-desc p,
    .game-benefit-desc p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* 超小屏幕适配 */
@media (max-width: 480px) {
    .game-full-desc {
        height: 100px;
        padding: 0.6rem;
    }
    
    .game-benefit-desc {
        height: 90px;
        padding: 0.6rem;
    }
    
    .game-full-desc h4,
    .game-benefit-desc h4 {
        font-size: 0.8rem;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .game-full-desc,
    .game-benefit-desc {
        scrollbar-width: none; /* 移动端隐藏滚动条 */
    }
    
    .game-full-desc::-webkit-scrollbar,
    .game-benefit-desc::-webkit-scrollbar {
        display: none; /* 移动端隐藏滚动条 */
    }
}

/* 福利徽章 */
.benefit-badge {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 0.5rem;
}
/* 移动端模态框按钮 */
.mobile-modal-buttons {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 20px;
    z-index: 1002;
    padding: 0 20px;
}

.mobile-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.9);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-nav-btn:hover {
    background: rgba(0, 123, 255, 1);
    transform: scale(1.1);
}

.mobile-nav-btn:active {
    transform: scale(0.95);
}

/* 移动端样式 */
@media (max-width: 768px) {
    .mobile-modal-buttons {
        display: flex;
    }
    
    /* 隐藏桌面端导航按钮 */
    .modal-nav {
        display: flex;
    }
    
    /* 调整关闭按钮位置 */
    .close-modal {
        top: 20px;
        right: 20px;
        font-size: 2rem;
        background: rgba(0, 0, 0, 0.7);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 调整模态框内容 */
    .modal-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .modal-caption {
        bottom: 100px;
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* 超大按钮适配 */
@media (max-width: 480px) {
    .mobile-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .mobile-modal-buttons {
        bottom: 20px;
        gap: 15px;
    }
}