﻿/* Module 1 -顶部 */
  @-webkit-keyframes chartjs-render-animation{from{opacity:0.99}to{opacity:1}}
    @keyframes chartjs-render-animation{from{opacity:0.99}to{opacity:1}}
    .chartjs-render-monitor{-webkit-animation:chartjs-render-animation 0.001s;
    animation:chartjs-render-animation 0.001s;
	}
	
	    .img{
        width: 80px;
        height: 80px;
        margin-right: 10px;
    }
	
	
	  /* Module 2-顶部 */
	        .btn-a{
                background: red;
        margin: 0;
        padding: 0;
        height: 40px;
        border-radius: 8px;
        display: inline-block;
        line-height: 40px;
        padding: 0 20px;
        box-sizing: border-box;
        }
		
        .enhanced-gif {
            width: 100%;
            max-width: 800px;
            height: auto;
            
            /* 清晰度增强滤镜组合 */
            filter: 
                contrast(1.15)      /* 增加对比度 */
                brightness(1.05)   /* 稍微提亮 */
                saturate(1.1)       /* 增加饱和度 */
                hue-rotate(0deg);   /* 色相微调 */
            
            /* 高质量图像渲染 */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            image-rendering: high-quality;
            
            /* 锐化效果 */
            transform: translateZ(0);
            backface-visibility: hidden;
        }
        
        /* 悬停时进一步锐化 */
        .enhanced-gif:hover {
            filter: 
                contrast(1.2)
                brightness(1.1)
                saturate(1.2)
                drop-shadow(0 0 5px rgba(0,0,0,0.3));
        }
		
		
		  /* Module 2-附页介绍 */	
		  ul li {
    margin-bottom: 5px; /* 设置每个列表项之间的间距 */
  }
  .boss1-refresh-btn {
    display: inline-block;
    padding: 8px 10px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s;
    width: 75%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.3;
}

		/* 自定义心跳动画 */
		@keyframes heartbeat {
			0%, 100% { transform: scale(1); }
			50% { transform: scale(1.1); }
		}
		  /* Module 2-详细设置 */			
.cyber-container {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

.cyber-top-banner {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 12px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

.cyber-feature-section {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cyber-feature-box {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s;
}

.cyber-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.cyber-feature-box i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.cyber-feature-box .cyber-feature-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #FFD700;
}

.cyber-feature-box .cyber-feature-desc {
    font-size: 13px;
    opacity: 0.8;
}

.cyber-vintage-line {
    width: 100px;
    height: 1px;
    background: #FFD700;
    margin: 10px auto;
    border-radius: 1px;
}

.cyber-main-img {
    text-align: center;
    margin-bottom: 25px;
}

.cyber-main-img img {
    max-width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(255,215,0,0.3);
}

.cyber-tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cyber-tab-btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: bold;
    color: #FFD700;
}

.cyber-tab-btn:hover, .cyber-tab-btn.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-color: #FFD700;
    transform: scale(1.02);
}

.cyber-tab-content {
    display: none;
}

.cyber-tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cyber-step-list {
    margin-bottom: 25px;
}

.cyber-step-title {
    background: rgba(255,215,0,0.15);
    color: #FFD700;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.3);
}

.cyber-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 3px solid #FFD700;
}

.cyber-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.cyber-step-text {
    color: #ebdeb8;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.cyber-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid rgba(255,215,0,0.3);
}

.cyber-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.cyber-table thead th {
    background: rgba(255,215,0,0.2);
    color: #FFD700;
    padding: 10px 8px;
    border: 1px solid rgba(255,215,0,0.3);
    text-align: center;
    font-weight: bold;
}

.cyber-table tbody td {
    padding: 10px 8px;
    border: 1px solid rgba(255,215,0,0.15);
    color: #ebdeb8;
    text-align: center;
    vertical-align: middle;
}

.cyber-table tbody tr:nth-child(even) {
    background: rgba(255,215,0,0.05);
}

.cyber-table tbody tr:hover {
    background: rgba(255,215,0,0.1);
}

