/* MMORPG游戏风格主题样式 */
/* 深色奇幻主题 - 金属质感、发光效果、中世纪风格 */

/* 全局背景 */
body {
    /*background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);*/
    /*background-attachment: fixed;*/
    min-height: 100vh;
}

/* 背景装饰效果 */
.bg {
    /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.95) 100%);*/
    position: relative;
}

.bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.layui-card, .layui-table, .layui-elem-quote {
    background-color: unset !important;
}

/* 导航栏MMORPG风格 - 增强版 */
.nav-enhanced {
    /*background: linear-gradient(180deg, rgba(30, 30, 50, 0.98) 0%, rgba(15, 15, 25, 0.98) 100%);*/
    /*border: 2px solid rgba(212, 175, 55, 0.6);*/
    /*border-radius: 10px;*/
    /*padding: 12px 8px;*/
    /*box-shadow: */
    /*    0 0 30px rgba(212, 175, 55, 0.4),*/
    /*    0 0 50px rgba(138, 43, 226, 0.3),*/
    /*    inset 0 2px 0 rgba(255, 255, 255, 0.1),*/
    /*    inset 0 -2px 0 rgba(0, 0, 0, 0.5);*/
    /*position: relative;*/
    /*backdrop-filter: blur(10px);*/
}

.nav-enhanced::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    /*background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37, #8a2be2, #00bfff);*/
    background-size: 400% 400%;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.5;
    animation: borderGlow 4s ease infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-enhanced .nav-item {
    position: relative;
    display: block;
    padding: 8px 5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 6px;
    text-align: center;
    overflow: visible;
}

.nav-enhanced .nav-item .layui-icon {
    display: block;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 6px;
    color: #d4af37;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 0.8),
            0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 
            0 0 15px rgba(212, 175, 55, 1),
            0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.nav-enhanced .nav-item p {
    color: #ffd700 !important; /* 亮金色文字 */
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: bold;
    font-size: 16px !important;
    letter-spacing: 1px;
    margin-bottom: 4px;
    transition: all 0.4s ease;
}

.nav-enhanced .nav-item em {
    color: #00bfff !important; /* 亮蓝色 */
    text-shadow: 
        0 0 8px rgba(0, 191, 255, 0.6),
        0 0 15px rgba(0, 191, 255, 0.4);
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

/* 悬停效果 */
.nav-enhanced .nav-item:hover {
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.25) 0%, 
        rgba(138, 43, 226, 0.3) 50%,
        rgba(0, 191, 255, 0.25) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(138, 43, 226, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.8);
}

.nav-enhanced .nav-item:hover .layui-icon {
    color: #ffd700;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 1),
        0 0 40px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.5);
    animation: iconSpin 0.6s ease;
}

@keyframes iconSpin {
    0% { transform: scale(1.2) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(1.2) rotate(360deg); }
}

.nav-enhanced .nav-item:hover p {
    color: #fff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 45px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
    font-size: 17px !important;
}

.nav-enhanced .nav-item:hover em {
    color: #fff !important;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(0, 191, 255, 0.7);
    transform: scale(1.05);
}

/* 导航项之间的分隔线 */
.nav-enhanced li {
    position: relative;
    padding-right: 1px;
    width: 110px;
}

.nav-enhanced li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, 
        transparent,
        rgba(212, 175, 55, 0.5),
        transparent);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* 覆盖原有导航样式 */
.nav-enhanced .nav-item {
    display: block !important;
    text-align: center !important;
}

.nav-enhanced .nav-item p {
    display: block !important;
    overflow: hidden !important;
    height: auto !important;
    margin-bottom: 4px !important;
}

.nav-enhanced .nav-item em {
    display: block !important;
    overflow: hidden !important;
    height: auto !important;
    font-style: normal !important;
}

/* 面板样式 - MMORPG卡片 */
.mmorpg-panel {
    position: relative;
}

.mmorpg-panel .layui-card {
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.95) 0%, rgba(10, 10, 20, 0.95) 100%);
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 8px;
    box-shadow: 
        0 0 25px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.mmorpg-panel .layui-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.6), transparent);
    animation: topGlow 2s ease infinite;
}

