/* 文章容器样式 */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1e1e1e; /* 深色背景，科技感 */
}

/* 标题样式 */
.article-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00ffcc; /* 科技感的亮色 */
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc; /* 发光效果 */
}

/* 段落样式 */
.article-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

/* 图片样式 */
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 8px;
    border: 2px solid #00ffcc; /* 科技感边框 */
    box-shadow: 0 0 10px #00ffcc; /* 发光效果 */
}

/* 引用样式 */
.article-content blockquote {
    border-left: 4px solid #00ffcc;
    padding-left: 15px;
    color: #00ffcc;
    font-style: italic;
    margin: 20px 0;
    background-color: #2a2a2a; /* 深色背景 */
}

/* 代码块样式 - 科技感 + 有趣 */
.article-content pre {
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Fira Code', monospace; /* 等宽字体，适合代码 */
    font-size: 0.9em;
    margin: 20px 0;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
    position: relative;
}

/* 代码块顶部装饰 */
.article-content pre::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 50px;
    height: 10px;
    background-color: #00ffcc;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 5px #00ffcc;
}

/* 代码块内部代码样式 */
.article-content code {
    color: #00ffcc;
    background-color: transparent;
}

/* 链接样式 */
.article-content a {
    color: #00ffcc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #00b3ff;
    text-decoration: underline;
}

/* 按钮样式（如果有交互元素） */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #1e1e1e;
    background-color: #00ffcc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #00b3ff;
}