.cyber-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    transition: all 0.5s;
    opacity: 0;
}

.cyber-card:hover::before {
    opacity: 1;
}

.cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.cyber-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cyber-card-desc {
    font-size: 14px;
    color: #ebdeb8;
    line-height: 1.8;
}

.cyber-footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.cyber-divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

@media (max-width: 768px) {
    .cyber-feature-section { flex-direction: column; }
    .cyber-tab-buttons { flex-direction: column; }
    .cyber-table { font-size: 11px; }
    .cyber-table thead th, .cyber-table tbody td { padding: 6px 4px; }
}		

/* Module 1 - BOSS刷新介绍 */
.boss-refresh-wrapper {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}
.boss-refresh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}
.boss-refresh-item {
    text-align: center;
}
.boss-refresh-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}
.boss-refresh-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0));
    transform: rotate(45deg);
    transition: all 0.6s ease;
}
.boss-refresh-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}
.boss-refresh-btn:hover::before {
    left: 100%;
    top: 100%;
}
.boss-refresh-btn.active {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}
.boss-refresh-display {
    text-align: center;
    margin-top: 20px;
    min-height: 350px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.boss-refresh-display h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.boss-refresh-display .boss-refresh-content {
    border-radius: 10px;
    padding: 15px 20px;
    margin: 12px 0;
    text-align: center;
}
.boss-refresh-display .boss-refresh-content p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}
.boss-refresh-display .boss-refresh-content .boss-refresh-title {
    font-size: 15px;
    color: #FFD700;
    margin: 15px 0 10px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.boss-refresh-display .boss-refresh-content .boss-refresh-title i {
    width: 20px;
    text-align: center;
}
.boss-refresh-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
    .boss-refresh-grid { grid-template-columns: repeat(2, 1fr); }
    .boss-refresh-display { padding: 15px; }
}

/* Module 2 - 副本设置介绍 */
.dungeon-setting-wrapper {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}
.dungeon-setting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}
.dungeon-setting-item {
    text-align: center;
}
.dungeon-setting-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}
.dungeon-setting-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0));
    transform: rotate(45deg);
    transition: all 0.6s ease;
}
.dungeon-setting-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}
.dungeon-setting-btn:hover::before {
    left: 100%;
    top: 100%;
}
.dungeon-setting-btn.active {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}
.dungeon-setting-display {
    text-align: center;
    margin-top: 20px;
    min-height: 350px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.dungeon-setting-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%), linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}
.dungeon-setting-display h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.dungeon-setting-display .dungeon-setting-content {
    border-radius: 10px;
    padding: 15px 20px;
    margin: 12px 0;
    text-align: center;
}
.dungeon-setting-display .dungeon-setting-content p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}
.dungeon-setting-display .dungeon-setting-content .dungeon-setting-title {
    font-size: 15px;
    color: #FFD700;
    margin: 15px 0 10px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.dungeon-setting-display .dungeon-setting-content .dungeon-setting-title i {
    width: 20px;
    text-align: center;
}
.dungeon-setting-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
    .dungeon-setting-grid { grid-template-columns: repeat(2, 1fr); }
    .dungeon-setting-display { padding: 15px; }
}

/* Module 3 - 副本设置介绍 (merged with campaign) */
.campaign-wrapper {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}
.campaign-item {
    text-align: center;
}
.campaign-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}
.campaign-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0));
    transform: rotate(45deg);
    transition: all 0.6s ease;
}
.campaign-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}
.campaign-btn:hover::before {
    left: 100%;
    top: 100%;
}
.campaign-btn.active {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}
.campaign-display {
    text-align: center;
    margin-top: 20px;
    min-height: 350px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(10, 20, 30, 0.7);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.campaign-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%), linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}
.campaign-display h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.campaign-display .campaign-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 12px 0;
    text-align: center;
}
.campaign-display .campaign-content p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}
.campaign-display .campaign-content .campaign-title {
    font-size: 15px;
    color: #FFD700;
    margin: 15px 0 10px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.campaign-display .campaign-content .campaign-title i {
    width: 20px;
    text-align: center;
}
.campaign-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
    .campaign-grid { grid-template-columns: repeat(2, 1fr); }
    .campaign-display { padding: 15px; }
}