@keyframes topGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* 卡片头部 */
.mmorpg-card-header {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 191, 255, 0.1) 100%);
    border-bottom: 1px solid rgba(138, 43, 226, 0.5);
    color: #d4af37 !important;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    padding: 15px 20px;
    font-size: 16px;
}

.mmorpg-card-header .layui-icon {
    margin-right: 8px;
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* 增强版卡片头部 */
.mmorpg-card-header-enhanced {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.35) 0%, 
        rgba(0, 191, 255, 0.25) 50%,
        rgba(138, 43, 226, 0.35) 100%) !important;
    border-bottom: 2px solid rgba(212, 175, 55, 0.6) !important;
    padding: 20px 25px !important;
    position: relative;
    overflow: visible;
    box-shadow: 
        0 2px 10px rgba(212, 175, 55, 0.3),
        inset 0 0 30px rgba(138, 43, 226, 0.2);
}

.mmorpg-card-header-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #ff6b6b,
        #4ecdc4,
        #ffe66d,
        #ff6b6b);
    background-size: 300% 100%;
    animation: headerGlow 3s linear infinite;
}

@keyframes headerGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.mmorpg-card-header-enhanced::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.3),
        rgba(138, 43, 226, 0.3),
        rgba(0, 191, 255, 0.3),
        rgba(212, 175, 55, 0.3));
    background-size: 400% 400%;
    border-radius: 8px;
    z-index: -1;
    animation: borderFlow 4s ease infinite;
    opacity: 0.6;
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 卡片头部主内容 */
.card-header-main {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.card-header-icon {
    font-size: 24px !important;
    margin-right: 12px !important;
    color: #ffd700 !important;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 1),
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 45px rgba(255, 215, 0, 0.5);
    animation: iconShine 2s ease-in-out infinite;
}

@keyframes iconShine {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

.card-header-title {
    font-size: 22px !important;
    font-weight: bold !important;
    color: #ffd700 !important;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.9),
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 45px rgba(255, 215, 0, 0.3),
        2px 2px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    position: relative;
    padding: 0 10px;
}

.card-header-title::before,
.card-header-title::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    font-size: 16px;
    opacity: 0.7;
}

.card-header-title::before {
    left: -20px;
}

.card-header-title::after {
    right: -20px;
}

/* 卡片头部提示信息 */
.card-header-tips {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.tip-item {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 0 8px currentColor;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.tip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

/* 重点提示 - 经典设置 */
.tip-highlight {
    color: #ff6b6b !important;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.2),
        rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.6);
    box-shadow: 
        0 0 10px rgba(255, 107, 107, 0.4),
        inset 0 0 10px rgba(255, 107, 107, 0.2);
}

.tip-highlight::before {
    background: radial-gradient(circle, 
        rgba(255, 107, 107, 0.4) 0%,
        transparent 70%);
}

.tip-highlight:hover {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.4),
        rgba(255, 107, 107, 0.2));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 20px rgba(255, 107, 107, 0.6),
        inset 0 0 15px rgba(255, 107, 107, 0.3);
    color: #fff !important;
}

/* 警告提示 - 实力打造 */
.tip-warning {
    color: #ffe66d !important;
    background: linear-gradient(135deg, 
        rgba(255, 230, 109, 0.2),
        rgba(255, 230, 109, 0.1));
    border: 1px solid rgba(255, 230, 109, 0.6);
    box-shadow: 
        0 0 10px rgba(255, 230, 109, 0.4),
        inset 0 0 10px rgba(255, 230, 109, 0.2);
}

.tip-warning::before {
    background: radial-gradient(circle, 
        rgba(255, 230, 109, 0.4) 0%,
        transparent 70%);
}

.tip-warning:hover {
    background: linear-gradient(135deg, 
        rgba(255, 230, 109, 0.4),
        rgba(255, 230, 109, 0.2));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 20px rgba(255, 230, 109, 0.6),
        inset 0 0 15px rgba(255, 230, 109, 0.3);
    color: #fff !important;
}

/* 成功提示 - 长久稳定 */
.tip-success {
    color: #4ecdc4 !important;
    background: linear-gradient(135deg, 
        rgba(78, 205, 196, 0.2),
        rgba(78, 205, 196, 0.1));
    border: 1px solid rgba(78, 205, 196, 0.6);
    box-shadow: 
        0 0 10px rgba(78, 205, 196, 0.4),
        inset 0 0 10px rgba(78, 205, 196, 0.2);
}

.tip-success::before {
    background: radial-gradient(circle, 
        rgba(78, 205, 196, 0.4) 0%,
        transparent 70%);
}

.tip-success:hover {
    background: linear-gradient(135deg, 
        rgba(78, 205, 196, 0.4),
        rgba(78, 205, 196, 0.2));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 20px rgba(78, 205, 196, 0.6),
        inset 0 0 15px rgba(78, 205, 196, 0.3);
    color: #fff !important;
}

/* 分隔符样式 */
.tip-separator {
    color: rgba(212, 175, 55, 0.6);
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
    margin: 0 5px;
    animation: separatorPulse 2s ease-in-out infinite;
}

@keyframes separatorPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* 卡片内容区 */
.mmorpg-card-body {
    background: rgba(5, 5, 15, 0.6);
    color: #e0e0e0;
    padding: 20px;
}

/* 服务项目样式 */
.service-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(138, 43, 226, 0.1);
    padding-left: 10px;
    border-left: 3px solid #d4af37;
}

.service-label {
    color: #8a8a8a;
    margin-right: 10px;
    font-size: 14px;
}

.service-value {
    color: #d4af37;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.service-link {
    color: #00bfff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #d4af37 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    text-decoration: underline;
}

/* 新闻列表样式 */
.news-link {
    display: block;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 5px;
}

.news-link:hover {
    background: rgba(138, 43, 226, 0.2);
    padding-left: 25px;
    box-shadow: inset 3px 0 0 #d4af37;
}

.news-title {
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-link:hover .news-title {
    text-shadow: 0 0 10px currentColor;
}

/* 时间轴样式优化 */
.layui-timeline-item {
    position: relative;
    padding-left: 30px;
}

.layui-timeline-axis {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    font-size: 16px;
}

.layui-timeline-content {
    color: #e0e0e0;
}

/* 游戏介绍区域 */
.game-intro {
    line-height: 1.8;
    color: #e0e0e0;
}

.game-intro p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.game-intro a {
    color: #00bfff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.game-intro a:hover {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    text-decoration: underline;
}

/* 侧边栏按钮 */
.side .yy,
.side .jh {
    background: linear-gradient(180deg, rgba(30, 30, 50, 0.9) 0%, rgba(15, 15, 25, 0.9) 100%);
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.side .yy:hover,
.side .jh:hover {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.3) 0%, rgba(0, 191, 255, 0.3) 100%);
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.side .yy p,
.side .jh p {
    color: #d4af37 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* 侧边栏链接 */
.side-link a {
    border-bottom: 1px solid rgba(138, 43, 226, 0.3) !important;
    color: #e0e0e0 !important;
    transition: all 0.3s ease;
    position: relative;
}

.side-link a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.3), transparent);
    transition: width 0.3s ease;
}

.side-link a:hover {
    color: #d4af37 !important;
    padding-left: 15px;
    background: rgba(138, 43, 226, 0.1);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.side-link a:hover::before {
    width: 5px;
}

/* 轮播图容器 */
.slider {
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 10px;
    box-shadow: 
        0 0 25px rgba(212, 175, 55, 0.4),
        0 0 50px rgba(138, 43, 226, 0.3);
    overflow: hidden;
    background: #000;
    position: relative;
}

.slider::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #d4af37, #ffd700, #8a2be2, #00bfff);
    background-size: 400% 400%;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.5;
    animation: borderGlow 4s ease infinite;
}

.slider .layui-carousel {
    border-radius: 8px;
    overflow: hidden;
}

.slider .layui-carousel img {
    transition: transform 0.5s ease;
}

.slider .layui-carousel img:hover {
    transform: scale(1.05);
}

