
        .card {
            border-radius: 16px;
            padding: 25px;
            backdrop-filter: blur(1px);
            -webkit-backdrop-filter: blur(1px);
            transition: all 0.3s ease-in-out;
            background: rgba(168, 85, 247, 0.05);
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 32px 0 rgba(168, 85, 247, 0.15);
            animation: slideIn 0.5s ease-out;
        }
 
        .card:hover {
            background: rgba(168, 85, 247, 0.08);
            border-color: rgba(168, 85, 247, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 12px 40px 0 rgba(168, 85, 247, 0.25);
        }

        .floating {
            animation: floating 6s ease-in-out infinite;
        }
 
        @keyframes floating {
 
            0%,
            100% {
                transform: translateY(0px);
            }
 
            50% {
                transform: translateY(-20px);
            }
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 4.5rem;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
 
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .grid-bg {
            background-image:
                linear-gradient(rgba(168, 85, 247, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(168, 85, 247, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            opacity: 0.3;
        }

        .back-btn {
            display: inline-block;
            width: auto;
            padding: 12px 24px;
            border: 1px solid var(--neon-cyan);
            border-radius: 9999px;
            font-size: 1rem;
            font-weight: 700;
            font-family: 'Turret Road', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.5px;
	        cursor: pointer;
            background: transparent;
            color: var(--neon-cyan);
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
	        -webkit-user-select: none;
	        -moz-user-select: none;
       	    -ms-user-select: none;
 	        user-select: none;
        }
 
        .back-btn:hover {
            background-color: var(--neon-cyan);
            color: var(--bg-primary);
            box-shadow: 0 0 20px var(--neon-cyan);
        }

        .notice-box, .usage-tips {
            padding: 20px;
        }
        
        .notice-list { margin: 12px 0 12px 20px; list-style-type: '» '; }
        .notice-list li { padding-left: 10px; margin-bottom: 8px;}
 
        strong {
            color: var(--neon-yellow);
        }

        .footer-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-secondary);
            opacity: 0.6;
            margin-top: 30px;
            letter-spacing: 1px;
        }

	.zcenter0 {
	    justify-content: center;
	}

        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #2B2B2B;
            font-size: 1rem;
            background-color: #1F1F1F;
            color: var(--text-primary);
            font-family: 'Roboto Mono', monospace;
            transition: all 0.2s;
        }

#dropZone {
    width: 100%;
    padding: 40px;
    border: 2px dashed #8b5cf6;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.25s;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

#dropZone.dragover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #c084fc;
}

#fileupload {
    display: none;
}

#tabBar {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
}

.tab {
    padding: 6px 14px;
    background: #181818;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
	border: 1px solid #2B2B2B;
    user-select: none;
    transition: 0.2s;
}

.tab:hover {
    background: #1F1F1F;
}

.tab.active {
    background: #1F1F1F;
    font-weight: bold;
    border: none;
	border-top: 1px solid #0078D4;
	border-left: 1px solid #2B2B2B;
	border-right: 1px solid #2B2B2B;
}

#editorContainer {
	flex-direction: column;
}

.save-btn {
    padding: 10px 16px;
    background: #181818; 
    color: #fff;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    cursor: pointer; 
    align-items: center;
    justify-content: center;
	transition: 0.3s;
}

.save-btn:hover {
    background: #1F1F1F;
    border-color: rgba(168, 85, 247, 0.3);
}

.border {
    display: flex;
    gap: 6px;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow-x: auto;
    white-space: nowrap;
}

.border2 {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    overflow-x: auto;
    white-space: nowrap;
}

#tabBar::-webkit-scrollbar,
textarea::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}
 
#tabBar::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
    background: #1F1F1F;
}
 
#tabBar::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
    background: #1F1F1F;
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: padding-box;
    transition: 0.3s ease;
}
 
#tabBar:hover::-webkit-scrollbar-thumb,
textarea:hover::-webkit-scrollbar-thumb {
    background: #1F1F1F;
    background-clip: padding-box;
}
 
#tabBar::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover {
    background: #1F1F1F;
    background-clip: padding-box;
}
 
#tabBar::-webkit-scrollbar-thumb:active,
textarea::-webkit-scrollbar-thumb:active {
    background: #1F1F1F;
    background-clip: padding-box;
}
 
#tabBar::-webkit-scrollbar-corner,
textarea::-webkit-scrollbar-corner {
    background: transparent;
}
 
#tabBar {
    scrollbar-width: thin;
    scrollbar-color: #1F1F1F #1F1F1F;
}

#tabBar:hover {
    scrollbar-color: #1F1F1F #1F1F1F;
}
 
#tabBar,
textarea {
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        h1 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 5px;
            color: #fff;
            margin-top: 20px;
        }

.tab-close {
  margin-left: 5px;
  opacity: 0;
  pointer-events: none;
}

.tab-close:hover {
  opacity: 1.2;
  pointer-events: auto;
}

.tab:hover .tab-close,
.tab.active .tab-close {
    opacity: 0.8;
    pointer-events: auto;
}

.tab.dragging {
  opacity: 0.5;
}

.tab-bar {
    background: #181818;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 10;
}

#editorContainer {
    width: 100%;
    height: 600px;  
    position: relative;
    z-index: 1;
}

.button-bar {
    margin-top: 8px;
    display: flex; 
}

.status-bar {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding: 4px 10px;
    background: #181818;
    color: #cccccc;
    font-size: 12px;
    border-top: 1px solid #333;
    user-select: none;
}

.wrapeditor {
    border: 1px solid var(--border-color);
}
.wrapeditor:hover {
    border-color: rgba(168, 85, 247, 0.3);
}
