:root {
    --neon-cyan: #00f3ff;
    --neon-blue: #0066ff;
    --neon-green: #0aff00;
    --jp-red: #ff3333;
    --bg-dark: #050a14;
    --glass-border: rgba(0, 243, 255, 0.3);
    --line-green: #06C755;
}

body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(5, 10, 20, 0.95), rgba(5, 10, 20, 0.9)), linear-gradient(to bottom, #050a14, #001f3f);
    background-size: cover; background-position: center; background-attachment: fixed;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    min-height: 100vh; overflow-x: hidden; display: flex; flex-direction: column;
    padding-top: 35px;
}

.ticker-item, .status-val, .hero-subtitle span, .big-signal span, .report-id {
    font-family: 'Orbitron', sans-serif !important;
    letter-spacing: 1px;
}

.ticker-wrap {
    position: fixed; top: 0; left: 0; width: 100%; height: 35px;
    background: rgba(0, 0, 0, 0.9); border-bottom: 1px solid var(--glass-border);
    z-index: 9999; overflow: hidden; display: flex; align-items: center;
}
.ticker { display: flex; white-space: nowrap; animation: ticker 80s linear infinite; /* 稍微调慢一点，更像专业行情屏 */ }
.ticker-item { display: inline-block; padding: 0 25px; font-size: 14px; color: #ccc; }
.up { color: var(--jp-red); }
.down { color: #007bff; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero-title {
    font-size: 38px; font-weight: 900;
    font-family: 'Noto Sans JP', sans-serif;
    background: linear-gradient(to bottom, #fff, var(--neon-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}
.hero-subtitle { font-size: 16px; color: var(--neon-cyan); letter-spacing: 0.5px; font-weight: 500; }

.hud-grid { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; z-index: 0; }

.main-container { position: relative; z-index: 10; max-width: 1200px; margin: 60px auto 40px; padding: 0 15px; display: flex; flex-direction: column; align-items: center; }
.hero-section { text-align: center; margin-bottom: 40px; }
.live-badge { display: inline-block; background: rgba(10, 255, 0, 0.1); border: 1px solid var(--neon-green); color: var(--neon-green); padding: 2px 8px; font-size: 12px; border-radius: 4px; margin-left: 10px; animation: blink 2s infinite; font-weight: bold; }

.scanner-interface { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; width: 100%; }
.status-panel { flex: 1; min-width: 300px; max-width: 400px; text-align: center; position: relative; }

.radar-box { position: relative; width: 220px; height: 220px; margin: 0 auto; border-radius: 50%; border: 1px solid rgba(0, 243, 255, 0.3); background: radial-gradient(circle, rgba(0, 20, 40, 0.8) 0%, rgba(0,0,0,0) 70%); overflow: hidden; box-shadow: 0 0 30px rgba(0, 243, 255, 0.1); }
.radar-box::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; height: 90%; border: 1px dashed rgba(0, 243, 255, 0.2); border-radius: 50%; z-index: 1; }
.radar-scan-beam { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; background: conic-gradient(from 0deg, transparent 270deg, rgba(0, 243, 255, 0.6) 360deg); animation: radar-spin 3s linear infinite; z-index: 2; }
.radar-icon-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; opacity: 0.8; z-index: 3; filter: drop-shadow(0 0 10px var(--neon-cyan)); }
.radar-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--neon-cyan); animation: pulse-ring 2s ease-out infinite; z-index: 1; }

.system-status { margin-top: 25px; text-align: left; background: rgba(0, 20, 40, 0.6); border-left: 3px solid var(--neon-cyan); padding: 15px; font-family: 'Noto Sans JP', sans-serif; font-size: 13px; }
.status-row { display: flex; justify-content: space-between; margin-bottom: 5px; color: #aaa; }
.status-val { color: var(--neon-cyan); font-weight: bold; text-shadow: 0 0 5px var(--neon-cyan); }

.control-panel { flex: 1; min-width: 300px; max-width: 500px; background: rgba(10, 15, 30, 0.75); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); padding: 30px; border-radius: 4px; position: relative; box-shadow: 0 0 40px rgba(0, 243, 255, 0.15); }
.corner { position: absolute; width: 10px; height: 10px; border-color: var(--neon-cyan); border-style: solid; }
.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.profit-bar {
    background: rgba(255, 51, 51, 0.15); border: 1px solid #ff3333; padding: 10px; margin-bottom: 20px; border-radius: 4px; text-align: center;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.2);
}
.profit-title { font-size: 12px; color: #ff3333; font-weight: bold; margin-bottom: 5px; font-family: 'Noto Sans JP'; }

.tech-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #444;
    border-left: 3px solid var(--neon-cyan);
    color: #fff;
    padding: 18px;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    outline: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    border-radius: 4px;
}
.tech-input:focus {
    border-color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}