/* 段落分割线样式 */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 215, 0, 0.5) 20%, 
        rgba(255, 215, 0, 0.8) 50%, 
        rgba(255, 215, 0, 0.5) 80%, 
        transparent 100%
    );
    margin: 15px 0;
    border: none;
    position: relative;
}

/* 分割线发光效果 */
.section-divider::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffd700;
    font-size: 10px;
    background: #1a1a2e;
    padding: 0 8px;
}

/* 标题段落样式 */
.boss-refresh-content h2,
.dungeon-setting-content h2 {
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* 标题类段落样式 */
.boss-refresh-title,
.dungeon-setting-title {
    color: #ff6b6b;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

/* 内容段落样式 */
.boss-refresh-content p,
.dungeon-setting-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin: 5px 0;
    padding: 5px 0;
}
/* Boss Info Card Styles */
.boss-info-card, .dungeon-info-card {

    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
}

.boss-info-card h2, .dungeon-info-card h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.info-row {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
}

.info-label {
    color: #ffd700;
    font-weight: bold;
    min-width: 70px;
    display: flex;
    align-items: center;
    gap: 8px;
}


.info-value {
    color: #ebdeb8;
    flex: 1;
    text-align: left;
}

.boss-reward-card, .dungeon-reward-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid #555;
}

.reward-column {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.reward-column h3 {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 8px;
}

.reward-column p {
    color: #ebdeb8;
    font-size: 13px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .boss-reward-card, .dungeon-reward-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .boss-reward-card, .dungeon-reward-card {
        grid-template-columns: 1fr;
    }
}

/* VIP独立容器 */
.vip-container {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

/* 顶部标题 */
.vip-top-banner {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

/* VIP按钮网格 */
.vip-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.vip-btn-item {
    text-align: center;
}

.vip-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.vip-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0));
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.vip-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}

.vip-btn:hover::before {
    left: 100%;
    top: 100%;
}

.vip-btn.active {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}

/* VIP显示区域 */
.vip-display {
    text-align: center;
    margin-top: 20px;
    min-height: 400px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.vip-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%),
        linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.vip-display h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.vip-display .vip-content {
    border-radius: 10px;
    margin: 12px 0;
    text-align: center;
}

.vip-display .vip-content p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}

