@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Roboto:wght@300;400;500&display=swap');

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

body {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}

.header-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffb84e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 30px 0 10px;
    text-shadow: 0 0 30px rgba(255,215,0,0.5);
}

.signal-box {
    background: rgba(20,25,40,0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto;
    max-width: 720px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 60px rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
}

.signal-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    text-align: center;
    margin: 20px 0;
    animation: glow 2s infinite alternate;
}

.buy { color: #00ff88; text-shadow: 0 0 40px #00ff88; }
.sell { color: #ff0044; text-shadow: 0 0 40px #ff0044; }
.wait, .warning { color: #ffaa00; text-shadow: 0 0 40px #ffaa00; }
.danger { color: #ff3366; text-shadow: 0 0 40px #ff3366; }

@keyframes glow {
    from { text-shadow: 0 0 20px; }
    to   { text-shadow: 0 0 50px; }
}

.confidence-container { background: rgba(0,0,0,0.4); border-radius: 50px; padding: 4px; margin: 20px 0; }
.confidence-bar { height: 30px; border-radius: 50px; background: linear-gradient(90deg, #ff0044, #ffaa00, #00ff88); transition: width 1.2s ease; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.1rem; }

.price-time { text-align: center; font-size: 2rem; color: #ffd700; font-family: 'Orbitron', sans-serif; margin: 15px 0; }

.reasons { background: rgba(0,0,0,0.3); border-radius: 15px; padding: 20px; margin-top: 25px; border-left: 4px solid #ffd700; }
.reasons h5 { color: #ffd700; margin-bottom: 15px; }
.reasons li { padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.reasons li:before { content: "-> "; color: #ffd700; font-weight: bold; }

.footer { text-align: center; margin-top: 50px; color: rgba(255,255,255,0.4); font-size: 0.9rem; }

@media (max-width:768px) {
    .header-title { font-size: 2.5rem; }
    .signal-text { font-size: 4.5rem; }
}