/* 赛博朋克风背景 */
body {
    font-family: 'Orbitron', sans-serif;
    margin: 20px;
    background-color: #000;
    color: #0f0;
   
}

/* 输入框样式 */
textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #0f0;
    border: 2px solid #0f0;
    border-radius: 5px;
}

/* 按钮样式 */
button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0f0;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px #0f0;
}

button:hover {
    background-color: #00ff33;
    box-shadow: 0 0 20px #0f0;
}

/* 输出区域样式 */
#output,
#html-code {
    margin-top: 20px;
    padding: 10px;
    border: 2px solid #0f0;
    min-height: 100px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    box-shadow: 0 0 10px #0f0;
}

#html-code {
    white-space: pre-wrap;
    font-family: monospace;
}

h1,
h2 {
    text-shadow: 0 0 10px #0f0;
}

/* 赛博朋克风返回顶部按钮样式 */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00ffcc;
    color: #000;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 10px #00ffcc;
    display: none;
}

.author-info {
    text-align: center;
    margin-top: 20px;
}

.author-info a {
    color: #0f0;
    text-decoration: none;
    text-shadow: 0 0 10px #0f0;
    transition: color 0.3s;
}

.author-info a:hover {
    color: #0c0;
    text-shadow: 0 0 20px #0c0;
}

#backToTop:hover {
    background-color: #00ccaa;
    box-shadow: 0 0 20px #00ffcc;
}

.content, .author-info{width: 100%; max-width: 1024px; margin: 0 auto 50px; }
textarea{width: calc(100% - 20px);}