/* Layui轮播指示器样式 */
.slider .layui-carousel-ind {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider .layui-carousel-ind li {
    width: 32px;
    height: 8px;
    margin: 0 2px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider .layui-carousel-ind li:hover {
    background: rgba(212, 175, 55, 0.6);
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: scale(1.1);
}

.slider .layui-carousel-ind li.layui-this {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.8), rgba(138, 43, 226, 0.8));
    border-color: #d4af37;
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.8),
        0 0 25px rgba(212, 175, 55, 0.5);
    width: 40px;
}

/* Layui轮播箭头样式 */
.slider .layui-carousel-arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    transition: all 0.3s ease;
}

.slider .layui-carousel-arrow:hover {
    background: rgba(212, 175, 55, 0.6);
    border-color: #ffd700;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.5);
    color: #ffd700;
    transform: scale(1.1);
}

.slider .layui-carousel-arrow[lay-type="prev"] {
    left: 10px;
}

.slider .layui-carousel-arrow[lay-type="next"] {
    right: 10px;
}

/* 旧的slider-tab样式（保留兼容性） */
.slider-tab a {
    background: rgba(138, 138, 138, 0.3) !important;
    border: 1px solid rgba(138, 43, 226, 0.5) !important;
    transition: all 0.3s ease;
}

.slider-tab a.on {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.6), rgba(0, 191, 255, 0.6)) !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Banner样式 */
.banner {
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.banner:hover {
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.5);
    transform: translateY(-2px);
}

/* MMORPG风格文字Banner */
.mmorpg-banner-text {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(20, 20, 35, 0.98) 0%, 
        rgba(30, 30, 50, 0.98) 50%,
        rgba(20, 20, 35, 0.98) 100%);
    border: 3px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.4),
        0 0 70px rgba(138, 43, 226, 0.3),
        0 0 100px rgba(0, 191, 255, 0.2),
        inset 0 0 40px rgba(138, 43, 226, 0.2);
    position: relative;
    overflow: visible;
}

.mmorpg-banner-text::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        #d4af37, #ffd700, #8a2be2, #00bfff, #d4af37);
    background-size: 500% 500%;
    border-radius: 14px;
    z-index: -1;
    opacity: 0.8;
    animation: borderGlow 3s linear infinite;
}

.mmorpg-banner-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 3s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.banner-ad-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-ad-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    z-index: 1;
}

.banner-ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    height: 100%;
    padding: 20px;
}

.banner-text-char {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 1),
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 45px rgba(255, 215, 0, 0.6),
        3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    animation: charFloat 3s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.banner-text-char:nth-child(1) { animation-delay: 0s; }
.banner-text-char:nth-child(2) { animation-delay: 0.15s; }
.banner-text-char:nth-child(3) { animation-delay: 0.3s; }
.banner-text-char:nth-child(4) { animation-delay: 0.45s; }
.banner-text-char:nth-child(5) { animation-delay: 0.6s; }
.banner-text-char:nth-child(6) { animation-delay: 0.75s; }
.banner-text-char:nth-child(7) { animation-delay: 0.9s; }
.banner-text-char:nth-child(8) { animation-delay: 1.05s; }
.banner-text-char:nth-child(9) { animation-delay: 1.2s; }
.banner-text-char:nth-child(10) { animation-delay: 1.35s; }
.banner-text-char:nth-child(11) { animation-delay: 1.5s; }
.banner-text-char:nth-child(12) { animation-delay: 1.65s; }

@keyframes charFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 45px rgba(255, 215, 0, 0.6);
        color: #ffd700;
    }
    50% { 
        transform: translateY(-12px) scale(1.15);
        text-shadow: 
            0 0 25px rgba(255, 215, 0, 1),
            0 0 50px rgba(255, 215, 0, 0.9),
            0 0 75px rgba(255, 215, 0, 0.7),
            0 0 100px rgba(138, 43, 226, 0.5);
        color: #fff;
    }
}

.banner-char-highlight {
    color: #ff6b6b !important;
    font-size: 42px !important;
    animation: highlightPulse 1.2s ease-in-out infinite !important;
    position: relative;
    font-weight: 900 !important;
}

.banner-char-highlight::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, 
        rgba(255, 107, 107, 0.6) 0%,
        rgba(255, 107, 107, 0.4) 40%,
        transparent 80%);
    border-radius: 50%;
    z-index: -1;
    animation: highlightGlow 1.2s ease-in-out infinite;
}

.banner-char-highlight::after {
    content: '✨';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0;
        transform: translateX(-50%) translateY(0) scale(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) translateY(-8px) scale(1);
    }
}

@keyframes highlightPulse {
    0%, 100% { 
        transform: translateY(0) scale(1);
        text-shadow: 
            0 0 20px rgba(255, 107, 107, 1),
            0 0 40px rgba(255, 107, 107, 0.9),
            0 0 60px rgba(255, 107, 107, 0.7);
        color: #ff6b6b;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        text-shadow: 
            0 0 30px rgba(255, 107, 107, 1),
            0 0 60px rgba(255, 107, 107, 1),
            0 0 90px rgba(255, 107, 107, 0.8),
            0 0 120px rgba(212, 175, 55, 0.5);
        color: #fff;
    }
}

@keyframes highlightGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.4);
    }
}

.banner-text-char:hover {
    transform: translateY(-18px) scale(1.3) rotate(8deg);
    color: #fff !important;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 1),
        0 0 60px rgba(255, 215, 0, 0.9),
        0 0 90px rgba(138, 43, 226, 0.7),
        0 0 120px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 5px 20px rgba(255, 215, 0, 0.8));
    animation-play-state: paused;
}

.banner-icon {
    font-size: 40px;
    margin-left: 15px;
    color: #ff6b6b;
    animation: iconRotate 2s linear infinite;
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 1)) 
            drop-shadow(0 0 25px rgba(255, 107, 107, 0.8));
    text-shadow: 
        0 0 15px rgba(255, 107, 107, 1),
        0 0 30px rgba(255, 107, 107, 0.8);
}

@keyframes iconRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.banner-subtitle {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 1),
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 30px rgba(212, 175, 55, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    animation: subtitleGlow 2s ease-in-out infinite;
    white-space: nowrap;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
}

@keyframes subtitleGlow {
    0%, 100% { 
        opacity: 0.8;
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 1),
            0 0 20px rgba(212, 175, 55, 0.8);
        color: #d4af37;
    }
    50% { 
        opacity: 1;
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 1),
            0 0 40px rgba(212, 175, 55, 0.9),
            0 0 60px rgba(255, 215, 0, 0.7);
        color: #ffd700;
    }
}

.banner-ad-link:hover .banner-subtitle {
    color: #ffd700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 1),
        0 0 40px rgba(255, 215, 0, 0.9),
        0 0 60px rgba(255, 215, 0, 0.7);
}

.banner-ad-link:hover .banner-text-char {
    animation-duration: 1.5s;
}

.banner-ad-link:hover .mmorpg-banner-text::before {
    animation-duration: 1.5s;
}

/* 响应式优化 */
@media (max-width: 1200px) {
    .banner-text-char {
        font-size: 28px;
    }
    
    .banner-char-highlight {
        font-size: 32px !important;
    }
    
    .banner-icon {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .mmorpg-banner-text {
        height: 100px;
    }
    
    .banner-text-char {
        font-size: 20px;
        gap: 4px;
    }
    
    .banner-char-highlight {
        font-size: 24px !important;
    }
    
    .banner-subtitle {
        font-size: 12px;
        bottom: 10px;
    }
    
    .banner-icon {
        font-size: 20px;
        margin-left: 8px;
    }
}

/* Footer样式 */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.95) 0%, rgba(5, 5, 10, 0.95) 100%);
    border-top: 2px solid rgba(138, 43, 226, 0.5);
    box-shadow: 0 -5px 20px rgba(138, 43, 226, 0.2);
    margin-top: 40px;
}

.footer .ftxt {
    color: #8a8a8a;
}

.footer .ftxt p {
    color: #8a8a8a !important;
}