.tech-input::placeholder {
    color: #777;
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 300;
}

.typing-label {
    color: var(--neon-cyan);
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
    min-height: 20px;
}
.cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background-color: var(--neon-cyan);
    animation: blink-cursor 1s infinite;
    vertical-align: middle;
    margin-left: 5px;
}

.tech-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--neon-blue), #00c3ff);
    color: #fff;
    font-weight: 900;
    padding: 18px;
    font-size: 20px;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    overflow: hidden;
    animation: btn-pulse 2s infinite;
}
.tech-btn:hover { filter: brightness(1.2); }

.quick-tags { margin-bottom: 25px; text-align: left; }
.tag-label { font-size: 12px; color: #888; margin-right: 5px; }
.tag-btn { background:rgba(255,255,255,0.05); border:1px solid #555; color:#ccc; padding:4px 10px; border-radius:12px; font-size:11px; margin-right:4px; cursor:pointer; transition:0.2s; font-family: 'Noto Sans JP'; }
.tag-btn:hover { border-color: var(--neon-cyan); color: #fff; background: rgba(0, 243, 255, 0.1); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 60px; width: 100%; }
.feature-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.feature-item:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
    background: linear-gradient(145deg, rgba(0, 243, 255, 0.05) 0%, rgba(0,0,0,0) 100%);
}
.feature-icon {
    font-size: 42px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}
.feature-item:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 15px; font-family: 'Noto Sans JP', sans-serif; }
.feature-desc { font-size: 13px; color: #b0b0b0; line-height: 1.6; word-break: break-all; font-family: 'Noto Sans JP', sans-serif; padding: 0 5px; }

.overlay-popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 10, 20, 0.98); z-index: 9999; flex-direction: column; justify-content: center; align-items: center; }
.console-log { width: 90%; max-width: 500px; height: 240px; background: #000; border: 1px solid var(--neon-green); padding: 15px; font-family: 'Courier New', monospace; font-size: 12px; color: var(--neon-green); overflow: hidden; margin-bottom: 20px; text-align: left; box-shadow: 0 0 20px rgba(10, 255, 0, 0.1); }
.result-card { background: rgba(20, 30, 40, 0.95); border: 1px solid var(--neon-green); padding: 40px; text-align: center; max-width: 450px; width: 90%; box-shadow: 0 0 60px rgba(10, 255, 0, 0.15); animation: slideUp 0.5s ease; }
.big-signal { font-size: 32px; font-weight: bold; color: #fff; margin: 10px 0; }
.highlight { color: var(--jp-red); text-shadow: 0 0 10px var(--jp-red); }

.urgency-text { text-align: center; margin-top: 15px; margin-bottom: 8px; }

/* LINE 按钮样式优化 */
.line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--line-green);
    color: #fff;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 5px;
    box-shadow: 0 0 20px rgba(6, 199, 85, 0.3);
    animation: pulse-line 2s infinite;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Noto Sans JP', sans-serif;
}
.line-btn i { margin-right: 10px; font-size: 24px; }
.line-btn:active { transform: scale(0.98); }

footer { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); background: #000; padding: 40px 20px; text-align: center; font-size: 11px; color: #555; z-index: 10; font-family: 'Noto Sans JP', sans-serif; }
.footer-company { color: #999; font-weight: bold; margin-bottom: 5px; font-size: 14px; }
.footer-link { color: #888; text-decoration: none; margin: 0 10px; transition: 0.3s; }
.footer-link:hover { color: #fff; text-decoration: underline; }

.disclaimer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
}
.disclaimer-text { max-width: 800px; margin: 0 auto; line-height: 1.6; word-break: break-all; color: #b0b0b0; font-size: 12px; }

@media (max-width: 768px) {
    .hero-title { font-size: 28px; }
    .feature-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-item { padding: 25px 20px; }
    .console-log { height: 180px; }
    .radar-box { width: 180px; height: 180px; }
}

@keyframes radar-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-ring { 0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; } 50% { opacity: 1; } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes blink-cursor { 50% { opacity: 0; } }
@keyframes pulse-line { 0% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(6, 199, 85, 0); } 100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); } }
@keyframes btn-pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 195, 255, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(0, 195, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 195, 255, 0); } }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }