/* --- GLOBAL STYLES & FONT --- */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');

:root {
    --background-color: #0d0d0d;
    --primary-color: #00ff41;
    --secondary-color: #b0ffc3;
    --border-color: rgba(0, 255, 65, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
}

/* --- LAYOUT & HEADER --- */
.container {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

h1 {
    font-size: 2em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 5px var(--primary-color);
}

#last-updated {
    color: var(--secondary-color);
    font-size: 0.9em;
    margin-top: 10px;
}

/* --- CURSOR BLINKING EFFECT --- */
.cursor {
    animation: blink 1s step-end infinite;
    font-weight: 700;
}

@keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: var(--primary-color);
    }
}

/* --- REPORTS & MARKDOWN STYLES --- */
#loading-indicator p {
    margin-bottom: 5px;
}

.report-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
    white-space: pre-wrap; /* <-- 添加这一行 */
}

.report-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Styles for HTML generated from Markdown */
.report-section h2 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: 0 0 3px var(--primary-color);
}

.report-section strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.report-section ul {
    list-style-type: none;
    padding-left: 20px;
}

.report-section li {
    margin-bottom: 10px;
    position: relative;
}

.report-section li::before {
    content: '»'; /* Hacker-style bullet point */
    position: absolute;
    left: -20px;
    color: var(--primary-color);
}
