        /* 顶部横幅 */
        .top-banner {
            background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,165,0,0.1));
            color: #FFD700;
            text-align: center;
            padding: 12px;
            font-size: 28px;
            font-weight: bold;
            border-bottom: 1px solid rgba(255,215,0,0.3);
        }

        /* 主容器 */
        .recharge-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0px;
        }

        /* 公告区域 */
        .notice-box {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid #FFD700;
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 25px;
            text-align: center;
            font-size: 14px;
            color: #FFD700;
        }

        /* 特色标签区 */
        .feature-section {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .feature-box {
            flex: 1;
            min-width: 200px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .feature-box i {
            font-size: 36px;
            margin-bottom: 10px;
            display: block;
            color: #FFD700;
        }

        .feature-box .feature-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #FFD700;
        }

        .feature-box .feature-desc {
            font-size: 13px;
            opacity: 0.8;
            color: #ccc;
        }

        .vintage-line {
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #FFD700, transparent);
            margin: 10px auto;
            border-radius: 1px;
        }

        /* Tab 标签 */
        .tab-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .tab-btn {
            flex: 1;
            min-width: 120px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 215, 0, 0.2);
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 15px;
            font-weight: bold;
            color: #ccc;
        }

        .tab-btn:hover, .tab-btn.active {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
            border-color: #FFD700;
            transform: scale(1.02);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 内容卡片网格 */
        .recharge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }

        .recharge-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: 25px 20px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .recharge-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;
        }

        .recharge-card:hover::before {
            opacity: 1;
        }

        .recharge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
            border-color: #FFD700;
        }

        .recharge-amount {
            font-size: 20px;
            font-weight: bold;
            color: #FFD700;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

.recharge-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
}


        /* 大纲导航 */
        .sidebar-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(255,255,255,0.03);
            border-radius: 12px;
            border: 1px solid rgba(255,215,0,0.15);
        }

        .outline-item {
            padding: 10px 18px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            color: #ccc;
            font-size: 14px;
            border: 1px solid transparent;
            background: rgba(255,255,255,0.05);
        }

        .outline-item:hover {
            background: rgba(255, 215, 0, 0.15);
            color: #FFD700;
            border-color: rgba(255,215,0,0.3);
        }

        .outline-item.active {
            background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(255,165,0,0.2));
            color: #000;
            border-color: #FFD700;
            font-weight: bold;
        }

        /* 内容卡片通用样式 */
        .content-card {
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
            background: rgba(255,255,255,0.03);
            text-align: left;
        }

        .content-card h3 {
            color: #FFD700;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }

        .content-card h3 i {
            margin-right: 10px;
            color: #FFA500;
        }

        .content-card ul {
            list-style: none;
            padding-left: 0;
        }

        .content-card li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            line-height: 1.7;
            font-size: 14px;
        }

        .content-card li::before {
            content: "\f054";
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #FFD700;
            font-size: 0.85em;
        }

        .content-card strong {
            color: #FFD700;
        }

        /* 特殊样式 */
        .highlight {
            background: rgba(255, 215, 0, 0.08);
            border-left: 4px solid #FFD700;
            padding: 15px 20px;
            margin: 15px 0;
            border-radius: 8px;
            position: relative;
        }

        .tip {
            background: rgba(255, 193, 7, 0.08);
            border-left: 4px solid #FFC107;
            padding: 15px 20px;
            margin: 15px 0;
            border-radius: 8px;
        }

        .warning {
            background: rgba(244, 67, 54, 0.08);
            border-left: 4px solid #f44336;
            padding: 15px 20px;
            margin: 15px 0;
            border-radius: 8px;
        }

        .highlight::before,
        .tip::before,
        .warning::before {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.7;
            z-index: 0;
        }

        .highlight::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>');
        }

        .tip::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>');
        }

        .warning::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23f44336"><path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"/></svg>');
        }



        /* 职业选择下拉 */
select {
    padding: 10px;
    font-size: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 8px;
    color: #FFD700;
    /* 删掉 width:100%，100%宽度会直接挤到下一行换行！这是你换行主要原因 */
    /* width: 100%; */
    max-width: 100%;
    margin: 10px 0;
    display: inline-block; /* 和文字同行 */
    vertical-align: middle;
}


        select option {
            background: #1a1a3a;
            color: #fff;
        }

        #result {
            margin-top: 20px;
            padding: 20px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            background: rgba(255, 215, 0, 0.08);
            color: #fff;
            font-size: 15px;
            line-height: 1.8;
        }

        /* 职业图展示按钮 */
        .title-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
        }

        .title-item {
            text-align: center;
        }

        .title-btn {
            display: inline-block;
            padding: 10px 16px;
            background: rgba(255,255,255,0.08);
            color: #FFD700;
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
            position: relative;
            overflow: hidden;
            font-size: 13px;
        }

        .title-btn:hover {
            background: rgba(255, 215, 0, 0.2);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }

        .title-btn.active {
            background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(255,165,0,0.2));
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
            color: #000;
            font-weight: bold;
        }

        .image-display {
            text-align: center;
            margin-top: 20px;
            min-height: 200px;
            padding: 30px;
            border-radius: 10px;
            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.2);
            position: relative;
            overflow: hidden;
        }

        .image-display canvas {
            max-width: 100%;
            height: auto;
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px;
        }

        .image-display h3 {
            color: #FFD700;
            margin-bottom: 15px;
        }

        /* 链接样式 */
        .minimal-tech-link {
            color: #FFD700;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        .minimal-tech-link:hover {
            color: #FFA500;
            text-decoration: underline;
        }

        /* 面板数字样式 */
        .minimal-tech-number {
            color: #FFD700;
            font-weight: bold;
            font-size: 1.1em;
            padding: 2px 8px;
            background: rgba(255, 215, 0, 0.1);
            border-left: 3px solid #FFD700;
            position: relative;
        }

        /* 底部提示 */
        .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);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        /* 弹窗样式 */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-box {
            background: linear-gradient(145deg, #1a1a4e, #0d0d3b);
            border: 2px solid #FFD700;
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            position: relative;
            animation: popIn 0.4s;
        }

        @keyframes popIn {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal-box h2 {
            color: #FFD700;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .modal-box p {
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            color: #FFD700;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .modal-close:hover {
            transform: rotate(90deg);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .feature-section { flex-direction: column; }
            .recharge-grid { grid-template-columns: 1fr; }
            .tab-buttons { flex-direction: column; }
            .title-grid { grid-template-columns: repeat(2, 1fr); }
            .sidebar-nav { flex-direction: column; }
        }

        /* 加载动画 */
        .loading-text {
            color: #FFD700;
            font-size: 16px;
        }

        /* 特殊面板样式 */
        .panel-title {
            color: #FFD700;
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .panel-section {
            margin-bottom: 30px;
        }

        .panel-section h2 {
            color: #FFD700;
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        }

        /* 页面标题 */
        .page-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .page-title h1 {
            color: #FFD700;
            font-size: 2.2rem;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .page-title p {
            color: #FFA500;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }