* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #eee;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.backLink {
    margin-bottom: 20px;
}

.backLink a {
    color: #64b5f6;
    text-decoration: none;
    font-size: 0.95em;
}

.backLink a:hover {
    text-decoration: underline;
}

.mainTitle {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
}

.subtitle {
    color: #aaa;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.section {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.section h2 {
    color: #64b5f6;
    font-size: 1.4em;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(100, 181, 246, 0.3);
    padding-bottom: 10px;
}

.section h3 {
    color: #81c784;
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.section p {
    color: #ccc;
    margin-bottom: 15px;
}

.section code {
    background: rgba(100, 181, 246, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    color: #64b5f6;
}

.stepBox {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid #4caf50;
}

.stepBox h3 {
    color: #81c784;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.tipBox {
    background: rgba(100, 181, 246, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid #64b5f6;
}

.tipBox h3 {
    color: #64b5f6;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.tipBox ul {
    list-style: none;
    padding: 0;
}

.tipBox li {
    padding: 8px 0;
    color: #ccc;
}

.tipBox li code {
    background: rgba(100, 181, 246, 0.2);
    color: #fff;
}

.codeBlock {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 0;
    overflow-x: auto;
    margin: 15px 0;
    border: 1px solid #333;
}

.codeBlock pre {
    margin: 0;
    padding: 15px !important;
    font-family: 'Consolas', 'Monaco', 'Fira Code', monospace;
    font-size: 0.9em;
    color: #c9d1d9;
    line-height: 1.5;
    background: transparent !important;
}

.codeBlock code {
    background: transparent !important;
    padding: 0 !important;
    font-size: inherit;
    color: inherit;
    border-radius: 0;
}

/* Prism.js 覆盖样式 */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #6a737d !important;
}

.token.punctuation {
    color: #c9d1d9 !important;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #f97583 !important;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #9ecbff !important;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #79b8ff !important;
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #f9826c !important;
}

.token.function,
.token.class-name {
    color: #b392f0 !important;
}

.token.regex,
.token.important,
.token.variable {
    color: #ffab70 !important;
}

.warningList {
    list-style: none;
    padding: 0;
}

.warningList li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.warningList li:last-child {
    border-bottom: none;
}

.warningList li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.warningList li strong {
    color: #fff;
}

.refList {
    list-style: none;
    padding: 0;
}

.refList li {
    padding: 8px 0;
    color: #ccc;
}

.refList li code {
    background: rgba(100, 181, 246, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    color: #64b5f6;
}