.footer .ftxt a {
    color: #00bfff !important;
    transition: all 0.3s ease;
}

.footer .ftxt a:hover {
    color: #d4af37 !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Layui按钮样式覆盖 */
.layui-btn-primary {
    background-color: rgba(138, 43, 226, 0.3) !important;
    border-color: rgba(138, 43, 226, 0.6) !important;
    color: #d4af37 !important;
}

.layui-btn-primary:hover {
    background-color: rgba(138, 43, 226, 0.5) !important;
    border-color: #d4af37 !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* 表格样式优化 */
.game-intro table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 6px;
    overflow: hidden;
}

.game-intro table td {
    padding: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: #e0e0e0;
}

.game-intro table tr:nth-child(even) {
    background: rgba(138, 43, 226, 0.05);
}

.game-intro table tr:hover {
    background: rgba(138, 43, 226, 0.15);
}

/* 响应式优化 */
@media (max-width: 1200px) {
    .wraper {
        width: 100%;
        padding: 0 20px;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 20, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.6), rgba(0, 191, 255, 0.6));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.8), rgba(0, 191, 255, 0.8));
}

/* 选择文本颜色 */
::selection {
    background: rgba(138, 43, 226, 0.5);
    color: #fff;
}

::-moz-selection {
    background: rgba(138, 43, 226, 0.5);
    color: #fff;
}

/* 内容区域样式 */
.game-content {
    color: #e0e0e0;
    line-height: 1.8;
}

.game-content h1,
.game-content h2,
.game-content h3,
.game-content h4,
.game-content h5,
.game-content h6 {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    margin-top: 20px;
    margin-bottom: 15px;
}

.game-content p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.game-content a {
    color: #00bfff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.game-content a:hover {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    text-decoration: underline;
}

.game-content ul,
.game-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.game-content li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.game-content code {
    background: rgba(138, 43, 226, 0.2);
    padding: 2px 6px;
    border-radius: 3px;
    color: #d4af37;
    font-family: 'Courier New', monospace;
}

.game-content pre {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 6px;
    padding: 15px;
    overflow-x: auto;
    margin-bottom: 15px;
}

.game-content blockquote {
    border-left: 4px solid #d4af37;
    padding-left: 15px;
    margin: 20px 0;
    color: #c0c0c0;
    background: rgba(138, 43, 226, 0.1);
    padding: 15px;
    border-radius: 4px;
}

/* 游戏设置表格容器 */
.game-settings-table-wrapper {
    width: 955px;
    max-width: 955px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0;
    position: relative;
}

/* 表格样式 */
.game-settings-table {
    width: 955px !important;
    max-width: 955px !important;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(180deg, 
        rgba(20, 20, 35, 0.95) 0%, 
        rgba(10, 10, 20, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 0 50px rgba(138, 43, 226, 0.1);
    position: relative;
}

.game-settings-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #ff6b6b,
        #4ecdc4,
        #ffe66d,
        #ff6b6b);
    background-size: 300% 100%;
    animation: headerGlow 3s linear infinite;
    z-index: 1;
}

/* 表格头部行 */
.table-header-row {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.3) 0%,
        rgba(0, 191, 255, 0.2) 100%);
}

.table-header-cell {
    padding: 20px 25px !important;
    text-align: center !important;
    border-bottom: 2px solid rgba(212, 175, 55, 0.6) !important;
    position: relative;
}

/* 主标题 */
.table-main-title {
    text-align: center !important;
    margin: 0 0 15px 0 !important;
    padding: 15px 20px;
    background: linear-gradient(135deg, 
        rgba(229, 51, 51, 0.2),
        rgba(255, 153, 0, 0.2));
    border: 2px solid rgba(255, 153, 0, 0.6);
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(255, 153, 0, 0.4),
        inset 0 0 20px rgba(229, 51, 51, 0.2);
}

.title-icon {
    display: inline-block;
    font-size: 28px;
    margin: 0 15px;
    color: #ffd700;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 1),
        0 0 30px rgba(255, 215, 0, 0.8);
    animation: iconSparkle 2s ease-in-out infinite;
}

