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

/* 预测面板样式 */
.predict-panel {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px 24px;
    margin-top: 20px;
    border-left: 5px solid #8b5cf6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.predict-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #334155;
    margin-bottom: 10px;
    font-weight: 600;
}

.predict-header span:last-child {
    font-weight: 400;
    font-size: 13px;
    color: #94a3b8;
}

.predict-result {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 6px;
}

.predict-direction {
    font-size: 28px;
    font-weight: 700;
}

.predict-probability {
    font-size: 20px;
    font-weight: 600;
}

.predict-message {
    font-size: 14px;
    color: #64748b;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
}
h1 {
    color: #1a2634;
    margin-bottom: 20px;
    font-size: 28px;
}
.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.search-box input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.2s;
}
.search-box input:focus {
    outline: none;
    border-color: #3b82f6;
}
.search-box button {
    padding: 12px 30px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.search-box button:hover {
    background: #2563eb;
}

.info-panel {
    background: #f8fafc;
    padding: 16px 24px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    align-items: center;
    border-left: 5px solid #3b82f6;
}
.info-panel span {
    font-size: 15px;
    color: #334155;
}
.info-panel .highlight {
    font-weight: bold;
    color: #0f172a;
}
#latestPrice {
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
}

.chart-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.chart-box {
    flex: 1;
    min-width: 300px;
    background: #fafcfd;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #e9edf2;
}

.footer {
    margin-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}