.contexto-row {
    background: var(--surface-color, #161B22);
    color: var(--text-primary, #F8FAFC);
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    animation: slideIn 0.3s ease-out;
}
.guess-info {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1em;
    color: var(--text-primary, #F8FAFC);
}
.progress-container {
    height: 12px;
    background: var(--surface-color, #161B22);
    border: 1px solid var(--border-color, rgba(255,255,255,0.2));
    border-radius: 6px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.guess-rank { color: var(--text-secondary, #8B949E); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

#results { display: flex; flex-direction: column; width: 100%; max-width: 500px; margin: 20px auto; }
.input-area { text-align: center; margin-bottom: 20px; }