@keyframes iconSparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.title-text {
    font-size: 26px !important;
    font-weight: bold !important;
    color: #ffd700 !important;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.9),
        0 0 30px rgba(255, 153, 0, 0.6),
        0 0 45px rgba(229, 51, 51, 0.4),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    display: inline-block;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 0.9),
            0 0 30px rgba(255, 153, 0, 0.6);
    }
    50% { 
        text-shadow: 
            0 0 25px rgba(255, 215, 0, 1),
            0 0 50px rgba(255, 153, 0, 0.8),
            0 0 75px rgba(229, 51, 51, 0.6);
    }
}

/* 特色链接 */
.table-link-wrapper {
    text-align: center !important;
    margin: 20px 0 !important;
}

.table-featured-link {
    display: inline-block;
    padding: 12px 30px;
    font-size: 22px !important;
    font-weight: bold !important;
    color: #ff6b6b !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.2),
        rgba(255, 107, 107, 0.1));
    border: 2px solid rgba(255, 107, 107, 0.6);
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(255, 107, 107, 0.5),
        inset 0 0 15px rgba(255, 107, 107, 0.2);
    text-shadow: 
        0 0 10px rgba(255, 107, 107, 0.8),
        0 0 20px rgba(255, 107, 107, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.table-featured-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.5s ease;
}

.table-featured-link:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.4),
        rgba(255, 107, 107, 0.3));
    box-shadow: 
        0 0 30px rgba(255, 107, 107, 0.8),
        0 10px 40px rgba(255, 107, 107, 0.4),
        inset 0 0 25px rgba(255, 107, 107, 0.3);
    color: #fff !important;
    border-color: #ff6b6b;
}

.table-featured-link:hover::before {
    left: 100%;
}

.link-decoration {
    margin: 0 10px;
    font-size: 24px;
    animation: decorationPulse 2s ease-in-out infinite;
}

@keyframes decorationPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.link-text {
    letter-spacing: 2px;
}

/* 设置行样式 */
.settings-row {
    transition: all 0.3s ease;
}

.settings-row:hover {
    background: rgba(138, 43, 226, 0.1);
}

.settings-row:nth-child(even) {
    background: rgba(138, 43, 226, 0.05);
}

.settings-row:nth-child(even):hover {
    background: rgba(138, 43, 226, 0.15);
}

/* 设置标签单元格 */
.settings-label-cell {
    width: 120px !important;
    min-width: 120px;
    max-width: 120px;
    padding: 15px 15px !important;
    vertical-align: top;
    border-right: 2px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, 
        rgba(138, 43, 226, 0.2),
        rgba(0, 191, 255, 0.1));
    position: relative;
    word-wrap: break-word;
    word-break: break-all;
}

.settings-label-cell::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent,
        rgba(212, 175, 55, 0.6),
        transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.settings-label {
    text-align: left !important;
}

.label-text {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #ffd700 !important;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    padding-left: 8px;
}

.label-text::before {
    content: '▶';
    position: absolute;
    left: -8px;
    color: #4ecdc4;
    text-shadow: 0 0 8px rgba(78, 205, 196, 0.8);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: translateX(0);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(3px);
        opacity: 1;
    }
}

/* 设置内容单元格 */
.settings-content-cell {
    width: auto !important;
    padding: 15px 20px !important;
    vertical-align: top;
    border-left: 1px solid rgba(138, 43, 226, 0.2);
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
}

.settings-content {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #e0e0e0 !important;
    text-align: left !important;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
}