.vip-display .vip-content .vip-title {
    font-size: 15px;
    color: #FFD700;
    margin: 15px 0 10px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vip-display .vip-content .vip-title i {
    width: 20px;
    text-align: center;
}

/* VIP信息卡片 */
.vip-info-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 15px 0;
    text-align: left;
    border-left: 4px solid;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.vip-info-card.info {
    border-left-color: #40e0d0;
}

.vip-info-card.link {
    border-left-color: #9370db;
}

.vip-info-card.coins {
    border-left-color: #ff4500;
}

.vip-info-card.exchange {
    border-left-color: #ff69b4;
}

.vip-info-card.svip {
    border-left-color: #1e90ff;
}

.vip-info-card .card-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vip-info-card.info .card-icon { color: #40e0d0; }
.vip-info-card.link .card-icon { color: #9370db; }
.vip-info-card.coins .card-icon { color: #ff4500; }
.vip-info-card.exchange .card-icon { color: #ff69b4; }
.vip-info-card.svip .card-icon { color: #1e90ff; }

.vip-info-card .card-text {
    margin: 0;
    color: #ebdeb8;
    font-size: 15px;
    line-height: 1.8;
}

.vip-info-card .card-text strong {
    font-size: 16px;
}

/* VIP表格 */
.vip-table-wrapper {
    overflow-x: auto;
    margin: 15px 0;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.vip-table th {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 10px 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    font-weight: bold;
}

.vip-table td {
    padding: 1px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    color: #ebdeb8;
}

.vip-table tr:nth-child(even) {
    background: rgba(255, 215, 0, 0.05);
}

.vip-table .vip-level-cell {
    color: #FFD700;
    font-weight: bold;
}

.vip-table .vip-cost-cell {
    color: #ff4500;
    font-weight: bold;
}

.vip-table .vip-benefits-cell {
    font-size: 12px;
}

.vip-table .combo-cell {
    color: #40e0d0;
    font-size: 12px;
}

.vip-table .vip-icon-cell img {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

/* VIP图标展示 */
.vip-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.vip-icon-item {
    text-align: center;
}

.vip-icon-item img {
    width: 180px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
}

.vip-icon-item p {
    color: #FFD700;
    font-size: 12px;
    margin-top: 5px;
}

/* 底部提示 */
.vip-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .vip-btn-grid { grid-template-columns: repeat(2, 1fr); }
    .vip-display { padding: 15px; }
    .vip-table { font-size: 10px; }
    .vip-table th, .vip-table td { padding: 5px; }
    .vip-icon-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}


/* 攻城主容器 */
.recharge-container {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

/* 顶部标题 */
.top-banner {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

/* 按钮网格 */
.btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.btn-item {
    text-align: center;
}

.monster-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.monster-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.1),
        rgba(255, 215, 0, 0)
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.monster-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}

.monster-btn:hover::before {
    left: 100%;
    top: 100%;
}

.monster-btn.active {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}

/* 显示区域 */
.display-area {
    text-align: center;
    margin-top: 20px;
    min-height: 350px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.display-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%),
        linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.display-area h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.display-area .content-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1px 1px;
    margin: 12px 0;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.display-area .content-box p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}

.display-area .content-box .section-title {
    font-size: 15px;
    color: #FFD700;
    margin: 15px 0 10px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.display-area .content-box .section-title i {
    width: 20px;
    text-align: center;
}

/* 底部提示 */
.footer-tip {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .btn-grid { grid-template-columns: repeat(2, 1fr); }
    .display-area { padding: 15px; }
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 15px;
    margin: 8px 0;
    background: rgba(30, 30, 40, 0.9);
    border: 1px solid #444;
    border-radius: 6px;
}

.info-card-label {
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 140px;
}

.info-card-value {
    color: #ebdeb8;
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
    text-align: left;
}

/* 主容器 - 新人必看专用 */
.recharge-container-xr {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

/* 顶部标题 */
.top-banner-xr {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

/* 按钮网格 */
.btn-grid-xr {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.btn-item-xr {
    text-align: center;
}

.monster-btn-xr {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.monster-btn-xr::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.1),
        rgba(255, 215, 0, 0)
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.monster-btn-xr:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}

.monster-btn-xr:hover::before {
    left: 100%;
    top: 100%;
}

.monster-btn-xr.active-xr {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}

/* 显示区域 */
.display-area-xr {
    text-align: center;
    margin-top: 20px;
    min-height: 350px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.display-area-xr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%),
        linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.display-area-xr h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.display-area-xr .content-box-xr {
    border-radius: 10px;
    padding: 15px;
    margin: 12px 0;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.display-area-xr .content-box-xr p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}

.display-area-xr .content-box-xr .section-title-xr {
    font-size: 15px;
    color: #FFD700;
    margin: 15px 0 10px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.display-area-xr .content-box-xr .section-title-xr i {
    width: 20px;
    text-align: center;
}

/* 底部提示 */
.footer-tip-xr {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .btn-grid-xr { grid-template-columns: repeat(2, 1fr); }
    .display-area-xr { padding: 15px; }
}

/* 复古线条 */
.vintage-line-xr {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

/* 装备制作专用样式 - 避免与原有样式冲突 */
.equip-container-new {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

/* 顶部标题 */
.equip-top-banner {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

/* 按钮网格 */
.equip-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.equip-btn-item {
    text-align: center;
}

.equip-monster-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.equip-monster-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.1),
        rgba(255, 215, 0, 0)
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.equip-monster-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}

.equip-monster-btn:hover::before {
    left: 100%;
    top: 100%;
}

.equip-monster-btn.active-equip {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}

/* 显示区域 */
.equip-display-area {
    text-align: center;
    margin-top: 20px;
    min-height: 400px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.equip-display-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%),
        linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.equip-display-area h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.equip-display-area .equip-content-box {
    border-radius: 10px;
    padding: 15px;
    margin: 12px 0;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    z-index: 1;
}

.equip-display-area .equip-content-box p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}

.equip-display-area .equip-content-box .equip-section-title {
    font-size: 15px;
    color: #FFD700;
    margin: 15px 0 10px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.equip-display-area .equip-content-box .equip-section-title i {
    width: 20px;
    text-align: center;
}

/* 复古线条 */
.equip-vintage-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

/* 底部提示 */
.equip-footer-tip {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .equip-btn-grid { grid-template-columns: repeat(2, 1fr); }
    .equip-display-area { padding: 15px; }
}

/* 冲级奖励专用样式 - 避免与原有样式冲突 */
.reward-container-new {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

/* 顶部标题 */
.reward-top-banner {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

/* 按钮网格 */
.reward-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.reward-btn-item {
    text-align: center;
}

.reward-monster-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.reward-monster-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.1),
        rgba(255, 215, 0, 0)
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.reward-monster-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}

.reward-monster-btn:hover::before {
    left: 100%;
    top: 100%;
}

.reward-monster-btn.active-reward {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}

/* 显示区域 */
.reward-display-area {
    text-align: center;
    margin-top: 20px;
    min-height: 500px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.reward-display-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%),
        linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.reward-display-area h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.reward-display-area .reward-content-box {
    border-radius: 10px;
    padding: 15px;
    margin: 12px 0;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.reward-display-area .reward-content-box p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}

.reward-display-area .reward-content-box .reward-section-title {
    font-size: 15px;
    color: #FFD700;
    margin: 15px 0 10px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reward-display-area .reward-content-box .reward-section-title i {
    width: 20px;
    text-align: center;
}

/* 复古线条 */
.reward-vintage-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

/* 底部提示 */
.reward-footer-tip {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .reward-btn-grid { grid-template-columns: repeat(2, 1fr); }
    .reward-display-area { padding: 15px; }
}

/* 脉冲动画 */
@keyframes reward-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.reward-pulse-icon {
    animation: reward-pulse 1.5s infinite;
}

/* 外观展示专用样式 - 避免与原有样式冲突 */
.appearance-container-new {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

/* 顶部标题 */
.appearance-top-banner {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

/* 按钮网格 */
.appearance-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.appearance-btn-item {
    text-align: center;
}

.appearance-monster-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.appearance-monster-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.1),
        rgba(255, 215, 0, 0)
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.appearance-monster-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}

.appearance-monster-btn:hover::before {
    left: 100%;
    top: 100%;
}

.appearance-monster-btn.active-appearance {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}

/* 显示区域 */
.appearance-display-area {
    text-align: center;
    margin-top: 20px;
    min-height: 500px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.appearance-display-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%),
        linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.appearance-display-area h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.appearance-display-area .appearance-content-box {
    border-radius: 10px;
    padding: 15px;
    margin: 12px 0;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.appearance-display-area .appearance-content-box img {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.appearance-display-area .appearance-content-box p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}

/* 复古线条 */
.appearance-vintage-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

/* 底部提示 */
.appearance-footer-tip {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .appearance-btn-grid { grid-template-columns: repeat(2, 1fr); }
    .appearance-display-area { padding: 15px; }
}

/* 职业推荐专用样式 - 避免与原有样式冲突 */
.prof-container-new {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

/* 顶部标题 */
.prof-top-banner {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

/* 按钮网格 */
.prof-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.prof-btn-item {
    text-align: center;
}

.prof-monster-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.prof-monster-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.1),
        rgba(255, 215, 0, 0)
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.prof-monster-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}

.prof-monster-btn:hover::before {
    left: 100%;
    top: 100%;
}

.prof-monster-btn.active-prof {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}

/* 显示区域 */
.prof-display-area {
    text-align: center;
    margin-top: 20px;
    min-height: 500px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.prof-display-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%),
        linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.prof-display-area h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.prof-display-area .prof-content-box {
    border-radius: 10px;
    padding: 15px;
    margin: 12px 0;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.prof-display-area .prof-content-box p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #ebdeb8;
    text-align: center;
}

/* 表格样式 */
.prof-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
}

.prof-table thead th {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 12px 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: bold;
    text-align: center;
}

.prof-table tbody td {
    padding: 10px 8px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: #ebdeb8;
    text-align: center;
    vertical-align: middle;
}

.prof-table tbody tr:nth-child(even) {
    background: rgba(255, 215, 0, 0.05);
}

.prof-table tbody tr.prof-highlight {
    background: rgba(255, 0, 0, 0.1);
    border-left: 1px solid #ff0000;
}

.prof-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.15);
}

.prof-profession-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    color: #FFD700;
}

.prof-profession-name img {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.prof-rating-star {
    font-size: 16px;
    letter-spacing: 2px;
}

.prof-build-recommend {
    color: #90EE90;
    font-weight: bold;
}

/* 水印样式 */
.watermark {
    position: relative;
}

.watermark::after {
    content: "鸿蒙奇迹群号80598993";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(248, 248, 255, 0.3);
    font-size: 50px;
    transform: rotate(-30deg);
    pointer-events: none;
    z-index: -1;
}

/* 复古线条 */
.prof-vintage-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

/* 底部提示 */
.prof-footer-tip {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .prof-btn-grid { grid-template-columns: repeat(2, 1fr); }
    .prof-display-area { padding: 15px; }
    .prof-table { font-size: 11px; }
    .prof-table thead th, .prof-table tbody td { padding: 6px 4px; }
}

/* 功能按键命令专用样式 - 避免与原有样式冲突 */
.cmd-container-new {
    max-width: 100%;
    margin: 5px auto;
    padding: 20px;
}

/* 顶部标题 */
.cmd-top-banner {
    background: transparent;
    color: #FFD700;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

/* 按钮网格 */
.cmd-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.cmd-btn-item {
    text-align: center;
}

.cmd-monster-btn {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.cmd-monster-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.1),
        rgba(255, 215, 0, 0)
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.cmd-monster-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    border-color: #FFD700;
}

.cmd-monster-btn:hover::before {
    left: 100%;
    top: 100%;
}

.cmd-monster-btn.active-cmd {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    border-color: #FFD700;
}

/* 显示区域 */
.cmd-display-area {
    text-align: center;
    margin-top: 20px;
    min-height: 500px;
    padding: 1px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cmd-display-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%),
        linear-gradient(transparent 48%, rgba(255, 215, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.cmd-display-area h2 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* 表格样式 */
.cmd-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cmd-table thead th {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 12px 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: bold;
    text-align: center;
}

.cmd-table tbody td {
    padding: 10px 8px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: #ebdeb8;
    text-align: center;
    vertical-align: middle;
}

.cmd-table tbody tr:nth-child(even) {
    background: rgba(255, 215, 0, 0.05);
}

.cmd-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.15);
}

.cmd-key {
    font-weight: bold;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.cmd-desc {
    color: #90EE90;
    font-weight: bold;
}

.cmd-detail {
    color: #87CEEB;
    font-size: 12px;
}

/* 水印样式 */
.watermark {
    position: relative;
}

.watermark::after {
    content: "鸿蒙奇迹群号80598993";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(248, 248, 255, 0.3);
    font-size: 50px;
    transform: rotate(-30deg);
    pointer-events: none;
    z-index: -1;
}

/* 复古线条 */
.cmd-vintage-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

/* 底部提示 */
.cmd-footer-tip {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .cmd-btn-grid { grid-template-columns: repeat(2, 1fr); }
    .cmd-display-area { padding: 15px; }
    .cmd-table { font-size: 11px; }
    .cmd-table thead th, .cmd-table tbody td { padding: 6px 4px; }
}  