.settings-content strong {
    color: #ffd700 !important;
    font-weight: bold !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.settings-warning {
    padding: 12px 18px;
    background: linear-gradient(135deg, 
        rgba(255, 153, 0, 0.15),
        rgba(255, 107, 107, 0.1));
    border-left: 4px solid #ff9900;
    border-radius: 6px;
    box-shadow: 
        0 0 15px rgba(255, 153, 0, 0.3),
        inset 0 0 10px rgba(255, 153, 0, 0.1);
    font-size: 18px !important;
    color: #ffd700 !important;
    font-weight: bold !important;
}

.warning-icon {
    font-size: 20px;
    margin-right: 8px;
    animation: warningBlink 1.5s ease-in-out infinite;
}

@keyframes warningBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* 表格单元格通用样式 */
.game-settings-table td {
    padding: 12px 15px !important;
    border: 1px solid rgba(138, 43, 226, 0.2) !important;
    color: #e0e0e0 !important;
    vertical-align: top;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
}

.game-settings-table td p {
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
}

.game-settings-table td span {
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline;
}

.game-settings-table tr:not(.table-header-row) td {
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
}

/* 文本内容中的颜色优化 */
.game-settings-table span[style*="color:#FF9900"],
.game-settings-table span[style*="color:#ff9900"] {
    color: #ffd700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    font-weight: 600;
}

.game-settings-table span[style*="color:#E56600"] {
    color: #ff9900 !important;
    text-shadow: 0 0 6px rgba(255, 153, 0, 0.5);
}

.game-settings-table span[style*="color:#006600"] {
    color: #4ecdc4 !important;
    text-shadow: 0 0 8px rgba(78, 205, 196, 0.6);
    font-weight: 600;
}

.game-settings-table span[style*="color:#E53333"] {
    color: #ff6b6b !important;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.6);
}

.game-settings-table strong {
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.game-settings-table a {
    color: #4ecdc4 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(78, 205, 196, 0.5);
}

.game-settings-table a:hover {
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    border-bottom-color: #ffd700;
}

/* 响应式优化 */
@media (max-width: 1000px) {
    .game-settings-table-wrapper {
        width: 100%;
        max-width: 955px;
    }
    
    .game-settings-table {
        width: 100% !important;
        max-width: 955px !important;
    }
    
    .settings-label-cell {
        width: 100px !important;
        min-width: 100px;
        max-width: 100px;
        padding: 12px 10px !important;
    }
    
    .table-main-title {
        padding: 12px 15px;
    }
    
    .title-text {
        font-size: 20px !important;
    }
}

@media (max-width: 768px) {
    .game-settings-table-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .game-settings-table {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px;
    }
    
    .settings-label-cell {
        width: 80px !important;
        min-width: 80px;
        max-width: 80px;
        padding: 10px 8px !important;
    }
    
    .settings-content-cell {
        padding: 10px 12px !important;
    }
    
    .title-text {
        font-size: 16px !important;
    }
    
    .table-main-title {
        padding: 10px 12px;
    }
}

/* 表格在内容区域的样式（保留其他表格样式） */
.game-content table:not(.game-settings-table) {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.game-content table th {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.3), rgba(0, 191, 255, 0.2));
    color: #d4af37;
    font-weight: bold;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.game-content table td {
    padding: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: #e0e0e0;
}

.game-content table tr:nth-child(even) {
    background: rgba(138, 43, 226, 0.05);
}

.game-content table tr:hover {
    background: rgba(138, 43, 226, 0.15);
    transition: all 0.3s ease;
}

/* 图片样式 */
.game-content img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
    margin: 15px 0;
    transition: all 0.3s ease;
}

.game-content img:hover {
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.5);
    transform: scale(1.02);
}

/* 输入框和表单样式 */
.game-content input[type="text"],
.game-content input[type="password"],
.game-content input[type="email"],
.game-content textarea,
.game-content select {
    background: rgba(15, 15, 25, 0.8);
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 4px;
    padding: 8px 12px;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.game-content input[type="text"]:focus,
.game-content input[type="password"]:focus,
.game-content input[type="email"]:focus,
.game-content textarea:focus,
.game-content select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    outline: none;
}

.game-content button,
.game-content input[type="submit"],
.game-content input[type="button"] {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.6), rgba(0, 191, 255, 0.4));
    border: 2px solid rgba(138, 43, 226, 0.6);
    border-radius: 4px;
    /*padding: 10px 20px;*/
    color: #d4af37;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.game-content button:hover,
.game-content input[type="submit"]:hover,
.game-content input[type="button"]:hover {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.8), rgba(0, 191, 255, 0.6));
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

